This commit is contained in:
Evan Cui 2018-05-23 01:06:13 +08:00
Родитель b225e71fa4
Коммит 54e46566a0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -48,9 +48,9 @@ if $CGInstalled; then
while read pid || [ -n "$pid" ]
do
if [ "$forced" == "1" ]; then
[ -d "/proc/$pid" ] && kill -9 "$pid"
[ -d "/proc/$pid" ] && kill -9 $pid
else
[ -d "/proc/$pid" ] && kill -SIGINT "$pid"
[ -d "/proc/$pid" ] && kill -SIGINT $pid
fi
done < "$tasks"