Remove conditional

This commit is contained in:
Chris Hammer 2025-02-21 14:33:40 -05:00
parent 238a348a5f
commit 52854491f2

View File

@ -40,11 +40,10 @@
# - name: Check for Bigboot state log and restore services to pre-Bigboot state # - name: Check for Bigboot state log and restore services to pre-Bigboot state
# ansible.builtin.import_tasks: tasks/restore_services.yml # ansible.builtin.import_tasks: tasks/restore_services.yml
# - name: Cleanup previous Bigboot state log if present - name: Cleanup old Bigboot service state log if present
# ansible.builtin.file: ansible.builtin.file:
# path: "{{ bigboot_disabled_services_log }}" path: "{{ bigboot_disabled_services_log }}"
# state: absent state: absent
# when:
# - bigboot_disabled_services_log_stat['stat']['exists'] | bool
... ...