summaryrefslogtreecommitdiff
path: root/manifests/torrent.pp
blob: bee024bded90e45af2a54d304b7699364c704639 (plain)
1
2
3
4
5
6
7
8
class firewall::torrent(
  $implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
  $range          = lookup('firewall::torrent::range', undef, undef, '6881:6999')
) {
  class { "firewall::implementations::${implementation}::torrent":
    range => $range,
  }
}