crond.init 351 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #FWINIT 60
  3. . /etc/rc.conf
  4. case $1 in
  5. autostop) ;;
  6. autostart)
  7. test x"${crond:-NO}" = x"NO" && exit 0
  8. exec sh $0 start
  9. ;;
  10. start)
  11. mkdir -p /var/spool/cron
  12. crond -c /etc/crontabs
  13. ;;
  14. stop)
  15. kill $(pidof crond|cut -d ' ' -f 3)
  16. ;;
  17. restart)
  18. sh $0 stop
  19. sh $0 start
  20. ;;
  21. *)
  22. echo "Usage: $0 {start | stop | restart}"
  23. exit 1
  24. ;;
  25. esac
  26. exit $?