1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-04 07:51:50 +00:00

lvg examples: use YAML lists (#10363)

Use YAML lists.
This commit is contained in:
Felix Fontein 2025-07-11 07:07:21 +02:00 committed by GitHub
parent a0200d1130
commit 1a7aafc037
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,7 +123,9 @@ EXAMPLES = r"""
- name: Create or resize a volume group on top of /dev/sdb1 and /dev/sdc5.
community.general.lvg:
vg: vg.services
pvs: /dev/sdb1,/dev/sdc5
pvs:
- /dev/sdb1
- /dev/sdc5
- name: Remove a volume group with name vg.services
community.general.lvg:
@ -163,7 +165,9 @@ EXAMPLES = r"""
community.general.lvg:
state: inactive
vg: vg.services
pvs: /dev/sdb1,/dev/sdc5
pvs:
- /dev/sdb1
- /dev/sdc5
reset_vg_uuid: true
reset_pv_uuid: true
"""