rpc-tests: don't spew non-errors to stdout
There's a brief race here, the process might've already exited and cleaned up after itself. If that's the case, reading from the pidfile will harmlessly fail. Keep those quiet.
This commit is contained in:
parent
023690c0f2
commit
005b5af6e2
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ fi
|
|||
|
||||
if [ $1 = "-STOP" ]; then
|
||||
if [ -s ${PIDFILE} ]; then
|
||||
kill -s ${SIGNAL} $(<${PIDFILE})
|
||||
kill -s ${SIGNAL} $(<$PIDFILE 2>/dev/null) 2>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue