From d3cf06fbd16d97c798b6ddf9667b4b062e795b16 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Tue, 7 Jan 2025 15:10:15 -0500 Subject: [PATCH] Comment out additional cleanup tasks --- tasks/cleanup.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tasks/cleanup.yml b/tasks/cleanup.yml index a1eeb3f..32b9e40 100644 --- a/tasks/cleanup.yml +++ b/tasks/cleanup.yml @@ -37,14 +37,14 @@ - name: Flush handlers to remove Grub parameters for fsck ansible.builtin.meta: flush_handlers -- name: Check for Bigboot state log and restore services to pre-Bigboot state - ansible.builtin.import_tasks: tasks/restore_services.yml +# - name: Check for Bigboot state log and restore services to pre-Bigboot state +# ansible.builtin.import_tasks: tasks/restore_services.yml -- name: Cleanup previous Bigboot state log if present - ansible.builtin.file: - path: "{{ bigboot_disabled_services_log }}" - state: absent - when: - - bigboot_disabled_services_log_stat['stat']['exists'] | bool +# - name: Cleanup previous Bigboot state log if present +# ansible.builtin.file: +# path: "{{ bigboot_disabled_services_log }}" +# state: absent +# when: +# - bigboot_disabled_services_log_stat['stat']['exists'] | bool ...