summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/out/xmpp.pp
blob: a1b4577cb8dae838f3345deecda49841af988640 (plain)
1
2
3
4
5
6
7
8
9
10
class shorewall::rules::out::xmpp {
    shorewall::rule{'me-net-xmpp-tcp':
        source          => '$FW',
        destination     => 'net',
        proto           => 'tcp',
        destinationport => '5222',
        order           => 240,
        action          => 'ACCEPT';
    }
}