summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-11 15:14:11 +0100
committervarac <varacanero@zeromail.org>2013-03-11 15:14:11 +0100
commit8133f60f52492df6d936eb3b9d33275c9f048708 (patch)
tree2cd9bafb327abee123a3cff97adce88891103660 /manifests/init.pp
parent659e3604a310029000c9db8774c7caba70a3e291 (diff)
include bigcouch::debian in init.pp instead of bigcouch.pp
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 25a0cde..820c71d 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -5,7 +5,12 @@ class couchdb (
case $::operatingsystem {
Debian: {
case $::lsbdistcodename {
- /lenny|squeeze|wheezy/: { include couchdb::debian }
+ /lenny|squeeze|wheezy/: {
+ include couchdb::debian
+ if $bigcouch == true {
+ include couchdb::bigcouch::debian
+ }
+ }
default: { fail "couchdb not available for ${::operatingsystem}/${::lsbdistcodename}" }
}
}