S60cron 195 B

123456789101112
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006 OpenWrt.org
  3. start () {
  4. mkdir -p /var/spool/cron
  5. ln -s /etc/crontabs /var/spool/cron/crontabs
  6. crond -c /etc/crontabs
  7. }
  8. stop() {
  9. killall crond
  10. }