New in version 2.8.
Parameter | Choices/Defaults | Comments |
---|---|---|
force
boolean
|
|
Force volume group creation.
|
pp_size
integer
|
The size of the physical partition in megabytes.
|
|
pvs
list
|
List of comma-separated devices to use as physical devices in this volume group.
Required when creating or extending (
present state) the volume group.If not informed reducing (
absent state) the volume group will be removed. |
|
state
string
|
|
Control if the volume group exists and volume group AIX state varyonvg
varyon or varyoffvg varyoff . |
vg
string
/ required
|
The name of the volume group.
|
|
vg_type
string
|
|
The type of the volume group.
|
Note
- name: Create a volume group datavg
aix_lvg:
vg: datavg
pp_size: 128
vg_type: scalable
state: present
- name: Removing a volume group datavg
aix_lvg:
vg: datavg
state: absent
- name: Extending rootvg
aix_lvg:
vg: rootvg
pvs: hdisk1
state: present
- name: Reducing rootvg
aix_lvg:
vg: rootvg
pvs: hdisk1
state: absent
Hint
If you notice any issues in this documentation you can edit this document to improve it.