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