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