summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 535551a88949ab4680e99c79d5529b66ae7d5586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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']
  }
}