initial project commit

This commit is contained in:
2024-02-05 16:28:05 -05:00
commit 5861055c15
3299 changed files with 458518 additions and 0 deletions

21
shrink_lv.yml Normal file
View File

@ -0,0 +1,21 @@
---
- name: Shrink logical volumes
hosts: shrink_lv
become: true
gather_facts: true
vars:
shrink_lv_devices:
- device: /dev/mapper/test--vg01-test--lv01
size: 80G
- device: /dev/mapper/test--vg02-test--lv02
size: 60G
roles:
- infra.lvm_snapshots.shrink_lv
...