summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/add_users.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-11-27 14:00:10 -0500
committerMicah Anderson <micah@leap.se>2013-11-27 14:48:00 -0500
commit77528b228c6d7ba095a796df4c5cc4c95eb50d9d (patch)
treebb06e1a43745cd5f694a1303de55528b7f7ab6db /puppet/modules/site_couchdb/manifests/add_users.pp
parent3accc19120285c9f518c830100d97f5bba91d3ec (diff)
pretty reformat couchdb.json and site_couchdb/manifests/init.pp, alphabetizing couchdb users
Change-Id: I88264d32e9381f826652d1631083ba371e2b1b54
Diffstat (limited to 'puppet/modules/site_couchdb/manifests/add_users.pp')
-rw-r--r--puppet/modules/site_couchdb/manifests/add_users.pp14
1 files changed, 8 insertions, 6 deletions
diff --git a/puppet/modules/site_couchdb/manifests/add_users.pp b/puppet/modules/site_couchdb/manifests/add_users.pp
index e9d3da78..b9304a97 100644
--- a/puppet/modules/site_couchdb/manifests/add_users.pp
+++ b/puppet/modules/site_couchdb/manifests/add_users.pp
@@ -1,12 +1,6 @@
class site_couchdb::add_users {
# Populate couchdb
- couchdb::add_user { $site_couchdb::couchdb_webapp_user:
- roles => '["auth"]',
- pw => $site_couchdb::couchdb_webapp_pw,
- salt => $site_couchdb::couchdb_webapp_salt,
- require => Couchdb::Query::Setup['localhost']
- }
couchdb::add_user { $site_couchdb::couchdb_soledad_user:
roles => '["auth"]',
@@ -14,4 +8,12 @@ class site_couchdb::add_users {
salt => $site_couchdb::couchdb_soledad_salt,
require => Couchdb::Query::Setup['localhost']
}
+
+ couchdb::add_user { $site_couchdb::couchdb_webapp_user:
+ roles => '["auth"]',
+ pw => $site_couchdb::couchdb_webapp_pw,
+ salt => $site_couchdb::couchdb_webapp_salt,
+ require => Couchdb::Query::Setup['localhost']
+ }
+
}