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