pdnsd.init 476 B

12345678910111213141516171819202122232425262728293031323334
  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. touch /var/cache/pdnsd/pdnsd.cache
  15. # this allows for strict_setuid
  16. chown -R nobody:nogroup /var/cache/pdnsd
  17. pdnsd -d
  18. ;;
  19. stop)
  20. pkill pdnsd
  21. ;;
  22. restart)
  23. sh $0 stop
  24. sleep 1
  25. sh $0 start
  26. ;;
  27. *)
  28. echo "Usage: $0 {start | stop | restart}"
  29. exit 1
  30. ;;
  31. esac
  32. exit $?