diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-02 21:00:21 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-02 21:00:21 -0300 |
commit | ea446b2831732689a125c34169e142851e15cb43 (patch) | |
tree | 44e8e77603ac8afbd571ab2ebd14c95678c1d0a1 /manifests/utils/network.pp | |
parent | b3ba40f60cbf83633a7855bc64242c885b764a98 (diff) | |
download | puppet-nodo-ea446b2831732689a125c34169e142851e15cb43.tar.gz puppet-nodo-ea446b2831732689a125c34169e142851e15cb43.tar.bz2 |
Removing cookie-monster from wheezy
Diffstat (limited to 'manifests/utils/network.pp')
-rw-r--r-- | manifests/utils/network.pp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/manifests/utils/network.pp b/manifests/utils/network.pp index 30b282b..e88879e 100644 --- a/manifests/utils/network.pp +++ b/manifests/utils/network.pp @@ -44,8 +44,12 @@ class nodo::utils::network inherits nodo::utils::network::minimal { # 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', - 'xul-ext-requestpolicy' ]: + 'xul-ext-refcontrol', 'xul-ext-quickproxy', 'xul-ext-requestpolicy' ]: + ensure => installed, + } + + # See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686087 + package { 'xul-ext-cookie-monster': ensure => installed, } |