1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Pass -D option to pg_ctl because export PGDATA won't be preserved across

'su -l'.

Reported by <VASQUEZ_JASON@LILLY.COM>.
This commit is contained in:
Peter Eisentraut
2001-04-19 19:17:44 +00:00
parent 47324d7689
commit 031e1afa23
2 changed files with 10 additions and 14 deletions

View File

@ -20,7 +20,7 @@
# Original author: Ryan Kirkpatrick <pgsql@rkirkpat.net>
# $Header: /cvsroot/pgsql/contrib/start-scripts/linux,v 1.1 2001/02/08 19:53:33 petere Exp $
# $Header: /cvsroot/pgsql/contrib/start-scripts/linux,v 1.2 2001/04/19 19:17:44 petere Exp $
## EDIT FROM HERE
@ -38,8 +38,6 @@ PGLOG="$PGDATA/serverlog"
## STOP EDITING HERE
export PGDATA
# Check for echo -n vs echo \c
if echo '\c' | grep -s c >/dev/null 2>&1 ; then
ECHO_N="echo -n"
@ -64,21 +62,21 @@ test -f $DAEMON || exit 0
case $1 in
start)
$ECHO_N "Starting PostgreSQL: "$ECHO_C
su - $PGUSER -c "$DAEMON start -s -l $PGLOG"
su - $PGUSER -c "$DAEMON start -D '$PGDATA' -s -l $PGLOG"
echo "ok"
;;
stop)
echo -n "Stopping PostgreSQL: "
su - $PGUSER -c "$DAEMON stop -s -m fast"
su - $PGUSER -c "$DAEMON stop -D '$PGDATA' -s -m fast"
echo "ok"
;;
restart)
echo -n "Restarting PostgreSQL: "
su - $PGUSER -c "$DAEMON restart -s -m fast"
su - $PGUSER -c "$DAEMON restart -D '$PGDATA' -s -m fast"
echo "ok"
;;
status)
su - $PGUSER -c "$DAEMON status"
su - $PGUSER -c "$DAEMON status -D '$PGDATA'"
;;
*)
# Print help