aiccu.init 291 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #FWINIT 60
  3. . /etc/rc.conf
  4. case $1 in
  5. autostop) ;;
  6. autostart)
  7. test x"${aiccu:-NO}" = x"NO" && exit 0
  8. exec sh $0 start
  9. ;;
  10. start)
  11. aiccu start
  12. ;;
  13. stop)
  14. aiccu stop
  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 $?