summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2017-08-29 12:52:56 +0200
committermh <mh@immerda.ch>2017-08-29 12:52:56 +0200
commit398b8b94cbeedf08615c926a5a37974bca002943 (patch)
tree43ca5ad5252a775b3c10dfc902974f443aeaff3b
parent1643fc0f14aaf4a31f18af8adcf682298a9c8aca (diff)
fix param name
-rw-r--r--manifests/rules/out/ibackup.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/rules/out/ibackup.pp b/manifests/rules/out/ibackup.pp
index 9827426..17cc314 100644
--- a/manifests/rules/out/ibackup.pp
+++ b/manifests/rules/out/ibackup.pp
@@ -1,6 +1,6 @@
class shorewall::rules::out::ibackup(
$backup_host,
- $shorewall4 = true,
+ $shorewall = true,
$shorewall6 = false,
){
shorewall::rule { 'me-net-tcp_backupssh':
@@ -10,7 +10,7 @@ class shorewall::rules::out::ibackup(
destinationport => 'ssh',
order => 240,
action => 'ACCEPT',
- shorewall4 => $shorewall4,
+ shorewall => $shorewall,
shorewall6 => $shorewall6,
}
}