We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed696b commit 29f1d64Copy full SHA for 29f1d64
manifests/logical_volume.pp
@@ -62,13 +62,13 @@
62
}
63
64
if $ensure == 'present' and $createfs {
65
- Logical_volume[$name] ->
66
- Filesystem[$lvm_device_path] ->
67
- Mount[$mount_title]
68
- } elsif $ensure != 'present' and $createfs {
69
- Mount[$mount_title] ->
70
71
Logical_volume[$name]
+ -> Filesystem[$lvm_device_path]
+ -> Mount[$mount_title]
+ } elsif $ensure != 'present' and $createfs {
+ Mount[$mount_title]
+ -> Logical_volume[$name]
72
73
74
logical_volume { $name:
@@ -89,7 +89,7 @@
89
mirrorlog => $mirrorlog,
90
no_sync => $no_sync,
91
region_size => $region_size,
92
- alloc => $alloc
+ alloc => $alloc,
93
94
95
if $createfs {
0 commit comments