diff --git a/stepup/README.md b/stepup/README.md index 1d8a9f7..5346734 100644 --- a/stepup/README.md +++ b/stepup/README.md @@ -44,7 +44,7 @@ or use the included script: Initialise (bootstrap) the middleware, gateway and webauthn database schema's and push the configuration to the middleware. This is done by running the following script: ``` -./bootstrap.sh +./bootstrap-database.sh ``` Then, bootstrap the SRAA. For this, you will need to have a Yubikey. diff --git a/stepup/dbschema/createdbs.sql b/stepup/dbschema/createdbs.sql index c747441..965a7e0 100755 --- a/stepup/dbschema/createdbs.sql +++ b/stepup/dbschema/createdbs.sql @@ -35,6 +35,6 @@ GRANT ALL PRIVILEGES ON middleware.* TO 'mw_deploy_user'@'%' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON gateway_test.* TO 'mw_deploy_user'@'%' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON middleware_test.* TO 'mw_deploy_user'@'%' WITH GRANT OPTION; -CREATE USER IF NOT EXISTS 'gw_deploy_user'@'%' IDENTIFIED BY 'gw_deploy_secret'; -GRANT ALL PRIVILEGES ON gateway.* TO 'gw_deploy_user'@'%'; -GRANT ALL PRIVILEGES ON gateway_test.* TO 'gw_deploy_user'@'%'; +CREATE USER IF NOT EXISTS 'gw_smoketest_schema_manager'@'%' IDENTIFIED BY 'gw_smoketest_schema_manager_secret'; +GRANT ALL PRIVILEGES ON gateway.* TO 'gw_smoketest_schema_manager'@'%'; +GRANT ALL PRIVILEGES ON gateway_test.* TO 'gw_smoketest_schema_manager'@'%';