aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/torrent.pp
blob: f802378612f4904eed1136b26763abd1b9fe5413 (plain)
1
2
3
4
5
6
7
8
9
10
class nodo::utils::network::torrent (
  $ensure = 'installed',
) {
  package { [
    'rtorrent',
    'rhash',
  ]:
    ensure => $ensure,
  }
}