aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network.pp
blob: cb9e5c5972c1845632de8f676b8e5269c56a144e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
class nodo::utils::network inherits nodo::utils::network::minimal {
  # Network
  package { [
    'mutt',
    'offlineimap',
    'newsbeuter',
    'bogofilter',
    'fetchmail',
    'procmail',
    'msmtp',
    'notmuch-mutt',
    'links',
    'elinks',
    'firefox-esr',
    'pssh',
    'mutt-patched',
    'sslscan',
    'muttprofile',
    'surfraw',
    'w3m',
    'mailplate',
    'geoip-bin',
    'rig',
    'sup-mail',
    #'connect-proxy',
    #'avahi-discover',
    #'mdns-scan',
    #'davfs2',
    #'ssvnc',
    #'mairix',
    #'openvpn',
    #'nicotine',
    #'sshfs',
  ]:
    ensure => installed,
  }

  # Fix: ensure that fetchmail is not a service
  service { 'fetchmail':
    ensure  => stopped,
    enable  => false,
    require => Package['fetchmail'],
  }

  # Using the addon directly
  package { [
    'iceweasel-vimperator',
  ]:
    ensure => absent,
  }

  # Old packages
  # 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
  package { [
    'silc',
    'twinkle',
    'konqueror',
    'transmission',
    'amule',
    'epiphany-browser',
    'bittorrent',
    'bittornado',
    'xul-ext-firegpg',
    'xul-ext-adblock-plus',
  ]:
    ensure => absent,
  }

  # Squeeze (or newer) packages
  if $::lsbdistcodename != 'lenny' {
    package { [ 
      'xul-ext-monkeysphere',
      'libical-parser-perl',
      'maildir-utils',
      'xul-ext-noscript',
      'xul-ext-firebug',
      'msva-perl',
      'chromium-l10n',
    ]:
      ensure => installed,
    }
  }

  # Not using right now
  package { [
    'xul-ext-torbutton',
    'vidalia',
    'xul-ext-perspectives',
    'xul-ext-greasemonkey',
    'torchat',
  ]:
    ensure => absent,
  }

  package { [
    'chromium',
  ]:
    ensure  => present,
    name    => $::lsbdistcodename ? {
      'wheezy' => 'chromium-browser',
      default  => 'chromium',
    },
  }

  # Wheezy (or newer) packages
  if $::lsbdistcodename != 'squeeze' {
    package { [ 
      'xul-ext-https-everywhere',
      'xul-ext-refcontrol',
    ]:
      ensure => installed,
    }

    # See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686087
    #     http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705999
    package { [
      'xul-ext-cookie-monster',
      'xul-ext-quickproxy',
    ]:
      ensure => absent,
    }
  }

  # Jessie ownwards
  #package { [
  #  'xul-ext-pentadactyl',
  #  'xul-ext-stylish',
  #]:
  #  ensure => installed,
  #}

  # Wheezy only
  package { [
    'gftp',
    'icedtea6-plugin',
    'luakit',
  ]:
    ensure => $::lsbdistcodename ? {
      'lenny' => present,
      default => absent,
    },
  }

  # Lenny only
  package { [
    'mozilla-firefox-adblock',
  ]:
    ensure => $::lsbdistcodename ? {
      'lenny' => present,
      default => absent,
    },
  }

  # Browser alternative
  file { "/etc/alternatives/x-www-browser":
    ensure  => "/usr/bin/iceweasel",
    owner   => root,
    group   => root,
    require => Package['iceweasel'],
  }

  # Browser alternative: manpage
  file { "/etc/alternatives/x-www-browser.1.gz":
    ensure  => "/usr/share/man/man1/iceweasel.1.gz",
    owner   => root,
    group   => root,
    require => Package['iceweasel'],
  }
}