8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-02-04 06:24:22 +00:00

Last test fix before da gousket

This commit is contained in:
Maël Kervella 2018-06-25 22:34:09 +00:00
parent 37268a0fd1
commit e06e60127e

View file

@ -107,8 +107,8 @@ install_database() {
echo "Installing MySQL client: Done"
mysql_command="CREATE DATABASE $db_name collate='utf8_general_ci';
CREATE USER '$username'@'127.0.0.1' IDENTIFIED BY '$password';
GRANT ALL PRIVILEGES ON $db_name.* TO '$username'@'127.0.0.1';
CREATE USER '$username' IDENTIFIED BY '$password';
GRANT ALL PRIVILEGES ON $db_name.* TO '$username';
FLUSH PRIVILEGES;"
if [ "$local_setup" == 1 ]; then