summaryrefslogtreecommitdiff
path: root/manifests/redirect.pp
blob: f6e8ad538a9e38e9dd020e69f4cc3543bdf99e57 (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,
  }
}