aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network.pp
blob: da39e609ac0d43b00138ec830a7eaa5fec035f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class nodo::utils::network inherits nodo::utils::network::minimal {
  # Not in use
  #
  # About vimperator, use the addon directly
  # About firegpg, see http://tails.boum.org/bugs/FireGPG_may_be_unsafe/
  # About adblock plus, see http://www.theverge.com/2015/2/2/7963577/google-ads-get-through-adblock
  # See also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686087
  #          http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705999
  package { [
    'gftp',
    'silc',
    'twinkle',
    'konqueror',
    'transmission',
    'amule',
    'vidalia',
    'torchat',
    'epiphany-browser',
    'bittorrent',
    'bittornado',
    'xul-ext-firegpg',
    'xul-ext-adblock-plus',
    'xul-ext-cookie-monster',
    'xul-ext-quickproxy',
    'xul-ext-torbutton',
    'xul-ext-perspectives',
    'xul-ext-greasemonkey',
    'iceweasel-vimperator',
    'mozilla-firefox-adblock',
    'icedtea6-plugin',
    #'luakit',
  ]:
    ensure => absent,
  }
}