summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,