summaryrefslogtreecommitdiff
path: root/manifests/create_db.pp
blob: 9ba921c5c5c83cfe21621e9fe462b14e424b4b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
define couchdb::create_db (
  $host='127.0.0.1:5984',
  $admins="{\"names\": [], \"roles\": [] }",
  $readers="{\"names\": [], \"roles\": [] }" )
{

  couchdb::query { "create_db_${name}":
    cmd    => 'PUT',
    host   => $host,
    path   => $name,
    unless => "/usr/bin/curl -s -f --netrc-file /etc/couchdb/couchdb.netrc ${host}/${name}"
  }

  couchdb::query { "${name}_security":
    cmd     => 'PUT',
    host    => $host,
    path    => "${name}/_security",
    data    => "{ \"admins\": ${admins}, \"readers\": ${readers} }",
    require => Couchdb::Query["create_db_${name}"]
  }
}