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