Skip to content

Commit 832e0be

Browse files
committed
volume_group: docs cleanup
1 parent 6f05dc0 commit 832e0be

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

manifests/volume_group.pp

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
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+
#
912
# @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`.
1625
#
1726
define lvm::volume_group (
1827
Variant[Hash, Array, String] $physical_volumes,

0 commit comments

Comments
 (0)