From b0e94aba64812b6df79d6faeebb9bba626e6962c Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Tue, 20 Aug 2024 14:54:36 -0400 Subject: [PATCH] Fix variable references --- tasks/capture_boot_device_details.yml | 2 +- vars/bigboot_vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/capture_boot_device_details.yml b/tasks/capture_boot_device_details.yml index 6947e09..c66ab36 100644 --- a/tasks/capture_boot_device_details.yml +++ b/tasks/capture_boot_device_details.yml @@ -19,7 +19,7 @@ - name: Capture required expansion space ansible.builtin.set_fact: bigboot_expansion_diff: - "{{ bigboot_partition_size | human_to_bytes - bigboot_boot_partsize | human_to_bytes }}" + "{{ bigboot_size_target | human_to_bytes - bigboot_boot_partsize | human_to_bytes }}" - name: Convert size difference to MB ansible.builtin.set_fact: diff --git a/vars/bigboot_vars.yml b/vars/bigboot_vars.yml index 50d514b..9947f3d 100644 --- a/vars/bigboot_vars.yml +++ b/vars/bigboot_vars.yml @@ -1,7 +1,7 @@ --- ansible_ssh_retries: 10 -bigboot_partition_size: 1G +bigboot_size_target: 1G bigboot_post_reboot_delay: 70 bigboot_reboot_timeout: 1800