diff options
Diffstat (limited to 'rc.d/init.d/functions')
-rwxr-xr-x | rc.d/init.d/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 1ab13101..7e42deb1 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -63,7 +63,7 @@ killproc() { # TERM first, then KILL if not dead kill -TERM $pid usleep 100000 - dead=`ps aux | awk "{print $2}" | grep $pid` + dead=`ps aux | awk '{print $2}' | grep $pid` if [ "$dead" != "" ]; then sleep 3 kill -KILL $pid |