diff options
author | mh <mh@immerda.ch> | 2009-09-29 22:20:55 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-12-07 11:34:13 -0500 |
commit | 5be002f172ad5e94d6c2c23d57fb4d3e621bed2d (patch) | |
tree | f16851c9056abc699ded97f5b177d975123647f4 /manifests/rules/out | |
parent | fb82fa42e3c61c6adce3da457d1a4e15208b0683 (diff) | |
download | puppet-shorewall-5be002f172ad5e94d6c2c23d57fb4d3e621bed2d.tar.gz puppet-shorewall-5be002f172ad5e94d6c2c23d57fb4d3e621bed2d.tar.bz2 |
add munin host rule
Diffstat (limited to 'manifests/rules/out')
-rw-r--r-- | manifests/rules/out/munin.pp | 10 |
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'; + } +} |