diff options
author | varac <varacanero@zeromail.org> | 2013-03-10 16:10:39 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-03-10 16:10:39 +0100 |
commit | 46f1b83431cff1c30e7cda9bc99505d35f37f309 (patch) | |
tree | a180878fddae46e80b58a43b3661daeb268ba870 /puppet/modules/site_couchdb/manifests | |
parent | 0ae8194ef3a3f8065ff455b4daddc0d62c105ace (diff) |
site_couchdb::configure moved to couchdb
Diffstat (limited to 'puppet/modules/site_couchdb/manifests')
-rw-r--r-- | puppet/modules/site_couchdb/manifests/configure.pp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/puppet/modules/site_couchdb/manifests/configure.pp b/puppet/modules/site_couchdb/manifests/configure.pp deleted file mode 100644 index c921ad6a..00000000 --- a/puppet/modules/site_couchdb/manifests/configure.pp +++ /dev/null @@ -1,21 +0,0 @@ -class site_couchdb::configure { - - - 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 - } -} |