atheros: clean up the 2.6.28 port in preparation for pushing it upstream
[openwrt.git] / package / busybox / files / cron
index e78d023..f247130 100755 (executable)
@@ -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
 }
This page took 0.023303 seconds and 4 git commands to generate.