summaryrefslogtreecommitdiff
path: root/manifests/redirect.pp
blob: de50f86389dd9e3431a3f88e480413c403b898ed (plain)
1
2
3
4
5
6
7
8
class firewall::redirect::ssh(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destinationport,
) {
  class { "firewall::implementations::${implementation}::redirect::ssh":
    destinationport = $destinationport,
  }
}