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