diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-03-30 23:59:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-03-30 23:59:33 -0300 |
commit | 589f5723d500ad7325e19dfeb1d3b8450044acf1 (patch) | |
tree | 48636d17f49384689244928dfa9b05e1b9f402c4 | |
parent | 65e12806a1d4a3ac2f9541a7e5dfbde61d8df5a4 (diff) | |
download | puppet-shorewall-589f5723d500ad7325e19dfeb1d3b8450044acf1.tar.gz puppet-shorewall-589f5723d500ad7325e19dfeb1d3b8450044acf1.tar.bz2 |
Fix shorewall::rules::rsync source/destination
-rw-r--r-- | manifests/rules/rsync.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/rules/rsync.pp b/manifests/rules/rsync.pp index 144624d..a7887db 100644 --- a/manifests/rules/rsync.pp +++ b/manifests/rules/rsync.pp @@ -1,7 +1,7 @@ class shorewall::rules::rsync { shorewall::rule{'me-net-rsync-tcp': - source => '$FW', - destination => 'net', + source => 'net', + destination => '$FW', proto => 'tcp', destinationport => '873', order => 240, |