From: florian 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.archive.openwrt.org/?a=commitdiff_plain;h=fa83d388532f171cb429e18ee33da90dd5f48c8d;p=10.03%2Fopenwrt.git Send a kill signal to cron, otherwise two instances could be running (#1923) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7704 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/busybox/files/cron b/package/busybox/files/cron index cf0f725d3..9bc89d81c 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -9,5 +9,5 @@ start () { } stop() { - killall crond + killall -9 crond }