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
|
class utils::network {
# Network
package { [ 'mutt', 'irssi', 'offlineimap', 'epiphany-browser',
'newsbeuter', 'bitlbee', 'nicotine', 'silc',
'irssi-plugin-silc', 'bogofilter', 'fetchmail', 'procmail',
'msmtp', 'mairix', 'konqueror', 'bittorrent',
'irssi-scripts', 'links', 'twinkle', 'bittornado',
'rtorrent', 'iceweasel', 'irssi-plugin-otr', 'transmission',
'openvpn', 'amule', 'pssh', 'pidgin',
'pidgin-encryption', 'pidgin-openpgp', 'pidgin-otr', 'pidgin-privacy-please',
'pidgin-plugin-pack', 'sslscan' ]:
ensure => installed,
}
# Custom: might not be available in the official repositories
if $nodo_use_custom_packages == true {
package { [ 'torchat' ]:
ensure => installed,
}
}
# Squeeze (or newer) packages
if $lsbdistcodename != 'lenny' {
package { [ 'xul-ext-monkeysphere', 'chromium-browser', 'libical-parser-perl',
'maildir-utils', 'icedtea6-plugin', ]:
ensure => installed,
}
# See http://tails.boum.org/bugs/FireGPG_may_be_unsafe/
package { 'xul-ext-firegpg':
ensure => 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'],
}
}
|