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 | 08052a3c69886c72a3816a0dcff8c7e48f0c1c6d (patch) | |
tree | 2ae67959cf1cfaeb93f28159ee4734fec4c7142b /package/busybox/files | |
parent | 74d7a9b4a58bba9fa29d85a1ad649c4428951856 (diff) | |
download | upstream-08052a3c69886c72a3816a0dcff8c7e48f0c1c6d.tar.gz upstream-08052a3c69886c72a3816a0dcff8c7e48f0c1c6d.tar.bz2 upstream-08052a3c69886c72a3816a0dcff8c7e48f0c1c6d.zip |
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
Diffstat (limited to 'package/busybox/files')
-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 } |