[Dev] Hide ps output in runner stop
This commit is contained in:
parent
734bbb8ecf
commit
e0c2fa89de
|
@ -545,7 +545,7 @@ main() (
|
||||||
|
|
||||||
# Kill runner process.
|
# Kill runner process.
|
||||||
log_info "Kill runner process with pid '${pid}'."
|
log_info "Kill runner process with pid '${pid}'."
|
||||||
if ! ps -p "${pid}"; then
|
if ! ps -p "${pid}" >/dev/null; then
|
||||||
fail "Runner process with pid='${pid}' is not running." \
|
fail "Runner process with pid='${pid}' is not running." \
|
||||||
"${err_runner_process_not_running}"
|
"${err_runner_process_not_running}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue