summaryrefslogtreecommitdiff
path: root/manifests/rules/out/puppet.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/out/puppet.pp')
-rw-r--r--manifests/rules/out/puppet.pp4
1 files changed, 1 insertions, 3 deletions
diff --git a/manifests/rules/out/puppet.pp b/manifests/rules/out/puppet.pp
index 2444dcb..ac13bbb 100644
--- a/manifests/rules/out/puppet.pp
+++ b/manifests/rules/out/puppet.pp
@@ -2,13 +2,11 @@
class shorewall::rules::out::puppet(
$puppetserver = "puppet.${::domain}",
$puppetserver_port = 8140,
- $puppetserver_signport = 8141,
$shorewall6 = true,
) {
class{'shorewall::rules::puppet':
puppetserver => $puppetserver,
puppetserver_port => $puppetserver_port,
- puppetserver_signport => $puppetserver_signport,
shorewall6 => $shorewall6,
}
# we want to connect to the puppet server
@@ -16,7 +14,7 @@ class shorewall::rules::out::puppet(
source => '$FW',
destination => 'net:$PUPPETSERVER',
proto => 'tcp',
- destinationport => '$PUPPETSERVER_PORT,$PUPPETSERVER_SIGN_PORT',
+ destinationport => '$PUPPETSERVER_PORT',
order => 340,
shorewall6 => $shorewall6,
action => 'ACCEPT';