From 1268170cb1b7a39a614b468aecf30a6baf224710 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 26 Apr 2024 15:24:16 -0400 Subject: [PATCH] fix code comments --- bigboot_setup_environment.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/bigboot_setup_environment.yml b/bigboot_setup_environment.yml index 1059ca5..919b20a 100644 --- a/bigboot_setup_environment.yml +++ b/bigboot_setup_environment.yml @@ -15,22 +15,22 @@ - name: Cleanup from any previous executions ansible.builtin.import_tasks: tasks/cleanup.yml - # - name: Capture boot device details - # ansible.builtin.import_tasks: tasks/capture_boot_device_details.yml + - name: Capture boot device details + ansible.builtin.import_tasks: tasks/capture_boot_device_details.yml - # - name: Capture logical volume information - # ansible.builtin.import_tasks: tasks/capture_lv_device_details.yml + - name: Capture logical volume information + ansible.builtin.import_tasks: tasks/capture_lv_device_details.yml - # - name: Set environment for subsequent workflow nodes - # ansible.builtin.set_stats: - # data: - # bigboot_execute_bigboot: "{{ bigboot_execute_bigboot }}" - # bigboot_execute_shrink_lv: "{{ bigboot_execute_shrink_lv }}" - # bigboot_adjacent_lvm_device: "{{ bigboot_adjacent_lvm_device | trim }}" - # bigboot_lv_shrink_size: "{{ bigboot_lv_shrink_size | int }}" - # bigboot_size: "{{ bigboot_size }}" - # bigboot_skip_rear_backup: "{{ bigboot_skip_rear | default('false') }}" - # per_host: false - # aggregate: false + - name: Set environment for subsequent workflow nodes + ansible.builtin.set_stats: + data: + bigboot_execute_bigboot: "{{ bigboot_execute_bigboot }}" + bigboot_execute_shrink_lv: "{{ bigboot_execute_shrink_lv }}" + bigboot_adjacent_lvm_device: "{{ bigboot_adjacent_lvm_device | trim }}" + bigboot_lv_shrink_size: "{{ bigboot_lv_shrink_size | int }}" + bigboot_size: "{{ bigboot_size }}" + bigboot_skip_rear_backup: "{{ bigboot_skip_rear | default('false') }}" + per_host: false + aggregate: false ...