mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 10:23:44 +02:00
b2f4342440
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7164 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
239 B
Bash
Executable File
14 lines
239 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 crond
|
|
}
|