summaryrefslogtreecommitdiff
path: root/manifests/rules/puppet/master.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-10-02 13:56:23 +0200
committerMicah Anderson <micah@riseup.net>2009-12-07 11:34:22 -0500
commit40a3ba49d07e000321c361f2712da47557415fab (patch)
tree459d4d5aac8e0794ae65cb7c048e62df06fa34e2 /manifests/rules/puppet/master.pp
parent28f6a27507139db939a0204e36f0f27569a2f117 (diff)
add puppet rules
Diffstat (limited to 'manifests/rules/puppet/master.pp')
-rw-r--r--manifests/rules/puppet/master.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rules/puppet/master.pp b/manifests/rules/puppet/master.pp
new file mode 100644
index 0000000..8ef609f
--- /dev/null
+++ b/manifests/rules/puppet/master.pp
@@ -0,0 +1,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';
+ }
+}