maradns.init 415 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. #PKG maradns
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${maradns:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. [ -f /etc/mararc ] || exit
  13. [ -d /etc/maradns ] || mkdir /etc/maradns
  14. /usr/sbin/maradns &
  15. ;;
  16. stop)
  17. kill $(pgrep -f /usr/sbin/maradns)
  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 $?