Fix the script error
This commit is contained in:
Родитель
b08bcd49d5
Коммит
c00987ffc0
|
@ -64,10 +64,13 @@ if $CGInstalled; then
|
|||
((maxLoop--))
|
||||
done
|
||||
else
|
||||
if [ "$forced" == "1" ]; then
|
||||
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 '()')
|
||||
$pid = $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
|
||||
if [ -n "$pid" ]; then
|
||||
if [ "$forced" == "1" ]; then
|
||||
kill -s 9 $pid
|
||||
else
|
||||
kill -s SIGINT $pid
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче