diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-22 04:41:17 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-22 04:41:17 +0000 |
commit | e80ade5e221ae37ae6bebf83def75c5fd6dd2346 (patch) | |
tree | 9b3bad362ad047a028e899beeff9ff25c479f9ff /src | |
parent | e3736d2c3ac6dc563e785defffa9e0dd66f7e853 (diff) | |
download | postgresql-e80ade5e221ae37ae6bebf83def75c5fd6dd2346.tar.gz postgresql-e80ade5e221ae37ae6bebf83def75c5fd6dd2346.zip |
Fix minor bug.
Diffstat (limited to 'src')
-rwxr-xr-x | src/bin/pg_ctl/pg_ctl.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.sh b/src/bin/pg_ctl/pg_ctl.sh index ec529bee02a..68b7d3f3dbf 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.4 1999/12/22 04:12:55 ishii Exp $ +# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.5 1999/12/22 04:41:17 ishii Exp $ # #------------------------------------------------------------------------- CMDNAME=`basename $0` @@ -49,6 +49,8 @@ do fi done +po_path=$PGPATH/postmaster + # set default shutdown signal sig="-TERM" |