Commit f9b29b80 authored by Bruce Momjian's avatar Bruce Momjian

Make non-wait pg_ctl start/stop message more accurate.

parent a620a760
......@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.sh,v 1.37 2003/11/29 19:52:04 pgsql Exp $
# $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.sh,v 1.38 2004/01/10 02:55:14 momjian Exp $
#
#-------------------------------------------------------------------------
......@@ -299,7 +299,11 @@ if [ "$op" = "stop" -o "$op" = "restart" -o "$op" = "reload" ];then
if [ "$op" = "reload" ];then
$silence_echo echo "postmaster successfully signaled"
else
if [ "$wait" = yes ];then
$silence_echo echo "postmaster successfully shut down"
else
$silence_echo echo "postmaster shutting down"
fi
fi
else # ! -f $PIDFILE
......@@ -399,8 +403,10 @@ if [ "$op" = "start" -o "$op" = "restart" ];then
fi
done
$silence_echo echo "done"
fi
$silence_echo echo "postmaster successfully started"
else
$silence_echo echo "postmaster starting"
fi
fi # start or restart
exit 0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment