diff --git a/bigboot_execute_resize.yml b/bigboot_execute_resize.yml index 8da3313..51efa90 100644 --- a/bigboot_execute_resize.yml +++ b/bigboot_execute_resize.yml @@ -35,7 +35,7 @@ ansible.builtin.import_role: name: infra.lvm_snapshots.bigboot vars: - bigboot_size: "{{ bigboot_data[inventory_hostname]['bigboot_size'] }}" + bigboot_partition_size: "{{ bigboot_data[inventory_hostname]['bigboot_size'] }}" when: - bigboot_data[inventory_hostname]['bigboot_execute_bigboot'] | bool diff --git a/tasks/capture_boot_device_details.yml b/tasks/capture_boot_device_details.yml index 4a5584b..6947e09 100644 --- a/tasks/capture_boot_device_details.yml +++ b/tasks/capture_boot_device_details.yml @@ -27,7 +27,7 @@ - name: Set bigboot size 4k aligned ansible.builtin.set_fact: - bigboot_partition_size: "{{ bigboot_size_expansion_mb[:-2] | int | get_block_size_up }}" + bigboot_size: "{{ bigboot_size_expansion_mb[:-2] | int | get_block_size_up }}" - name: Validate if we need to expand boot block: @@ -48,4 +48,4 @@ - name: Expansion of /boot required ansible.builtin.debug: - msg: "Will need to expand /boot by an additional {{ bigboot_partition_size }}." + msg: "Will need to expand /boot by an additional {{ bigboot_size }}."