add new ar7 dsl driver (thanks, matteo), mark ar7-2.4 as broken and enable ar7-2.6
[openwrt.git] / package / busybox / files / cron
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 start () {
5 mkdir -p /var/spool/cron
6 [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
7 crond -c /etc/crontabs
8 }
9
10 stop() {
11 killall crond
12 }
This page took 0.03811 seconds and 5 git commands to generate.