This commit is contained in:
Chris Hammer 2025-05-01 12:25:58 -04:00
parent 07d169f527
commit 155c6e2631

View File

@ -1,4 +1,12 @@
--- ---
- name: Convert size target to bytes
ansible.builtin.set_fact:
bigboot_size_target: "{{ bigboot_size_target | human_to_bytes }}"
- name: Debug bigboot_expansion_diff
ansible.builtin.debug:
msg: "{{ bigboot_expansion_diff }} + {{ bigboot_size_target }}"
- name: Fail if /boot can't expand to at least 1GB - name: Fail if /boot can't expand to at least 1GB
ansible.builtin.assert: ansible.builtin.assert:
that: bigboot_size_target | human_to_bytes > 1073741824 that: bigboot_size_target | human_to_bytes > 1073741824