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

  shorewall::rule { 'git-daemon-2':
    action          => 'DNAT',
    source          => '$FW',
    destination     => "$zone:$destination:9418",
    proto           => 'tcp',
    destinationport => '9418',
    originaldest    => "$originaldest",
    ratelimit       => '-',
    order           => 801,
  }
}