From: Florian Fainelli Date: Fri, 22 Jun 2007 08:47:29 +0000 (+0000) Subject: Send a kill signal to cron, otherwise two instances could be running (#1923) X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=0aeee1f572170a3479678397de41a0001c20c30b;p=openwrt%2Fstaging%2Fansuel.git Send a kill signal to cron, otherwise two instances could be running (#1923) SVN-Revision: 7704 --- diff --git a/package/busybox/files/cron b/package/busybox/files/cron index cf0f725d3e..9bc89d81ca 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -9,5 +9,5 @@ start () { } stop() { - killall crond + killall -9 crond }