Skip to content

Commit 1653533

Browse files
authored
Merge pull request #148 from GiooDev/missing_mirror
Add missing parameters to manage mirrors for lvm::logical_volume.
2 parents 5b3632a + ac0c650 commit 1653533

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

manifests/logical_volume.pp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
$range = undef,
2222
$size_is_minsize = undef,
2323
$type = undef,
24+
$mirror = undef,
25+
$mirrorlog = undef,
26+
$no_sync = undef,
27+
$region_size = undef,
28+
$alloc = undef,
2429
) {
2530

2631
validate_bool($mountpath_require)
@@ -81,7 +86,12 @@
8186
extents => $extents,
8287
range => $range,
8388
size_is_minsize => $size_is_minsize,
84-
type => $type
89+
type => $type,
90+
mirror => $mirror,
91+
mirrorlog => $mirrorlog,
92+
no_sync => $no_sync,
93+
region_size => $region_size,
94+
alloc => $alloc
8595
}
8696

8797
if $createfs {

0 commit comments

Comments
 (0)