Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b2ff7d0

Browse files
committed
Change format of postmaster.opts.default.
Executable file name (postmaster) no more included in the file.
1 parent 2605ceb commit b2ff7d0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/bin/pg_ctl/pg_ctl.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.6 2000/01/09 12:06:52 ishii Exp $
11+
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.7 2000/01/23 08:20:24 ishii Exp $
1212
#
1313
#-------------------------------------------------------------------------
1414
CMDNAME=`basename $0`
@@ -214,9 +214,9 @@ if [ $op = "start" -o $op = "restart" ];then
214214
# no -o given
215215
if [ -z "$POSTOPTS" ];then
216216
if [ $op = "start" ];then
217-
# if we are in start mode, then look postmaster.opts.default
217+
# if we are in start mode, then look for postmaster.opts.default
218218
if [ -f $DEFPOSTOPTS ];then
219-
eval `cat $DEFPOSTOPTS` &
219+
eval "$po_path `cat $DEFPOSTOPTS`" &
220220
else
221221
$ECHO "$CMDNAME: Can't find $DEFPOSTOPTS"
222222
exit 1
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
postmaster
21
-S

0 commit comments

Comments
 (0)