updates for running under aap with survey

This commit is contained in:
Chris Hammer 2024-02-07 21:11:36 -05:00
parent 80f03628d2
commit e54225e123
2 changed files with 5 additions and 8 deletions

View File

@ -1,12 +1,12 @@
---
- name: Use bigboot role
- name: Resize the /boot parition to the desired size
hosts: bigboot
become: true
gather_facts: true
vars:
bigboot_size: 500M
bigboot_size: "{{ bigboot_new_size | default('') }}"
roles:

View File

@ -1,5 +1,5 @@
---
- name: Shrink logical volumes
- name: Shrink specific logical volume to given size
hosts: shrink_lv
become: true
gather_facts: true
@ -7,11 +7,8 @@
vars:
shrink_lv_devices:
- device: /dev/mapper/test--vg01-test--lv01
size: 80G
- device: /dev/mapper/test--vg02-test--lv02
size: 60G
- device: "{{ shrink_lv_logical_volume | default('') }}"
size: "{{ shrink_lv_volume_size | default('') }}"
roles: