diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-06-22 08:47:29 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-06-22 08:47:29 +0000 |
commit | 0aeee1f572170a3479678397de41a0001c20c30b (patch) | |
tree | fe2d9c00cc911443e6f6b9adabd999332b2fa4b3 /package/busybox/files/cron | |
parent | cc6a10de5ba6695de1359d718056920b515c30d9 (diff) | |
download | upstream-0aeee1f572170a3479678397de41a0001c20c30b.tar.gz upstream-0aeee1f572170a3479678397de41a0001c20c30b.tar.bz2 upstream-0aeee1f572170a3479678397de41a0001c20c30b.zip |
Send a kill signal to cron, otherwise two instances could be running (#1923)
SVN-Revision: 7704
Diffstat (limited to 'package/busybox/files/cron')
-rwxr-xr-x | package/busybox/files/cron | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |