aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josi <josi@puzzle.ch>2010-02-11 17:07:30 +0100
committerMarcel Haerry <haerry@puzzle.ch>2011-08-04 11:17:07 +0200
commitfa06b0a39402d09f1b4b8569f39bd4976fa31503 (patch)
treebf82cd88565e5082166546f80a208cf9fda9d6a2
parentfdc7a438272e1d59d8f9279af2ec10c9cf44f646 (diff)
downloadpuppet-shorewall-fa06b0a39402d09f1b4b8569f39bd4976fa31503.tar.gz
puppet-shorewall-fa06b0a39402d09f1b4b8569f39bd4976fa31503.tar.bz2
add output rule for xmpp
-rw-r--r--manifests/rules/out/xmpp.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/out/xmpp.pp b/manifests/rules/out/xmpp.pp
new file mode 100644
index 0000000..e7812e3
--- /dev/null
+++ b/manifests/rules/out/xmpp.pp
@@ -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';
+ }
+}