diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-25 13:29:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-25 13:29:40 -0300 |
commit | a3e5ee421e5686b2e5f7536a91436e37a7b1e684 (patch) | |
tree | 9ed3722c77fc2a8f003bb103b2e8305a85fa6272 /manifests/router/rsync.pp | |
parent | 9bfd1dd20b5cc47a5dd8a5bc8cc3e1e2183e1626 (diff) | |
download | puppet-firewall-a3e5ee421e5686b2e5f7536a91436e37a7b1e684.tar.gz puppet-firewall-a3e5ee421e5686b2e5f7536a91436e37a7b1e684.tar.bz2 |
Misc fixes (2)
Diffstat (limited to 'manifests/router/rsync.pp')
-rw-r--r-- | manifests/router/rsync.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/router/rsync.pp b/manifests/router/rsync.pp index 9e36f85..8098e4a 100644 --- a/manifests/router/rsync.pp +++ b/manifests/router/rsync.pp @@ -3,7 +3,7 @@ class firewall::router::rsync( $port_orig = '873', $port_dest = '', $zone = 'loc', - $originaldest = $ipaddress + $originaldest = $ipaddress, $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'), ) { class { "firewall::implementations::${implementation}::router::rsync": @@ -11,7 +11,6 @@ class firewall::router::rsync( port_orig => $port_orig, port_dest => $port_dest, zone => $zone, - order => $order, originaldest => $originaldest, } } |