summaryrefslogtreecommitdiff
path: root/manifests/router/tor.pp
blob: b93ea05ec4baa902765fb7c4f4c248d87c90453e (plain)
1
2
3
4
5
6
7
8
9
10
define firewall::router::tor(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $destination, $zone = 'loc', $originaldest = $ipaddress
) {
  class { "firewall::implementations::${implementation}::router::tor":
    destination  => $destination,
    zone         => $zone,
    originaldest => $originaldest,
  }
}