summaryrefslogtreecommitdiff
path: root/manifests/virtual/gitd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/virtual/gitd.pp')
-rw-r--r--manifests/virtual/gitd.pp9
1 files changed, 5 insertions, 4 deletions
diff --git a/manifests/virtual/gitd.pp b/manifests/virtual/gitd.pp
index 23095aa..02c4fb9 100644
--- a/manifests/virtual/gitd.pp
+++ b/manifests/virtual/gitd.pp
@@ -1,18 +1,19 @@
-class firewall::virtual::gitd($destination, $zone = 'fw') {
+class firewall::virtual::gitd($destination) {
shorewall::rule { 'git-daemon-1':
action => 'DNAT',
source => 'net',
- destination => "$zone:$destination:9418",
+ destination => "vm:$destination:9418",
proto => 'tcp',
destinationport => '9418',
+ originaldest => hiera('firewall::external_ip', $::ipaddress),
ratelimit => '-',
order => 800,
}
shorewall::rule { 'git-daemon-2':
action => 'DNAT',
- source => '$FW',
- destination => "$zone:$destination:9418",
+ source => 'vm',
+ destination => "fw:$destination:9418",
proto => 'tcp',
destinationport => '9418',
originaldest => hiera('firewall::external_ip', $::ipaddress),