summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 820c71d35638bc00439086ae79278446513f1af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class couchdb (
  $admin_pw,
  $bigcouch = false,
  $bigcouch_cookie = '' ) {
  case $::operatingsystem {
    Debian: {
      case $::lsbdistcodename {
        /lenny|squeeze|wheezy/: {
          include couchdb::debian
          if $bigcouch == true {
            include couchdb::bigcouch::debian
          }
        }
        default:         { fail "couchdb not available for ${::operatingsystem}/${::lsbdistcodename}" }
      }
    }
    RedHat: { include couchdb::redhat }
  }

}