%set %%new_accounts = [('_gateway', '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((%%str(%%server), %%name, %%password))
%end for
%for %%server, %%name, %%password in %%new_accounts
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';
%end for
FLUSH PRIVILEGES;