diff options
Diffstat (limited to 'manifests/rules/out')
| -rw-r--r-- | manifests/rules/out/git.pp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/manifests/rules/out/git.pp b/manifests/rules/out/git.pp new file mode 100644 index 0000000..cb88da8 --- /dev/null +++ b/manifests/rules/out/git.pp @@ -0,0 +1,10 @@ +class shorewall::rules::out::git { +    shorewall::rule{'me-net-git-tcp': +        source          => '$FW', +        destination     => 'net', +        proto           => 'tcp', +        destinationport => '9418', +        order           => 240, +        action          => 'ACCEPT'; +    } +} | 
