maradns.init 492 B

1234567891011121314151617181920212223242526272829303132
  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. test x"$maradns" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. [ -f /etc/mararc ] || exit
  14. [ -d /etc/maradns ] || mkdir /etc/maradns
  15. /usr/sbin/maradns &
  16. ;;
  17. stop)
  18. kill $(pgrep -f /usr/sbin/maradns)
  19. ;;
  20. restart)
  21. sh $0 stop
  22. sleep 1
  23. sh $0 start
  24. ;;
  25. *)
  26. echo "Usage: $0 {start | stop | restart}"
  27. exit 1
  28. ;;
  29. esac
  30. exit $?