]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
add output rule for xmpp
authorSimon Josi <josi@puzzle.ch>
Thu, 11 Feb 2010 16:07:30 +0000 (17:07 +0100)
committerMarcel Haerry <haerry@puzzle.ch>
Thu, 4 Aug 2011 09:17:07 +0000 (11:17 +0200)
manifests/rules/out/xmpp.pp [new file with mode: 0644]

diff --git a/manifests/rules/out/xmpp.pp b/manifests/rules/out/xmpp.pp
new file mode 100644 (file)
index 0000000..e7812e3
--- /dev/null
@@ -0,0 +1,10 @@
+class shorewall::rules::out::xmppp {
+    shorewall::rule{'me-net-xmpp-tcp':
+        source          => '$FW',
+        destination     => 'net',
+        proto           => 'tcp',
+        destinationport => '5222',
+        order           => 240,
+        action          => 'ACCEPT';
+    }
+}