From ebfad1c6824a6e1407a50ae41ad16385fa056465 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 7 Mar 2024 16:48:30 -0500 Subject: [PATCH] chopping it up --- bigboot-noop.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/bigboot-noop.yml b/bigboot-noop.yml index 1f1c387..b1eeae3 100644 --- a/bigboot-noop.yml +++ b/bigboot-noop.yml @@ -15,14 +15,22 @@ - name: Shrink a logical volume for /boot expansion if needed 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 ansible.builtin.include_role: name: rhc.rear.say_hi -- name: Import say-hi playbook +- name: Import hi playbook 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."