avahi-daemon.init 318 B

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