diff options
author | mh <mh@immerda.ch> | 2009-09-28 22:07:44 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-12-07 11:33:57 -0500 |
commit | f3b1efbc3f39f9d4bf7ac8cda90f13038f9d756f (patch) | |
tree | 285621054b3908ac0b909b937bb076759b0a2f74 /manifests | |
parent | 9b39294f002c9c0aabe34e574c828cf7a4e6d17c (diff) | |
download | puppet-shorewall-f3b1efbc3f39f9d4bf7ac8cda90f13038f9d756f.tar.gz puppet-shorewall-f3b1efbc3f39f9d4bf7ac8cda90f13038f9d756f.tar.bz2 |
add nfsd port
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/rules/nfsd.pp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/manifests/rules/nfsd.pp b/manifests/rules/nfsd.pp index 23ed33c..bd509cf 100644 --- a/manifests/rules/nfsd.pp +++ b/manifests/rules/nfsd.pp @@ -95,4 +95,21 @@ class shorewall::rules::nfsd { order => 240, action => 'ACCEPT'; } + shorewall::rule { 'net-me-rpc.nfsd-tcp': + source => 'net', + destination => '$FW', + proto => 'tcp', + destinationport => '2049', + order => 240, + action => 'ACCEPT'; + } + shorewall::rule { 'net-me-rpc.nfsd-udp': + source => 'net', + destination => '$FW', + proto => 'udp', + destinationport => '2049', + order => 240, + action => 'ACCEPT'; + } + } |