root / manifests / rules / tor.pp @ 0b7bcb5d
Historique | Voir | Annoter | Télécharger (235 octets)
1 | 09cba182 | Steve Traylen | # @summary manage in tor |
---|---|---|---|
2 | # @param ports ports for tor |
||
3 | 11bf7237 | Steve Traylen | class nftables::rules::tor ( |
4 | 94a80621 | Steve Traylen | Array[Stdlib::Port,1] $ports = [9001], |
5 | a98c98d4 | tr | ) { |
6 | 11bf7237 | Steve Traylen | nftables::rule { |
7 | a98c98d4 | tr | 'default_in-tor': |
8 | content => "tcp dport {${join($ports,', ')}} accept", |
||
9 | } |
||
10 | } |