diff options
-rw-r--r-- | bootscripts/contrib/lsb-v3/init.d/sendsignals | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootscripts/contrib/lsb-v3/init.d/sendsignals b/bootscripts/contrib/lsb-v3/init.d/sendsignals index ce42c87ef..95b26ceb9 100644 --- a/bootscripts/contrib/lsb-v3/init.d/sendsignals +++ b/bootscripts/contrib/lsb-v3/init.d/sendsignals @@ -22,7 +22,7 @@ case "${1}" in killall5 -15 error_value=${?} # Account for successful return value of 2 - if [ ${error_value} == 2 ] + if [ ${error_value} = 2 ] error_value="0" fi sleep 3 @@ -34,7 +34,7 @@ case "${1}" in killall5 -9 error_value=${?} # Account for successful return value of 2 - if [ ${error_value} == 2 ] + if [ ${error_value} = 2 ] error_value="0" fi |