diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-07-18 13:29:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-07-18 13:29:38 -0300 |
commit | bb09c79d19b9077135fc5cfd100238cfdf4e875a (patch) | |
tree | 81d41a3c42dda0d817d5f0a8e689f1ab2fc3435e /manifests | |
parent | 4489fa3d452d6c1b9633454c76a739935f618535 (diff) | |
download | puppet-mail-bb09c79d19b9077135fc5cfd100238cfdf4e875a.tar.gz puppet-mail-bb09c79d19b9077135fc5cfd100238cfdf4e875a.tar.bz2 |
Do not use $roundcube_des_key on lenny
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/web.pp | 6 |
1 files changed, 4 insertions, 2 deletions
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 |