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