webhooks work again; revert back to previous broken state.

This commit is contained in:
Chris Hammer 2024-03-08 01:13:04 -05:00
parent 614b86ae72
commit 91b8a1c92f

View File

@ -18,7 +18,7 @@
- name: Import hi playbook - name: Import hi playbook
ansible.builtin.import_playbook: rhc.rear.hi ansible.builtin.import_playbook: rhc.rear.hi
when: hostvars[inventory_hostname][bigboot_expansion_diff] | int <= 0 when: bigboot_expansion_diff | int <= 0
- name: Expand the /boot partition - name: Expand the /boot partition
@ -31,19 +31,15 @@
- name: Execute Shrink_LV/Bigboot as needed - name: Execute Shrink_LV/Bigboot as needed
when: bigboot_expansion_diff | int <= 0 when: bigboot_expansion_diff | int <= 0
block: block:
- name: Yo - name: Execute Shrink_LV role to resize target logical volume
ansible.builtin.debug: ansible.builtin.import_role:
var: bigboot_expansion_diff name: infra.lvm_snapshots.shrink_lv
vars:
shrink_lv_devices:
- device: "{{ bigboot_adjacent_lvm_device | trim }}"
size: "{{ bigboot_lv_shrink_size | int }}"
when: bigboot_execute_shrink_lv | bool
# - name: Execute Shrink_LV role to resize target logical volume - name: Expand the /boot partition as requested
# ansible.builtin.import_role: ansible.builtin.include_role:
# name: infra.lvm_snapshots.shrink_lv name: infra.lvm_snapshots.bigboot
# vars:
# shrink_lv_devices:
# - device: "{{ bigboot_adjacent_lvm_device | trim }}"
# size: "{{ bigboot_lv_shrink_size | int }}"
# when: bigboot_execute_shrink_lv | bool
# - name: Expand the /boot partition as requested
# ansible.builtin.include_role:
# name: infra.lvm_snapshots.bigboot