diff options
author | Simon Josi <josi@puzzle.ch> | 2010-02-11 17:07:30 +0100 |
---|---|---|
committer | Marcel Haerry <haerry@puzzle.ch> | 2011-08-04 11:17:07 +0200 |
commit | fa06b0a39402d09f1b4b8569f39bd4976fa31503 (patch) | |
tree | bf82cd88565e5082166546f80a208cf9fda9d6a2 /manifests/rules/out | |
parent | fdc7a438272e1d59d8f9279af2ec10c9cf44f646 (diff) | |
download | puppet-shorewall-fa06b0a39402d09f1b4b8569f39bd4976fa31503.tar.gz puppet-shorewall-fa06b0a39402d09f1b4b8569f39bd4976fa31503.tar.bz2 |
add output rule for xmpp
Diffstat (limited to 'manifests/rules/out')
-rw-r--r-- | manifests/rules/out/xmpp.pp | 10 |
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'; + } +} |