Browse Source

Send a kill signal to cron, otherwise two instances could be running (#1923)

SVN-Revision: 7704
Florian Fainelli 18 years ago
parent
commit
0aeee1f572
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/busybox/files/cron

+ 1 - 1
package/busybox/files/cron

@@ -9,5 +9,5 @@ start () {
 }
 
 stop() {
-	killall crond
+	killall -9 crond
 }