aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rc.d/init.d/functions4
1 files 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