aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-09-29 22:20:55 +0200
committerMicah Anderson <micah@riseup.net>2009-12-07 11:34:13 -0500
commit5be002f172ad5e94d6c2c23d57fb4d3e621bed2d (patch)
treef16851c9056abc699ded97f5b177d975123647f4
parentfb82fa42e3c61c6adce3da457d1a4e15208b0683 (diff)
downloadpuppet-shorewall-5be002f172ad5e94d6c2c23d57fb4d3e621bed2d.tar.gz
puppet-shorewall-5be002f172ad5e94d6c2c23d57fb4d3e621bed2d.tar.bz2
add munin host rule
-rw-r--r--manifests/rules/out/munin.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/out/munin.pp b/manifests/rules/out/munin.pp
new file mode 100644
index 0000000..7b0a015
--- /dev/null
+++ b/manifests/rules/out/munin.pp
@@ -0,0 +1,10 @@
+class shorewall::rules::out::munin {
+ shorewall::rule { 'me-net-rcp_muninhost':
+ source => '$FW',
+ destination => 'net',
+ proto => 'tcp',
+ destinationport => '4949',
+ order => 340,
+ action => 'ACCEPT';
+ }
+}