Skip to content
Snippets Groups Projects
Commit f9065c9f authored by jurgenhaas's avatar jurgenhaas
Browse files

Tag the role completion memory with always

parent e38dca55
No related branches found
No related tags found
No related merge requests found
......@@ -26,20 +26,22 @@
- '{{ admins }}'
- '{{ jailusers|default([]) }}'
- name: "a1"
- name: "Read available variable cache files"
shell: ls ~/.ansible/hostvars
become: no
register: fact_files
register: variable_files
failed_when: false
changed_when: false
ignore_errors: true
tags: always
- include: more.yml
with_items: '{{ fact_files.stdout_lines|default([]) }}'
with_items: '{{ variable_files.stdout_lines|default([]) }}'
loop_control:
loop_var: inventory_name
- name: 'Remember that this role had been run'
set_fact: role_commonconnect_completed=true
tags: always
when: '"commonconnect" not in excluded_roles and role_commonconnect_completed is not defined'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment