1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Make whitespace consistent inside some script files

I don't know what the global standard might be, but at least adjacent
code should use the same whitespace.
This commit is contained in:
Peter Eisentraut
2017-01-12 12:00:00 -05:00
parent 76568d3786
commit da0dbea9c3
2 changed files with 7 additions and 7 deletions

View File

@ -108,10 +108,10 @@ case $1 in
echo "ok"
;;
reload)
echo -n "Reload PostgreSQL: "
su - $PGUSER -c "$PGCTL reload -D '$PGDATA' -s"
echo "ok"
;;
echo -n "Reload PostgreSQL: "
su - $PGUSER -c "$PGCTL reload -D '$PGDATA' -s"
echo "ok"
;;
status)
su - $PGUSER -c "$PGCTL status -D '$PGDATA'"
;;