summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/master.pp
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-02-01 15:56:41 -0800
committerelijah <elijah@riseup.net>2016-02-23 09:50:58 -0800
commitda2c743faaccd26604c4c26fbb1557934688eb4a (patch)
treebda43f9cb86d736183d4db8929b455a03ca77c0b /puppet/modules/site_couchdb/manifests/master.pp
parent685642e8bfdaff16a4f02bd40b5d2aef15b68d94 (diff)
default to plain couchdb, unless otherwise specified.
# Conflicts: # puppet/modules/site_couchdb/manifests/plain.pp
Diffstat (limited to 'puppet/modules/site_couchdb/manifests/master.pp')
-rw-r--r--puppet/modules/site_couchdb/manifests/master.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/puppet/modules/site_couchdb/manifests/master.pp b/puppet/modules/site_couchdb/manifests/master.pp
deleted file mode 100644
index 49d90f2f..00000000
--- a/puppet/modules/site_couchdb/manifests/master.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-# this class sets up a single, plain couchdb node
-class site_couchdb::master {
- class { 'couchdb':
- admin_pw => $site_couchdb::couchdb_admin_pw,
- admin_salt => $site_couchdb::couchdb_admin_salt,
- chttpd_bind_address => '127.0.0.1',
- pwhash_alg => $site_couchdb::couchdb_pwhash_alg
- }
-
- include site_check_mk::agent::couchdb::master
-
- # remove bigcouch leftovers from previous installations
- include ::site_config::remove::bigcouch
-
-}