summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-11-03 19:28:42 +0100
committervarac <varacanero@zeromail.org>2015-11-03 19:28:42 +0100
commitd4e0579ec88e999d42c9f4ffd32489396dce63c4 (patch)
tree038d8336d0db0b0db9422cb6ff51d2bc5f5c6203
parentcdde1e172b3ed2c6c1f203341e75bcef5c3c3491 (diff)
[feat] Support Debian Jessie
Add a documentation snippet to the README how to install couchdb from debian unstable.
-rw-r--r--README.md8
-rw-r--r--manifests/init.pp3
2 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index f47c67c..096221a 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,14 @@ For more information about couchdb see http://couchdb.apache.org/
- ruby module from the shared-modules group
+# Couchdb debian packages
+
+## Jessie
+
+There are no couchdb packages for jessie, so the only way is to
+to configure apt to install couchdb from unstable by adding a
+sources list file to `/etc/apt/sources.list.d`.
+
## Example usage
This will setup couchdb:
diff --git a/manifests/init.pp b/manifests/init.pp
index 7ff9ed3..52e9c4f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,3 +1,4 @@
+# initial couchdb class
class couchdb (
$admin_pw,
$admin_salt = '',
@@ -14,7 +15,7 @@ class couchdb (
case $::operatingsystem {
Debian: {
case $::lsbdistcodename {
- /lenny|squeeze|wheezy/: {
+ /lenny|squeeze|wheezy|jessie/: {
include couchdb::debian
if $bigcouch == true {
include couchdb::bigcouch::debian