chopping it up

This commit is contained in:
Chris Hammer 2024-03-07 16:48:30 -05:00
parent 696fc21045
commit ebfad1c682

View File

@ -15,14 +15,22 @@
- name: Shrink a logical volume for /boot expansion if needed - name: Shrink a logical volume for /boot expansion if needed
ansible.builtin.import_tasks: tasks/bigboot_manage_lv-noop.yml ansible.builtin.import_tasks: tasks/bigboot_manage_lv-noop.yml
- name: Expand the /boot partition as requested
ansible.builtin.debug:
msg: "Would have included infra.lvm_snapshots.bigboot here."
- name: Include say_hi role from rhc.rear - name: Include say_hi role from rhc.rear
ansible.builtin.include_role: ansible.builtin.include_role:
name: rhc.rear.say_hi name: rhc.rear.say_hi
- name: Import say-hi playbook - name: Import hi playbook
ansible.builtin.import_playbook: rhc.rear.hi ansible.builtin.import_playbook: rhc.rear.hi
- name: Expand the /boot partition
hosts: all
become: true
gather_facts: true
strategy: free
tasks:
- name: Expand the /boot partition as requested
ansible.builtin.debug:
msg: "Would have included infra.lvm_snapshots.bigboot here."