diff options
Diffstat (limited to 'manifests/rules/puppet')
| -rw-r--r-- | manifests/rules/puppet/master.pp | 17 | 
1 files changed, 8 insertions, 9 deletions
| diff --git a/manifests/rules/puppet/master.pp b/manifests/rules/puppet/master.pp index 8ef609f..925979c 100644 --- a/manifests/rules/puppet/master.pp +++ b/manifests/rules/puppet/master.pp @@ -1,11 +1,10 @@  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'; -    } +  shorewall::rule { 'net-me-tcp_puppet-main': +    source          => 'net', +    destination     => '$FW', +    proto           => 'tcp', +    destinationport => '$PUPPETSERVER_PORT,$PUPPETSERVER_SIGN_PORT', +    order           => 240, +    action          => 'ACCEPT'; +  }  } | 
