aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-09-22 18:12:09 +0200
committermh <mh@immerda.ch>2015-12-05 11:34:54 +0100
commitb962d72a0b3004805c333e2417018bde487ed956 (patch)
tree02f4ae954d0701cbf86d96b249497bad00f0d640
parent1d1a46aa9e16de851c88e76b033e1a1aa00e8c2c (diff)
downloadpuppet-shorewall-b962d72a0b3004805c333e2417018bde487ed956.tar.gz
puppet-shorewall-b962d72a0b3004805c333e2417018bde487ed956.tar.bz2
add rules for pyzor
-rw-r--r--manifests/rules/out/pyzor.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/rules/out/pyzor.pp b/manifests/rules/out/pyzor.pp
new file mode 100644
index 0000000..f4f5151
--- /dev/null
+++ b/manifests/rules/out/pyzor.pp
@@ -0,0 +1,12 @@
+# pyzor calls out on 24441
+# https://wiki.apache.org/spamassassin/NetTestFirewallIssues
+class shorewall::rules::out::pyzor {
+ shorewall::rule { 'me-net-udp_pyzor':
+ source => '$FW',
+ destination => 'net',
+ proto => 'udp',
+ destinationport => '24441',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}