watchdog.init 311 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #FWINIT 15
  3. . /etc/rc.conf
  4. case $1 in
  5. autostop) ;;
  6. autostart)
  7. test x"${watchdog:-NO}" = x"NO" && exit 0
  8. exec sh $0 start
  9. ;;
  10. start)
  11. /usr/sbin/watchdog
  12. ;;
  13. stop)
  14. killall watchdog
  15. ;;
  16. restart)
  17. sh $0 stop
  18. sh $0 start
  19. ;;
  20. *)
  21. echo "usage: $0 { start | stop | restart }"
  22. exit 1
  23. ;;
  24. esac
  25. exit $?