diff options
author | Juerg Gerber <gerber@puzzle.ch> | 2010-10-25 16:35:45 +0200 |
---|---|---|
committer | Marcel Haerry <haerry@puzzle.ch> | 2011-08-04 11:23:55 +0200 |
commit | 03cf926ad26a0b1b5c2882ea0b9642aca9b058cf (patch) | |
tree | d4740a4e9bcb9b85c110bd90176a0d329fc7587a /manifests | |
parent | 77dd3cb7444ef0fa2d3e9594342acd0b60e92b1c (diff) | |
download | puppet-shorewall-03cf926ad26a0b1b5c2882ea0b9642aca9b058cf.tar.gz puppet-shorewall-03cf926ad26a0b1b5c2882ea0b9642aca9b058cf.tar.bz2 |
added rule for tomcat
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/rules/tomcat.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/rules/tomcat.pp b/manifests/rules/tomcat.pp new file mode 100644 index 0000000..3c6f9df --- /dev/null +++ b/manifests/rules/tomcat.pp @@ -0,0 +1,12 @@ +class shorewall::rules::tomcat { + # open tomcat port + shorewall::rule { + 'net-me-tomcat-tcp': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => '8080', + order => 240, + action => 'ACCEPT'; + } +} |