blob: b83b227a551007d606605ca61d70c1b5745df73e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# installs initscript and dependent packages on debian
class couchdb::debian inherits couchdb::base {
ensure_packages('libjs-jquery')
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']
}
}
|