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