l 5 mk_sql_pair: fix indent

This commit is contained in:
lassulus 2016-04-27 12:52:16 +02:00
parent 1cc4fb0218
commit 4b389a3569

View File

@ -12,8 +12,8 @@ pkgs.writeScriptBin "mk_sql_pair" ''
fi
cat <<EOF
create database $name;
create user $name;
grant all on $name.* to $name@'localhost' identified by '$password';
create database $name;
create user $name;
grant all on $name.* to $name@'localhost' identified by '$password';
EOF
''