summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 9a3146ed3378878081a5f43fdb155ff10eab9965 (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
27
28
29
30
31
# initial couchdb class
class couchdb (
  $admin_pw,
  $admin_salt = '',
  $bigcouch = false,
  $bigcouch_cookie = '',
  $ednp_port = '9001',
  $chttpd_bind_address = '0.0.0.0',
  $pwhash_alg = 'pbkdf2' )
{

  # stdlib is needed i.e. for ensure_packages()
  include ::stdlib

  case $::operatingsystem {
    'Debian': {
      case $::lsbdistcodename {
        /wheezy|jessie|stretch/: {
          include couchdb::debian
          if $bigcouch == true {
            include couchdb::bigcouch::debian
          }
        }
        default:         { fail "couchdb not available for ${::operatingsystem}/${::lsbdistcodename}" }
      }
    }
    RedHat: { include couchdb::redhat }
  }

  ensure_packages('curl')
}