X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/6f447d09dfa4c4ee2321f327c5b62e79db3f9173..eca83c696ef5d2dd9b319e99e003caa7687e8088:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index e78d02332..9a3139271 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -1,12 +1,14 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +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 }