summaryrefslogtreecommitdiff
path: root/manifests/wifi.pp
blob: 92415ac5ed2b18098043987b74f315fcafe55b75 (plain)
1
2
3
4
5
6
7
8
9
10
class firewall::wifi (
  $implementation      = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $shorewall_local_net = false,
  $wifi_device         = '',
) {
  class { "firewall::implementations::${implementation}::wifi":
    shorewall_local_net => $shorewall_local_net,
    wifi_device         => $wifi_device,
  }
}