fix quotes

This commit is contained in:
Praveen Arimbrathodiyil 2016-01-29 22:24:20 +05:30
parent 945b5ce7f9
commit db893ad00e

2
debian/grantpriv.sh vendored
View file

@ -20,6 +20,6 @@ su postgres -c "psql -c \"ALTER DATABASE $dbname OWNER to $user;\"" || {
}
echo "Grant all privileges to $user user..."
su postgres -c 'psql -c "GRANT ALL PRIVILEGES ON DATABASE template1 to $user;"' || {
su postgres -c "psql -c \"GRANT ALL PRIVILEGES ON DATABASE template1 to $user;\"" || {
exit 1
}