Last fix for killchilds

This commit is contained in:
deajan 2016-08-16 22:54:36 +02:00
parent 075c673717
commit 18f318d138
1 changed files with 2 additions and 1 deletions

View File

@ -202,6 +202,7 @@ function KillChilds {
function KillAllChilds {
local pids="${1}" # List of parent pids to kill separated by semi-colon
local self="${2:-false}" # Should parent be killed too ?
__CheckArguments 1 $# ${FUNCNAME[0]} "$@" #__WITH_PARANOIA_DEBUG
@ -209,7 +210,7 @@ function KillAllChilds {
IFS=';' read -a pidsArray <<< "$pids"
for pid in "${pidsArray[@]}"; do
KillChilds $pid
KillChilds $pid $self
if [ $? != 0 ]; then
errorcount=$((errorcount+1))
fi