Fix variable references

This commit is contained in:
2024-08-20 14:36:56 -04:00
parent d41609c832
commit 3b8624fea8
2 changed files with 3 additions and 3 deletions

View File

@ -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 }}."