summaryrefslogtreecommitdiff
path: root/manifests/bigcouch/debian.pp
blob: 8af39933dd89154554b572e2bda4a1d2d983ec31 (plain)
1
2
3
4
5
6
7
8
9
10
11
class couchdb::bigcouch::debian inherits couchdb::debian {

  File ['/etc/init.d/couchdb'] {
    ensure => absent
  }

  file {'/etc/init.d/bigcouch':
    ensure => link,
    target => '/usr/bin/sv'
  }
}