projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4580a4b
)
Don't try to pass -I switch to postmaster in contrib/start-scripts/linux.
author
Tom Lane
Fri, 19 Apr 2013 17:28:45 +0000
(13:28 -0400)
committer
Tom Lane
Fri, 19 Apr 2013 17:28:45 +0000
(13:28 -0400)
Undo thinko in commit
87306184580c9c49717b00d48a2f9e717f21e0a8
.
Per bug #8098 from Catherine Devlin.
contrib/start-scripts/linux
patch
|
blob
|
blame
|
history
diff --git
a/contrib/start-scripts/linux
b/contrib/start-scripts/linux
index 03c6e503bc609d01b59cf9d2aeaa2658f48c703b..2d36a560fa539ac60f77d1668f574115d1175eec 100644
(file)
--- a/
contrib/start-scripts/linux
+++ b/
contrib/start-scripts/linux
@@
-84,7
+84,7
@@
case $1 in
echo -n "Starting PostgreSQL: "
test x"$OOM_SCORE_ADJ" != x && echo "$OOM_SCORE_ADJ" > /proc/self/oom_score_adj
test x"$OOM_ADJ" != x && echo "$OOM_ADJ" > /proc/self/oom_adj
- su - $PGUSER -c "$DAEMON -
I -
D '$PGDATA' &" >>$PGLOG 2>&1
+ su - $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
echo "ok"
;;
stop)