pdnsd.init 371 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. #PKG pdnsd
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${pdnsd:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. [ -f /etc/pdnsd.conf ] || exit
  13. mkdir -p /var/cache/pdnsd
  14. pdnsd -s -t -d
  15. ;;
  16. stop)
  17. pkill pdnsd
  18. ;;
  19. restart)
  20. sh $0 stop
  21. sleep 1
  22. sh $0 start
  23. ;;
  24. *)
  25. echo "Usage: $0 {start | stop | restart}"
  26. exit 1
  27. ;;
  28. esac
  29. exit $?