Sync with develop #4

Merged
chris merged 32 commits from develop into main 2024-08-02 10:12:58 -04:00
9 changed files with 79 additions and 50 deletions
Showing only changes of commit b7b6f9555d - Show all commits

View File

@ -34,11 +34,11 @@
path: "{{ bigboot_disabled_services_log }}"
register: bigboot_disabled_services_log_stat
- name: Remove disabled services log if present
ansible.builtin.file:
path: "{{ bigboot_disabled_services_log }}"
state: absent
when:
- bigboot_disabled_services_log_stat['stat']['exists'] | bool
- name: Remove disabled services log if present
ansible.builtin.file:
path: "{{ bigboot_disabled_services_log }}"
state: absent
when:
- bigboot_disabled_services_log_stat['stat']['exists'] | bool
...