From: Simon Josi Date: Thu, 11 Feb 2010 16:07:30 +0000 (+0100) Subject: add output rule for xmpp X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=fa06b0a39402d09f1b4b8569f39bd4976fa31503;p=puppet-shorewall.git add output rule for xmpp --- 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'; + } +}