Moved database initialization to its own script

This commit is contained in:
Egon Rijpkema
2017-05-10 11:54:40 +02:00
parent 2401fb2135
commit cdfa53ec37
2 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,6 @@
#!/bin/bash
mysql -uroot -pgeheim --host 127.0.0.1 << EOF
CREATE DATABASE IF NOT EXISTS KEYSTONE;
GRANT ALL PRIVILEGES ON KEYSTONE.* TO 'keystone'@'localhost' IDENTIFIED BY 'keystone';
GRANT ALL PRIVILEGES ON KEYSTONE.* TO 'keystone'@'%' IDENTIFIED BY 'keystone';
EOF