summaryrefslogtreecommitdiff
path: root/manifests/router/http.pp
blob: 6b4eb90d4c0a97695f9948a6bf4b6ec720ec64c6 (plain)
1
2
3
4
5
6
7
8
9
10
class firewall::router::http(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destination, $zone = 'loc', $originaldest = $ipaddress
) {
  class { "firewall::implementations::${implementation}::router::http":
    destination  => $destination,
    zone         => $zone,
    originaldest => $originaldest,
  }
}