summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/setup.pp
diff options
context:
space:
mode:
authorElijah Sparrow <elijah@riseup.net>2014-06-23 14:27:31 -0700
committerElijah Sparrow <elijah@riseup.net>2014-06-23 14:27:31 -0700
commitffe760c06b3189bc5d67653e952fd44fdb0f08cf (patch)
treee91ffa4168f5b8e797ffc56d5c0fd997ec738959 /puppet/modules/site_couchdb/manifests/setup.pp
parent9b55b9a0feac9ec778db74f250d4bc2bb5831e08 (diff)
parent04d1369ea78c404907dea4aca758e08efe3a9cdd (diff)
Merge pull request #4 from azul/feature/couch
permissions for replication
Diffstat (limited to 'puppet/modules/site_couchdb/manifests/setup.pp')
-rw-r--r--puppet/modules/site_couchdb/manifests/setup.pp11
1 files changed, 9 insertions, 2 deletions
diff --git a/puppet/modules/site_couchdb/manifests/setup.pp b/puppet/modules/site_couchdb/manifests/setup.pp
index e398356b..69bd1c6a 100644
--- a/puppet/modules/site_couchdb/manifests/setup.pp
+++ b/puppet/modules/site_couchdb/manifests/setup.pp
@@ -10,11 +10,18 @@ class site_couchdb::setup {
ensure => absent
}
- # /etc/couchdb/couchdb.netrc is deployed by couchdb::query::setup
+ $user = $site_couchdb::couchdb_admin_user
+
+ # /etc/couchdb/couchdb-admin.netrc is deployed by couchdb::query::setup
+ # we symlink to couchdb.netrc for puppet commands.
# we symlink this to /root/.netrc for couchdb_scripts (eg. backup)
# and makes life easier for the admin (i.e. using curl/wget without
# passing credentials)
file {
+ '/etc/couchdb/couchdb.netrc':
+ ensure => link,
+ target => "/etc/couchdb/couchdb-${user}.netrc";
+
'/root/.netrc':
ensure => link,
target => '/etc/couchdb/couchdb.netrc';
@@ -24,7 +31,7 @@ class site_couchdb::setup {
}
couchdb::query::setup { 'localhost':
- user => $site_couchdb::couchdb_admin_user,
+ user => $user,
pw => $site_couchdb::couchdb_admin_pw,
}