1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 17:48:26 +03:00
openwrt-xburst/package/busybox/files/cron

14 lines
242 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
start () {
mkdir -p /var/spool/cron
[ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
crond -c /etc/crontabs
}
stop() {
killall -9 crond
}