projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dd0673
)
The old init file won't run under bash on my box.
author
Bruce Momjian
Tue, 16 May 2000 03:18:43 +0000
(
03:18
+0000)
committer
Bruce Momjian
Tue, 16 May 2000 03:18:43 +0000
(
03:18
+0000)
Joseph Shraibman
contrib/linux/postgres.init.sh
patch
|
blob
|
blame
|
history
diff --git
a/contrib/linux/postgres.init.sh
b/contrib/linux/postgres.init.sh
index ed538953d45138cce68ad081ecda426245d95319..556671d4878e74a0f732a114c1809e2ef629b193 100755
(executable)
--- a/
contrib/linux/postgres.init.sh
+++ b/
contrib/linux/postgres.init.sh
@@
-124,7
+124,7
@@
case "$1" in
if [ ${USE_SYSLOG} = "yes" ]; then
su - ${PGACCOUNT} -c "(${POSTMASTER} ${PGOPTS} 2>&1 | logger -p ${FACILITY}.notice) &" > /dev/null 2>&1 &
else
- su - ${PGACCOUNT} -c "${POSTMASTER} ${PGOPTS}
2>>&1 ${PGLOGFILE}
&" > /dev/null 2>&1 &
+ su - ${PGACCOUNT} -c "${POSTMASTER} ${PGOPTS}
>> ${PGLOGFILE} 2>&1
&" > /dev/null 2>&1 &
fi
sleep 5
pid=`pidof ${POSTMASTER}`