summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
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']
+ }
}