summaryrefslogtreecommitdiff
path: root/manifests/virtual/munin.pp
blob: 531acd9ed920e9de5d84698dc5131305e577e1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
define firewall::virtual::munin(
  $destination,
  $port_orig,
  $port_dest      = '',
  $order          = '400',
  $zone           = 'fw'
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
) {
  class { "firewall::implementations::${implementation}::virtual::munin":
    destination => $destination,
    port_orig   => $port_orig,
    port_dest   => $port_dest,
    order       => $order,
    zone        => $zone,
  }
}