diff --git a/dev/debug_osync.sh b/dev/debug_osync.sh index 87bbeaa..621aaaa 100755 --- a/dev/debug_osync.sh +++ b/dev/debug_osync.sh @@ -41,7 +41,7 @@ IS_STABLE=yes _OFUNCTIONS_VERSION=2.1.4-dev -_OFUNCTIONS_BUILD=2017052804 +_OFUNCTIONS_BUILD=2017052901 _OFUNCTIONS_BOOTSTRAP=true ## BEGIN Generic bash functions written in 2013-2017 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr @@ -347,7 +347,7 @@ function KillChilds { local pid="${1}" # Parent pid to kill childs local self="${2:-false}" # Should parent be killed too ? - if [ $(IsNumeric "$pid") -eq 0 ] || [ "$pid" == "" ]; then + if [ $(IsNumeric "$pid") -eq 0 ] || [ "$pid" == "" ] || [ "$pid" == "0" ]; then Logger "Bogus pid given [$pid]." "CRITICAL" return 1 fi diff --git a/osync.sh b/osync.sh index 5603b3e..5a8d37d 100755 --- a/osync.sh +++ b/osync.sh @@ -10,7 +10,7 @@ IS_STABLE=yes _OFUNCTIONS_VERSION=2.1.4-dev -_OFUNCTIONS_BUILD=2017052804 +_OFUNCTIONS_BUILD=2017052901 _OFUNCTIONS_BOOTSTRAP=true ## BEGIN Generic bash functions written in 2013-2017 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr @@ -301,7 +301,7 @@ function KillChilds { local pid="${1}" # Parent pid to kill childs local self="${2:-false}" # Should parent be killed too ? - if [ $(IsNumeric "$pid") -eq 0 ] || [ "$pid" == "" ]; then + if [ $(IsNumeric "$pid") -eq 0 ] || [ "$pid" == "" ] || [ "$pid" == "0" ]; then Logger "Bogus pid given [$pid]." "CRITICAL" return 1 fi