blob: 1d2f1580a5b6f7d70de9069bafa38ea1387257f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
mysql_run(){
MYSQL_PWD="$boxconf_password" mysql \
--batch \
--ssl-verify-server-cert \
--user="$boxconf_username" \
"$@"
}
mysql_create_user(){
# $1 = mysql_host, $2 = username $3 = via
cat <<EOF | mysql_run --host="${1}"
CREATE USER IF NOT EXISTS '${2}' IDENTIFIED VIA ${3};
EOF
}
mysql_create_database(){
# $1 = mysql_host, $2 = dbname, $3 = owner $4 = options
cat <<EOF | mysql_run --host="${1}"
CREATE DATABASE IF NOT EXISTS ${2} ${4:-};
GRANT ALL PRIVILEGES ON ${2}.* TO '${3}';
FLUSH PRIVILEGES;
EOF
}
|