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