From 13f2ec05b5af5f57b6847b04185c6e710dc769b2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 28 Feb 2011 16:34:56 -0500 Subject: Tweak waiting times slightly. (#596451) --- rc.d/init.d/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 212ecee8..da8d9794 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -354,7 +354,7 @@ killproc() { if checkpid $pid 2>&1; then # TERM first, then KILL if not dead kill -TERM $pid >/dev/null 2>&1 - usleep 100000 + usleep 50000 if checkpid $pid ; then try=0 while [ $try -lt $delay ] ; do @@ -364,7 +364,7 @@ killproc() { done if checkpid $pid ; then kill -KILL $pid >/dev/null 2>&1 - usleep 100000 + usleep 50000 fi fi fi -- cgit v1.2.1