diff options
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, |