|
1 | | -# @param physical_volumes The list of physical volumes to be included in the volume group; |
2 | | -# this will automatically set these as dependencies, but they must be defined elsewhere using the physical_volume resource type. |
3 | | - |
4 | | -# @param createonly If set to true the volume group will be created if it does not exist. |
5 | | -# If the volume group does exist no action will be taken. Defaults to false. Allowed Values: |
6 | | -# true |
7 | | -# false |
8 | | - |
| 1 | +# @summary Manage a volume group. |
| 2 | +# |
| 3 | +# @param physical_volumes |
| 4 | +# The list of physical volumes to be included in the volume group. |
| 5 | +# This will automatically set these as dependencies, but they must |
| 6 | +# be defined elsewhere using the physical_volume resource type. |
| 7 | +# |
| 8 | +# @param createonly |
| 9 | +# If true, the volume group will be created if it does not exist. If |
| 10 | +# the volume group does exist, no action will be taken. |
| 11 | +# |
9 | 12 | # @param ensure |
10 | | - |
11 | | -# @param logical_volumes |
12 | | - |
13 | | -# @param followsymlinks If set to true all current and wanted values of the physical_volumes property will be followed to their real |
14 | | -# files on disk if they are in fact symlinks. This is useful to have Puppet determine what the actual PV device is if the property |
15 | | -# value is a symlink, like '/dev/disk/by-path/xxxx -> ../../sda'. Defaults to false. |
| 13 | +# Whether this volume group should be present or absent. |
| 14 | +# |
| 15 | +# @param logical_volumes |
| 16 | +# A hash of lvm::logical_volume resources to create in this volume |
| 17 | +# group. |
| 18 | +# |
| 19 | +# @param followsymlinks |
| 20 | +# If true, all current and wanted values of the physical_volumes |
| 21 | +# property will be followed to their real files on disk if they are |
| 22 | +# in fact symlinks. This is useful to have Puppet determine what the |
| 23 | +# actual PV device is if the property value is a symlink, like |
| 24 | +# `/dev/disk/by-path/xxxx -> ../../sda`. |
16 | 25 | # |
17 | 26 | define lvm::volume_group ( |
18 | 27 | Variant[Hash, Array, String] $physical_volumes, |
|
0 commit comments