named.init 381 B

12345678910111213141516171819202122232425262728
  1. #!/bin/sh
  2. #PKG bind-server
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${named:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. if [ -f /etc/bind/named.conf ]; then
  13. named -c /etc/bind/named.conf
  14. fi
  15. ;;
  16. stop)
  17. pkill named
  18. ;;
  19. restart)
  20. sh $0 stop
  21. sh $0 start
  22. ;;
  23. *)
  24. echo "usage: $0 {start | stop | restart}"
  25. exit 1
  26. esac
  27. exit $?