START/STOP values must be specified in the init script
[openwrt-10.03/.git] / package / busybox / files / cron
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 start () {
6         mkdir -p /var/spool/cron
7         [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
8         crond -c /etc/crontabs
9 }
10
11 stop() {
12         killall crond
13 }