diff options
author | varac <varacanero@zeromail.org> | 2013-04-24 18:23:41 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-04-24 18:23:41 +0200 |
commit | 2bd18fcad2e1446388948ed0b98232d93564b8ad (patch) | |
tree | cabf593654ed1a59461f76afd383725661e1a65c /puppet | |
parent | ae7b1d3b68c2e2e295967cb638413627bfbe0734 (diff) |
take out plain couchdb setup, always deploy bigcouch (Feature #2176)
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/manifests/site.pp | 4 | ||||
-rw-r--r-- | puppet/modules/site_couchdb/manifests/init.pp | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index f1b02aca..2d41d45f 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -24,9 +24,7 @@ if 'openvpn' in $services { } if 'couchdb' in $services { - class {'site_couchdb': - bigcouch => true - } + include site_couchdb } if 'webapp' in $services { diff --git a/puppet/modules/site_couchdb/manifests/init.pp b/puppet/modules/site_couchdb/manifests/init.pp index 5e26b837..9f4824b4 100644 --- a/puppet/modules/site_couchdb/manifests/init.pp +++ b/puppet/modules/site_couchdb/manifests/init.pp @@ -1,4 +1,4 @@ -class site_couchdb ( $bigcouch = false ) { +class site_couchdb { tag 'leap_service' $x509 = hiera('x509') @@ -27,7 +27,7 @@ class site_couchdb ( $bigcouch = false ) { $ednp_port = $bigcouch_config['ednp_port'] class { 'couchdb': - bigcouch => $bigcouch, + bigcouch => true, admin_pw => $couchdb_admin_pw, admin_salt => $couchdb_admin_salt, bigcouch_cookie => $bigcouch_cookie, |