Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stepup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions stepup/dbschema/createdbs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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'@'%';
Loading