summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/configure.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-12 14:33:24 +0100
committervarac <varacanero@zeromail.org>2013-03-12 14:33:24 +0100
commit3633f137c99a4fcb647cb098ee01704ff3f7554c (patch)
tree7e7a2334149f12f42725b4d9a549034a18142b8b /puppet/modules/site_couchdb/manifests/configure.pp
parent0ffc583488ee044be30ea5bf7fae751505419a9b (diff)
parent01941d905a71a2088ec080703f4e5430dec7a2ec (diff)
Merge branch 'feature/bigcouch' into develop
Conflicts: provider_base/services/couchdb.json
Diffstat (limited to 'puppet/modules/site_couchdb/manifests/configure.pp')
-rw-r--r--puppet/modules/site_couchdb/manifests/configure.pp27
1 files changed, 0 insertions, 27 deletions
diff --git a/puppet/modules/site_couchdb/manifests/configure.pp b/puppet/modules/site_couchdb/manifests/configure.pp
deleted file mode 100644
index 333511b5..00000000
--- a/puppet/modules/site_couchdb/manifests/configure.pp
+++ /dev/null
@@ -1,27 +0,0 @@
-class site_couchdb::configure {
-
- file { '/etc/init.d/couchdb':
- source => 'puppet:///modules/site_couchdb/couchdb',
- mode => '0755',
- owner => 'root',
- group => 'root',
- }
-
- file { '/etc/couchdb/local.d/admin.ini':
- content => "[admins]
-admin = $site_couchdb::couchdb_admin_pw
-",
- mode => '0600',
- owner => 'couchdb',
- group => 'couchdb',
- notify => Service[couchdb]
- }
-
-
- exec { '/etc/init.d/couchdb restart; sleep 6':
- path => ['/bin', '/usr/bin',],
- subscribe => File['/etc/couchdb/local.d/admin.ini',
- '/etc/couchdb/local.ini'],
- refreshonly => true
- }
-}