summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: a189340e771686b4f006112f2abc340bcc8a8aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class couchdb ( $admin_pw = '', $bigcouch = false,  $bigcouch_cookie = '', $ednp = '9001' )
{

  if $admin_pw = '' {
    err('Must set admin password by passing a value to the $admin_pw parameter')
  }

  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 }
  }

  package { 'curl':
    ensure => installed,
  }
}