diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-22 08:47:29 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-22 08:47:29 +0000 |
commit | fa83d388532f171cb429e18ee33da90dd5f48c8d (patch) | |
tree | 2ae67959cf1cfaeb93f28159ee4734fec4c7142b /package/busybox/files/cron | |
parent | 9f322f1f78f29f02672e75d6bf50a886666dde7b (diff) |
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/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 } |