aboutsummaryrefslogtreecommitdiff
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.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/rules/out/puppet.pp b/manifests/rules/out/puppet.pp
new file mode 100644
index 0000000..5cd4643
--- /dev/null
+++ b/manifests/rules/out/puppet.pp
@@ -0,0 +1,12 @@
+class shorewall::rules::out::puppet {
+ include ::shorewall::rules::puppet
+ # we want to connect to the puppet server
+ shorewall::rule { 'me-net-puppet_tcp':
+ source => '$FW',
+ destination => 'net:$PUPPETSERVER',
+ proto => 'tcp',
+ destinationport => '$PUPPETSERVER_PORT,$PUPPETSERVER_SIGN_PORT',
+ order => 340,
+ action => 'ACCEPT';
+ }
+}