Assertion fix

This commit is contained in:
Chris Hammer 2025-05-27 14:02:13 -04:00
parent 716698202d
commit 7abd1e74e2

View File

@ -38,7 +38,7 @@
block:
- name: "Assert that /boot is already at or above {{ bigboot_size_min }}"
ansible.builtin.assert:
that: bigboot_boot_partsize | human_to_bytes < bigboot_size_min | int
that: bigboot_boot_partsize | human_to_bytes >= bigboot_size_min | human_to_bytes
success_msg: >
/boot partition size is already at least {{ bigboot_size_min }}
or greater. Nothing to do."