fix start

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2021-01-29 20:55:54 +01:00
parent c693ab5bb9
commit c9daa822bb
1 changed files with 3 additions and 4 deletions

View File

@ -30,7 +30,7 @@ BOTCOMMANDS="-h help init start stop status suspendback resumeback killb
# 8 - curl/wget missing # 8 - curl/wget missing
# 10 - not bash! # 10 - not bash!
# #
#### $$VERSION$$ v1.40-dev-3-g7c74824 #### $$VERSION$$ v1.40-dev-4-gc693ab5
################################################################## ##################################################################
# emmbeded system may claim bash but it is not # emmbeded system may claim bash but it is not
@ -795,10 +795,9 @@ if [ -z "${SOURCE}" ]; then
# start bot as background job and check if bot is running # start bot as background job and check if bot is running
"start") "start")
SESSION="${ME:-_bot}-startbot"
BOTPID="$(proclist "${SESSION}")"
if _is_function process_updates; then if _is_function process_updates; then
# shellcheck disable=SC2086
SESSION="${ME:-_bot}-startbot"
BOTPID="$(proclist "${SESSION}")"
# shellcheck disable=SC2086 # shellcheck disable=SC2086
[ -n "${BOTPID}" ] && kill ${BOTPID} [ -n "${BOTPID}" ] && kill ${BOTPID}
nohup "${SCRIPT}" "startbot" "$2" "${SESSION}" &>/dev/null & nohup "${SCRIPT}" "startbot" "$2" "${SESSION}" &>/dev/null &