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

19 lines
313 B
YAML

---
- name: Shrink specific logical volume to given size
hosts: all
become: true
gather_facts: true
vars:
shrink_lv_devices:
- device: "{{ shrink_lv_logical_volume | default('') }}"
size: "{{ shrink_lv_volume_size | default('') }}"
roles:
- infra.lvm_snapshots.shrink_lv
...