[__postgres_role] Revert parts of a34060d703

Broken syntax fixed
This commit is contained in:
Nico Schottelius 2018-12-05 13:14:19 +01:00
parent a85f2ebdb6
commit c85dfbdb10
1 changed files with 2 additions and 2 deletions

View File

@ -55,9 +55,9 @@ case "$state_should" in
[ -n "$password" ] && password="PASSWORD '$password'"
cmd="CREATE ROLE $name WITH $password $booleans"
echo "su - '$postgres_user' -c \"psql postgres -c '$cmd'\""
echo "su - '$postgres_user' -c \"psql -c \\\"$cmd\\\"\""
;;
absent)
echo "su - '$postgres_user' -c \"dropuser '$name'\""
echo "su - '$postgres_user' -c \"dropuser \\\"$name\\\"\""
;;
esac