Fix the end task method
This commit is contained in:
Родитель
1b6ad50d28
Коммит
b225e71fa4
|
@ -65,9 +65,9 @@ if $CGInstalled; then
|
|||
done
|
||||
else
|
||||
if [ "$forced" == "1" ]; then
|
||||
kill -s 9 "$(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')"
|
||||
kill -s 9 $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
|
||||
else
|
||||
kill -s SIGINT "$(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')"
|
||||
kill -s SIGINT $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче