forked from stove/dataset
12 lines
641 B
SQL
12 lines
641 B
SQL
%set %%new_accounts = [('rougail_test', %%get_password(server_name=%%domain_name_eth0, username='rougail_test', description="remote", type="cleartext", hide=%%hide_secret, temporary=True))]
|
|
%for %%server in %%accounts.remotes
|
|
%set %%name = %%normalize_family(%%server)
|
|
%set %%password = %%accounts["remote_" + %%name]["password_" + %%name]
|
|
%%new_accounts.append((%%name, %%password))%slurp
|
|
%end for
|
|
%for %%name, %%password in %%new_accounts
|
|
CREATE DATABASE "%%name";
|
|
CREATE ROLE "%%name" WITH LOGIN ENCRYPTED PASSWORD '%%password';
|
|
ALTER USER "%%name" PASSWORD '%%password';
|
|
GRANT ALL PRIVILEGES ON DATABASE "%%name" TO "%%name";
|
|
%end for
|