summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorMathieu Bornoz <mathieu.bornoz@camptocamp.com>2010-11-12 16:04:49 +0100
committerMathieu Bornoz <mathieu.bornoz@camptocamp.com>2010-11-12 16:06:42 +0100
commitffab59de517086a3dc6372e5ec01fc789539030e (patch)
tree0a73e4962221f11178b95516f100d3187047c166 /manifests/init.pp
initial import of couchdb module
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..5100da0
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,12 @@
+import "classes/*.pp"
+
+class couchdb {
+ case $operatingsystem {
+ Debian: {
+ case $lsbdistcodename {
+ lenny : { include couchdb::debian }
+ default: { fail "couchdb not available for ${operatingsystem}/${lsbdistcodename}"}
+ }
+ }
+ }
+}