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

Commit f320cbb

Browse files
committed
Fix typo in linux startup script.
Missed a "$" in what was meant to be a variable substitution. Careless mistake in commit f23425f.
1 parent 0bd11d9 commit f320cbb

File tree

1 file changed

+1
-1
lines changed
  • contrib/start-scripts

1 file changed

+1
-1
lines changed

contrib/start-scripts/linux

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ test -x $DAEMON ||
8181

8282
# If we want to tell child processes to adjust their OOM scores, set up the
8383
# necessary environment variables. Can't just export them through the "su".
84-
if [ -e "$PG_OOM_ADJUST_FILE" -a -n "PG_CHILD_OOM_SCORE_ADJ" ]
84+
if [ -e "$PG_OOM_ADJUST_FILE" -a -n "$PG_CHILD_OOM_SCORE_ADJ" ]
8585
then
8686
DAEMON_ENV="PG_OOM_ADJUST_FILE=$PG_OOM_ADJUST_FILE PG_OOM_ADJUST_VALUE=$PG_CHILD_OOM_SCORE_ADJ"
8787
fi

0 commit comments

Comments
 (0)