diff --git a/tasks/cleanup.yml b/tasks/cleanup.yml index 1c73a97..da3e2c1 100644 --- a/tasks/cleanup.yml +++ b/tasks/cleanup.yml @@ -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 ...