From db7f706fcd75a3e32ac67fdf168ca67fb4660528 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Tue, 2 Jul 2024 23:26:57 -0400 Subject: [PATCH] restore fsck to verify if working or not --- bigboot_execute_resize.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/bigboot_execute_resize.yml b/bigboot_execute_resize.yml index 19c9663..aaaa05d 100644 --- a/bigboot_execute_resize.yml +++ b/bigboot_execute_resize.yml @@ -6,15 +6,15 @@ strategy: free tasks: - # - name: Enable filesystem check prior to performing disk activities - # ansible.builtin.import_role: - # name: autofsck - # tasks_from: main.yml - # when: - # - (bigboot_execute_shrink_lv | bool or bigboot_execute_bigboot | bool) + - name: Enable filesystem check prior to performing disk activities + ansible.builtin.import_role: + name: autofsck + tasks_from: main.yml + when: + - (bigboot_execute_shrink_lv | bool or bigboot_execute_bigboot | bool) - # - name: Flush handlers - # ansible.builtin.meta: flush_handlers + - name: Flush handlers + ansible.builtin.meta: flush_handlers - name: Extend the timeout values for physical hosts ansible.builtin.set_fact: @@ -39,11 +39,11 @@ when: - bigboot_execute_bigboot | bool - # - name: Remove filesystem check from Grub - # ansible.builtin.import_role: - # name: autofsck - # tasks_from: cleanup.yml - # when: - # - (bigboot_execute_shrink_lv | bool or bigboot_execute_bigboot | bool) + - name: Remove filesystem check from Grub + ansible.builtin.import_role: + name: autofsck + tasks_from: cleanup.yml + when: + - (bigboot_execute_shrink_lv | bool or bigboot_execute_bigboot | bool) ...