You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
230 B
13 lines
230 B
![]()
19 years ago
|
#!/bin/sh /etc/rc.common
|
||
![]()
19 years ago
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
![]()
19 years ago
|
start () {
|
||
|
mkdir -p /var/spool/cron
|
||
![]()
19 years ago
|
[ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
|
||
![]()
19 years ago
|
crond -c /etc/crontabs
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall crond
|
||
|
}
|