Skip to content
Snippets Groups Projects
Commit f320cbb6 authored by Tom Lane's avatar Tom Lane
Browse files

Fix typo in linux startup script.

Missed a "$" in what was meant to be a variable substitution.  Careless
mistake in commit f23425fa.
parent 0bd11d97
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ test -x $DAEMON || ...@@ -81,7 +81,7 @@ test -x $DAEMON ||
# If we want to tell child processes to adjust their OOM scores, set up the # If we want to tell child processes to adjust their OOM scores, set up the
# necessary environment variables. Can't just export them through the "su". # necessary environment variables. Can't just export them through the "su".
if [ -e "$PG_OOM_ADJUST_FILE" -a -n "PG_CHILD_OOM_SCORE_ADJ" ] if [ -e "$PG_OOM_ADJUST_FILE" -a -n "$PG_CHILD_OOM_SCORE_ADJ" ]
then then
DAEMON_ENV="PG_OOM_ADJUST_FILE=$PG_OOM_ADJUST_FILE PG_OOM_ADJUST_VALUE=$PG_CHILD_OOM_SCORE_ADJ" DAEMON_ENV="PG_OOM_ADJUST_FILE=$PG_OOM_ADJUST_FILE PG_OOM_ADJUST_VALUE=$PG_CHILD_OOM_SCORE_ADJ"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment