summaryrefslogtreecommitdiff
path: root/manifests/virtual/gitd.pp
blob: b760f03d6399b5610b1ec4c506257ccd6bf676d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class firewall::virtual::gitd($destination) {
  shorewall::rule { 'git-daemon-1':
    action          => 'DNAT',
    source          => 'net',
    destination     => "vm:$destination:9418",
    proto           => 'tcp',
    destinationport => '9418',
    originaldest    => lookup('firewall::external_ip', undef, undef, $::ipaddress),
    ratelimit       => '-',
    order           => 800,
  }

  shorewall::rule { 'git-daemon-2':
    action          => 'DNAT',
    source          => 'vm',
    destination     => "fw:$destination:9418",
    proto           => 'tcp',
    destinationport => '9418',
    originaldest    => lookup('firewall::external_ip', undef, undef, $::ipaddress),
    ratelimit       => '-',
    order           => 801,
  }
}