shrink_lv/bigboot.yml
2024-02-07 21:22:14 -05:00

17 lines
225 B
YAML

---
- name: Resize the /boot parition to the desired size
hosts: all
become: true
gather_facts: true
vars:
bigboot_size: "{{ bigboot_new_size | default('') }}"
roles:
- infra.lvm_snapshots.bigboot
...