diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-06 08:49:00 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-06 08:49:00 +0000 |
commit | 8ad4f99b73ba902c6a510b9724b94ea7b7094cf3 (patch) | |
tree | 9cf12c9990449c8b925f2b1b329775d250990c88 /src | |
parent | 8231a7ab2052810ed92914c81e198337a94e0e4f (diff) | |
download | postgresql-8ad4f99b73ba902c6a510b9724b94ea7b7094cf3.tar.gz postgresql-8ad4f99b73ba902c6a510b9724b94ea7b7094cf3.zip |
Fix the case of -o given
Diffstat (limited to 'src')
-rwxr-xr-x | src/bin/pg_ctl/pg_ctl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.sh b/src/bin/pg_ctl/pg_ctl.sh index c97867810db..aac81fc58cb 100755 --- a/src/bin/pg_ctl/pg_ctl.sh +++ b/src/bin/pg_ctl/pg_ctl.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.2 1999/12/06 08:35:34 ishii Exp $ +# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.3 1999/12/06 08:49:00 ishii Exp $ # #------------------------------------------------------------------------- CMDNAME=`basename $0` @@ -165,7 +165,7 @@ if [ $op = "start" -o $op = "restart" ];then eval `cat $POSTOPTSFILE` & fi else - $po_path $POSTOPTS & + eval "$po_path $POSTOPTS "& fi if [ -f $PIDFILE ];then |