Merge branch '2.3' into 2.4

This commit is contained in:
Timofey Turenko
2020-11-19 09:42:36 +02:00
5 changed files with 49 additions and 92 deletions

View File

@ -7,6 +7,8 @@
mysql --force $1 <<EOF >& /dev/null
CREATE DATABASE IF NOT EXISTS test;
DROP USER IF EXISTS '$node_user'@'%';
CREATE USER '$node_user'@'%' IDENTIFIED BY '$node_password';
GRANT ALL PRIVILEGES ON *.* TO '$node_user'@'%' $require_ssl WITH GRANT OPTION;