summaryrefslogtreecommitdiff
path: root/manifests/rules/rsync.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/rsync.pp')
-rw-r--r--manifests/rules/rsync.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/rsync.pp b/manifests/rules/rsync.pp
new file mode 100644
index 00000000..144624db
--- /dev/null
+++ b/manifests/rules/rsync.pp
@@ -0,0 +1,10 @@
+class shorewall::rules::rsync {
+ shorewall::rule{'me-net-rsync-tcp':
+ source => '$FW',
+ destination => 'net',
+ proto => 'tcp',
+ destinationport => '873',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}