Skip to content

Commit 29f1d64

Browse files
David HollingerDavid Hollinger
authored andcommitted
MODULES-4753 Puppet-lint cleanup
1 parent 1ed696b commit 29f1d64

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

manifests/logical_volume.pp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@
6262
}
6363

6464
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-
Filesystem[$lvm_device_path] ->
7165
Logical_volume[$name]
66+
-> Filesystem[$lvm_device_path]
67+
-> Mount[$mount_title]
68+
} elsif $ensure != 'present' and $createfs {
69+
Mount[$mount_title]
70+
-> Filesystem[$lvm_device_path]
71+
-> Logical_volume[$name]
7272
}
7373

7474
logical_volume { $name:
@@ -89,7 +89,7 @@
8989
mirrorlog => $mirrorlog,
9090
no_sync => $no_sync,
9191
region_size => $region_size,
92-
alloc => $alloc
92+
alloc => $alloc,
9393
}
9494

9595
if $createfs {

0 commit comments

Comments
 (0)