summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: cc25f101e8d4860d3727e8aae2d34aedd8b3b415 (plain)
1
2
3
4
5
6
7
8
9
10
11
class couchdb {
  case $operatingsystem {
    Debian: {
      case $lsbdistcodename {
        /lenny|squeeze|wheezy/: { include couchdb::debian }
        default:         { fail "couchdb not available for ${operatingsystem}/${lsbdistcodename}"}
      }
    }
    RedHat: { include couchdb::redhat }
  }
}