mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -69,47 +69,47 @@ options:
|
|||
|
||||
EXAMPLES = r'''
|
||||
- name: Create a logical volume of 512M
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: testlv
|
||||
size: 512M
|
||||
|
||||
- name: Create a logical volume of 512M with disks hdisk1 and hdisk2
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: test2lv
|
||||
size: 512M
|
||||
pvs: [ hdisk1, hdisk2 ]
|
||||
|
||||
- name: Create a logical volume of 512M mirrored
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: test3lv
|
||||
size: 512M
|
||||
copies: 2
|
||||
|
||||
- name: Create a logical volume of 1G with a minimum placement policy
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: rootvg
|
||||
lv: test4lv
|
||||
size: 1G
|
||||
policy: minimum
|
||||
|
||||
- name: Create a logical volume with special options like mirror pool
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: testlv
|
||||
size: 512M
|
||||
opts: -p copy1=poolA -p copy2=poolB
|
||||
|
||||
- name: Extend the logical volume to 1200M
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: test4lv
|
||||
size: 1200M
|
||||
|
||||
- name: Remove the logical volume
|
||||
aix_lvol:
|
||||
community.general.aix_lvol:
|
||||
vg: testvg
|
||||
lv: testlv
|
||||
state: absent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue