summaryrefslogtreecommitdiff
path: root/manifests/rules/puppet/master.pp
blob: 56b9f0bb02f2e448aef838fd7699a0140bc55aaa (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',
    order           => 240,
    action          => 'ACCEPT';
  }
}