From c3bf76fcacb9576f674895a57fd3a47a2872fd8e Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 5 Mar 2013 15:56:02 +0100 Subject: setup user and restrict db access --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 63b69b1..445be1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,14 @@ services: notifications: email: false before_script: + - "mv config/couchdb.yml.admin config/couchdb.yml" - "bundle exec rake couchrest:migrate_with_proxies" - "bundle exec rake couchrest:migrate_with_proxies" # looks like this needs to run twice - 'HOST="http://localhost:5984"' + - "curl -HContent-Type:application/json -vXPUT $HOST/_users/org.couchdb.user:me --data-binary '{\"_id\": \"org.couchdb.user:me\",\"name\": \"me\",\"roles\": [],\"type\": \"user\",\"password\": \"pwd\"}'" - "curl -X PUT $HOST/sessions" + - "curl -vX PUT $HOST/sessions/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'" + - "curl -vX PUT $HOST/users/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'" + - "curl -vX PUT $HOST/tickets/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'" - "curl -X PUT $HOST/_config/admins/anna -d '\"secret\"'" + - "mv config/couchdb.yml.user config/couchdb.yml" -- cgit v1.2.3