diff options
author | mh <mh@immerda.ch> | 2017-08-29 12:52:56 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2017-08-29 12:52:56 +0200 |
commit | 398b8b94cbeedf08615c926a5a37974bca002943 (patch) | |
tree | 43ca5ad5252a775b3c10dfc902974f443aeaff3b | |
parent | 1643fc0f14aaf4a31f18af8adcf682298a9c8aca (diff) |
fix param name
-rw-r--r-- | manifests/rules/out/ibackup.pp | 4 |
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, } } |