From 0aeee1f572170a3479678397de41a0001c20c30b Mon Sep 17 00:00:00 2001
From: Florian Fainelli <florian@openwrt.org>
Date: Fri, 22 Jun 2007 08:47:29 +0000
Subject: [PATCH] Send a kill signal to cron, otherwise two instances could be
 running (#1923)

SVN-Revision: 7704
---
 package/busybox/files/cron | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 }
-- 
2.30.2