mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 14:47:29 -04:00
Back-port shell script syntax fix needed for some BSD machines.
Per buildfarm results from spoonbill.
This commit is contained in:
parent
14f52896b8
commit
49f1f24450
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.53.4.2 2005/11/01 15:32:52 adunstan Exp $
|
||||
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.53.4.3 2006/06/19 14:25:01 tgl Exp $
|
||||
|
||||
me=`basename $0`
|
||||
: ${TMPDIR=/tmp}
|
||||
|
|
@ -436,7 +436,7 @@ then
|
|||
if [ "$unix_sockets" = no ]; then
|
||||
postmaster_options="$postmaster_options -c listen_addresses=$hostname"
|
||||
else
|
||||
postmaster_options="$postmaster_options -c listen_addresses=''"
|
||||
postmaster_options="$postmaster_options -c listen_addresses="
|
||||
fi
|
||||
"$bindir/postmaster" -D "$PGDATA" -F $postmaster_options >"$LOGDIR/postmaster.log" 2>&1 &
|
||||
postmaster_pid=$!
|
||||
|
|
|
|||
Loading…
Reference in a new issue