busybox: convert crond init script to procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37243
This commit is contained in:
parent
e3a6115686
commit
928b503435
1 changed files with 9 additions and 7 deletions
|
@ -3,16 +3,18 @@
|
|||
|
||||
START=50
|
||||
|
||||
SERVICE_USE_PID=1
|
||||
USE_PROCD=1
|
||||
PROG=/usr/sbin/crond
|
||||
NAME=crond
|
||||
|
||||
start_service () {
|
||||
[ -z "$(ls /etc/crontabs/)" ] && return 1
|
||||
|
||||
start () {
|
||||
loglevel=$(uci_get "system.@system[0].cronloglevel")
|
||||
[ -z "$(ls /etc/crontabs/)" ] && exit 1
|
||||
mkdir -p /var/spool/cron
|
||||
ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null
|
||||
service_start /usr/sbin/crond -c /etc/crontabs -l ${loglevel:-5}
|
||||
}
|
||||
|
||||
stop() {
|
||||
service_stop /usr/sbin/crond
|
||||
procd_open_instance
|
||||
procd_set_param command "$PROG" -f -c /etc/crontabs -l ${loglevel:-5}
|
||||
procd_close_instance
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue