dataset/seed/applicationservice/2022.03.08/mariadb-server/templates/mariadb.sql
2022-03-08 19:42:28 +01:00

8 lines
394 B
SQL

%for %%server in %%accounts.remotes
%set %%name = %%normalize_family(%%server)
%set %%password = %%accounts['remote_' + %%name]['password_' + %%name]
CREATE USER IF NOT EXISTS '%%name'@'%%server' IDENTIFIED BY '%%password';
CREATE DATABASE IF NOT EXISTS %%name CHARACTER SET utf8;
GRANT ALL PRIVILEGES ON %%name.* TO '%%name'@'%%server' IDENTIFIED BY '%%password';
FLUSH PRIVILEGES;
%end for