summaryrefslogtreecommitdiff
path: root/manifests/web.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-07-18 13:29:38 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-07-18 13:29:38 -0300
commitbb09c79d19b9077135fc5cfd100238cfdf4e875a (patch)
tree81d41a3c42dda0d817d5f0a8e689f1ab2fc3435e /manifests/web.pp
parent4489fa3d452d6c1b9633454c76a739935f618535 (diff)
downloadpuppet-mail-bb09c79d19b9077135fc5cfd100238cfdf4e875a.tar.gz
puppet-mail-bb09c79d19b9077135fc5cfd100238cfdf4e875a.tar.bz2
Do not use $roundcube_des_key on lenny
Diffstat (limited to 'manifests/web.pp')
-rw-r--r--manifests/web.pp6
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