X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/b2f43424402231050937792fb8b78d0184643a98..c9b10f2eb14ea64cf300438131ca05a02ce18069:/package/busybox/files/cron?ds=sidebyside

diff --git a/package/busybox/files/cron b/package/busybox/files/cron
index cf0f725d3..9a3139271 100755
--- a/package/busybox/files/cron
+++ b/package/busybox/files/cron
@@ -3,11 +3,12 @@
 START=50
 
 start () {
+	[ -z $(ls /etc/crontabs/) ] && exit 1
 	mkdir -p /var/spool/cron
 	[ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
 	crond -c /etc/crontabs
 }
 
 stop() {
-	killall crond
+	killall -9 crond
 }