diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-09-27 12:10:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-09-27 12:10:03 -0300 |
commit | 3848bb004f97b9ec99002f18b1d4c32fda862cbb (patch) | |
tree | 39a9a885e2d8b52392b60e7bf8e7eba07ba0db61 /manifests/subsystems/utils/network.pp | |
parent | a713ea5174b4f187309b57100446c7ef321b189d (diff) | |
download | puppet-nodo-3848bb004f97b9ec99002f18b1d4c32fda862cbb.tar.gz puppet-nodo-3848bb004f97b9ec99002f18b1d4c32fda862cbb.tar.bz2 |
Adding more multimedia and network packages
Diffstat (limited to 'manifests/subsystems/utils/network.pp')
-rw-r--r-- | manifests/subsystems/utils/network.pp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp index 6cd8c9d..b9b8870 100644 --- a/manifests/subsystems/utils/network.pp +++ b/manifests/subsystems/utils/network.pp @@ -50,7 +50,8 @@ class utils::network inherits utils::network::minimal { # Squeeze (or newer) packages if $lsbdistcodename != 'lenny' { package { [ 'xul-ext-monkeysphere', 'chromium-browser', 'libical-parser-perl', - 'maildir-utils', 'icedtea6-plugin', ]: + 'maildir-utils', 'icedtea6-plugin', 'xul-ext-adblock-plus', + 'xul-ext-noscript', 'xul-ext-firebug' ]: ensure => installed, } @@ -60,11 +61,19 @@ class utils::network inherits utils::network::minimal { } # Not using right now - package { [ 'xul-ext-torbutton', 'vidalia' ]: + package { [ 'xul-ext-torbutton', 'vidalia', 'xul-ext-perspectives', 'xul-ext-greasemonkey' ]: ensure => absent, } } + # Wheezy (or newer) packages + if $lsbdistcodename != 'squeeze' { + package { [ 'xul-ext-pentadactyl', 'xul-ext-https-everywhere', 'xul-ext-certificatepatrol', + 'xul-ext-cookie-monster', 'xul-ext-refcontrol', 'xul-ext-quickproxy' ]: + ensure => installed, + } + } + # Lenny only package { [ 'mozilla-firefox-adblock' ]: ensure => $lsbdistcodename ? { |