aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/puppet/master.pp
blob: 8ef609f0e2e3c158d5a643ce4e77a533268ff7ce (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::puppet::master {
    include ::shorewall::rules::puppet
    shorewall::rule { 'net-me-tcp_puppet-main':
        source          => 'net',
        destination     => '$FW',
        proto           => 'tcp',
        destinationport => '$PUPPETSERVER_PORT,$PUPPETSERVER_SIGN_PORT',
        order           => 240,
        action          => 'ACCEPT';
    }
}