named.init 559 B

1234567891011121314151617181920212223242526272829303132
  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. test x"$named" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. if [ ! -f /etc/rndc.key ]; then
  14. rndc-confgen -a 2>/dev/null
  15. fi
  16. if [ -f /etc/bind/named.conf ]; then
  17. /usr/sbin/named -c /etc/bind/named.conf &
  18. fi
  19. ;;
  20. stop)
  21. kill $(pgrep -f /usr/sbin/named)
  22. ;;
  23. restart)
  24. sh $0 stop
  25. sh $0 start
  26. ;;
  27. *)
  28. echo "usage: $0 {start | stop | restart}"
  29. exit 1
  30. esac
  31. exit $?