diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 10:14:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 10:14:24 -0300 |
commit | 27ed49eafec19568d5a05aa068968b5f6c251a77 (patch) | |
tree | 588f1489dcd69b6cef3beec8f74f189310acc298 /manifests | |
parent | c21255269a9b5c3ef72db0084ec21becfd1d0b5b (diff) | |
download | puppet-mail-27ed49eafec19568d5a05aa068968b5f6c251a77.tar.gz puppet-mail-27ed49eafec19568d5a05aa068968b5f6c251a77.tar.bz2 |
Not using roundcube-plugins-extra
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/virtual/packages.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/virtual/packages.pp b/manifests/virtual/packages.pp index 1297731..4945762 100644 --- a/manifests/virtual/packages.pp +++ b/manifests/virtual/packages.pp @@ -20,11 +20,16 @@ class mail::virtual::packages { # Squeeze (or newer) packages if $::lsbdistcodename != 'lenny' { - package { [ 'roundcube', 'roundcube-sqlite3', 'roundcube-plugins', 'roundcube-plugins-extra', 'roundcube-mysql' ]: + package { [ 'roundcube', 'roundcube-sqlite3', 'roundcube-plugins', 'roundcube-mysql' ]: ensure => latest, } } + # Not in use right now + package { 'roundcube-plugins-extra': + ensure => absent, + } + # We'll force SSL through the proxy package { 'squirrelmail-secure-login': ensure => absent, |