From 73aecb7f126109efd7f741279c899c17a30f1a7a Mon Sep 17 00:00:00 2001 From: Stefan Oderbolz Date: Wed, 11 Nov 2015 19:59:25 +0100 Subject: [PATCH] Add datastore_default user due to PR #2234 from ckan --- bin/travis-build.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/travis-build.bash b/bin/travis-build.bash index aae36f3..09e97e5 100644 --- a/bin/travis-build.bash +++ b/bin/travis-build.bash @@ -33,7 +33,9 @@ sudo service jetty restart echo "Creating the PostgreSQL user and database..." sudo -u postgres psql -c "CREATE USER ckan_default WITH PASSWORD 'pass';" +sudo -u postgres psql -c "CREATE USER datastore_default WITH PASSWORD 'pass';" sudo -u postgres psql -c 'CREATE DATABASE ckan_test WITH OWNER ckan_default;' +sudo -u postgres psql -c 'CREATE DATABASE datastore_test WITH OWNER ckan_default;' echo "Initialising the database..." cd ckan