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