diff options
Diffstat (limited to 'puppet/modules')
| m--------- | puppet/modules/couchdb | 0 | ||||
| -rw-r--r-- | puppet/modules/site_couchdb/manifests/init.pp | 10 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/puppet/modules/couchdb b/puppet/modules/couchdb -Subproject d84dfddb0dfc2e5207c90380fb1f7fcf7bc7a72 +Subproject 4597cf55613aa25e77ef9943c32918fd59ff65c diff --git a/puppet/modules/site_couchdb/manifests/init.pp b/puppet/modules/site_couchdb/manifests/init.pp index f4f93828..5d77c994 100644 --- a/puppet/modules/site_couchdb/manifests/init.pp +++ b/puppet/modules/site_couchdb/manifests/init.pp @@ -65,22 +65,22 @@ class site_couchdb {    }    couchdb::create_db { 'users': -    readers => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }", +    members => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }",      require => Couchdb::Query::Setup['localhost']    }    couchdb::create_db { 'tokens': -    readers => "{ \"names\": [], \"roles\": [\"auth\"] }", +    members => "{ \"names\": [], \"roles\": [\"auth\"] }",      require => Couchdb::Query::Setup['localhost']    }    couchdb::create_db { 'sessions': -    readers => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }", +    members => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }",      require => Couchdb::Query::Setup['localhost']    }    couchdb::create_db { 'tickets': -    readers => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }", +    members => "{ \"names\": [\"$couchdb_webapp_user\"], \"roles\": [] }",      require => Couchdb::Query::Setup['localhost']    } @@ -88,7 +88,7 @@ class site_couchdb {    # via the auth group for now.    # leap_mx could use that for a start.    couchdb::create_db { 'identities': -    readers => "{ \"names\": [], \"roles\": [\"auth\"] }", +    members => "{ \"names\": [], \"roles\": [\"auth\"] }",      require => Couchdb::Query::Setup['localhost']    }  | 
