summaryrefslogtreecommitdiff
path: root/manifests/virtual/mdns.pp
blob: 559a00b0ad467b63e3b5a918f22ef36f8efefc58 (plain)
1
2
3
4
5
6
7
8
9
class firewall::virtual::mdns(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destination, $zone = 'fw'
) {
  class { "firewall::implementations::${implementation}::virtual::mdns":
    destination => $destination,
    zone        => $zone,
  }
}