summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-03-04 22:50:25 -0800
committerelijah <elijah@riseup.net>2016-03-04 22:50:25 -0800
commit0ec326f27feecda1357ca7ba8b1c09ef2567a481 (patch)
tree8cf6f2b0495c13ab491ba426d7af59048b8746e7
parent3ea675a94c73b4376c6df46d56933253d0911bc9 (diff)
fix location of couchdb.admin.yml
-rw-r--r--puppet/modules/site_webapp/manifests/couchdb.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/puppet/modules/site_webapp/manifests/couchdb.pp b/puppet/modules/site_webapp/manifests/couchdb.pp
index 223604a9..71450370 100644
--- a/puppet/modules/site_webapp/manifests/couchdb.pp
+++ b/puppet/modules/site_webapp/manifests/couchdb.pp
@@ -23,15 +23,15 @@ class site_webapp::couchdb {
# from changing its user permissions every time.
'/srv/leap/webapp/config/couchdb.admin.yml':
ensure => 'link',
- target => '/srv/leap/couchdb/couchdb.admin.yml',
+ target => '/etc/leap/couchdb.admin.yml',
require => Vcsrepo['/srv/leap/webapp'];
- '/srv/leap/couchdb/couchdb.admin.yml':
+ '/etc/leap/couchdb.admin.yml':
content => template('site_webapp/couchdb.admin.yml.erb'),
owner => 'root',
group => 'root',
mode => '0600',
- require => File['/srv/leap/couchdb'];
+ require => File['/etc/leap'];
'/srv/leap/webapp/log':
ensure => directory,