mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-27 00:05:44 +02:00
Update to 2022-08-11 11:00
This commit is contained in:
Binary file not shown.
@@ -60,3 +60,16 @@
|
||||
when: nomad_conf_validation.rc != 0
|
||||
tags: nomad
|
||||
|
||||
# Now we remove the backup config to prevent nomad warning about invalid config files
|
||||
- name: List backup conf
|
||||
shell: ls -1 {{ nomad_root_dir }}/etc/*.hcl.*
|
||||
failed_when: False
|
||||
changed_when: False
|
||||
register: nomad_backup_configs
|
||||
tags: nomad
|
||||
|
||||
- name: Remove backup configs
|
||||
file: path={{ item }} state=absent
|
||||
loop: "{{ nomad_backup_configs.stdout_lines }}"
|
||||
tags: nomad
|
||||
|
||||
|
Reference in New Issue
Block a user