aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/minimal.pp
blob: 3ed69645da3df298de7ad1faed06cd8ccaaf45a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class nodo::utils::network::minimal {
  include nodo::utils::network::irssi
  include nodo::utils::network::torrent

  package { [ 'unison', 'httrack' ]:
    ensure => installed,
  }

  # For backwards compatibility
  # See addversionno unison config parameter
  package { 'unison2.32.52':
    ensure => $::lsbdistcodename ? {
      'wheezy' => present,
      default  => absent,
    }
  }
}