summaryrefslogtreecommitdiffstats
path: root/package/busybox/files
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-06-22 08:47:29 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-06-22 08:47:29 +0000
commitfa83d388532f171cb429e18ee33da90dd5f48c8d (patch)
tree2ae67959cf1cfaeb93f28159ee4734fec4c7142b /package/busybox/files
parent9f322f1f78f29f02672e75d6bf50a886666dde7b (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')
-rwxr-xr-xpackage/busybox/files/cron2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
index cf0f725d3..9bc89d81c 100755
--- a/package/busybox/files/cron
+++ b/package/busybox/files/cron
@@ -9,5 +9,5 @@ start () {
}
stop() {
- killall crond
+ killall -9 crond
}