2006-10-04 20:05:48 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2006-06-27 00:36:13 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-05-10 10:38:53 +00:00
|
|
|
START=50
|
2006-06-27 00:36:13 +00:00
|
|
|
|
2006-10-04 20:05:48 +00:00
|
|
|
start () {
|
2008-01-28 17:23:22 +00:00
|
|
|
[ -z $(ls /etc/crontabs/) ] && exit 1
|
2006-10-04 20:05:48 +00:00
|
|
|
mkdir -p /var/spool/cron
|
2006-11-04 12:47:45 +00:00
|
|
|
[ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
|
2006-10-04 20:05:48 +00:00
|
|
|
crond -c /etc/crontabs
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2007-06-22 08:47:29 +00:00
|
|
|
killall -9 crond
|
2006-10-04 20:05:48 +00:00
|
|
|
}
|