summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-09 21:16:49 +0100
committervarac <varacanero@zeromail.org>2013-03-09 21:16:49 +0100
commit7e899eaeace19e1248db6ff2a1e70bb39af5848b (patch)
tree70cbd9d6f0b2cfe00f024f22c86498408fdd0974 /manifests/debian.pp
parent4bd248cfc6e45710e3ecc4725e3eb5641cf679b4 (diff)
couchdb init file moved from site_couchdb to couchdb module
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r--manifests/debian.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index 14678e2..2a7417e 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -3,5 +3,12 @@ class couchdb::debian inherits couchdb::base {
package {'libjs-jquery':
ensure => present,
}
-
+ file {'/etc/init.d/couchdb':
+ source => [ 'puppet:///modules/site_couchdb/Debian/couchdb',
+ 'puppet:///modules/couchdb/Debian/couchdb' ],
+ mode => '0755',
+ owner => 'root',
+ group => 'root',
+ require => Package['couchdb']
+ }
}