From: Silvio Rhatto Date: Mon, 18 Jul 2011 16:29:38 +0000 (-0300) Subject: Do not use $roundcube_des_key on lenny X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=bb09c79d19b9077135fc5cfd100238cfdf4e875a;p=puppet-mail.git Do not use $roundcube_des_key on lenny --- diff --git a/manifests/web.pp b/manifests/web.pp index 4f9e2a1..be84a25 100644 --- a/manifests/web.pp +++ b/manifests/web.pp @@ -1,7 +1,9 @@ class mail::web::virtual inherits websites::setup { # Class configuration - case $roundcube_des_key { - '': { fail("You need to define \$roundcube_des_key host config") } + if $lsbdistcodename != 'lenny' { + case $roundcube_des_key { + '': { fail("You need to define \$roundcube_des_key host config") } + } } include php::imap