mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:50:18 +02:00
fa83d38853
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7704 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
242 B
Bash
Executable File
14 lines
242 B
Bash
Executable File
#!/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
|
|
}
|