dnsmasq.init 327 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #PKG dnsmasq
  3. #INIT 50
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. [[ $dns_dhcp = NO ]] && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. [ -f /etc/dnsmasq.conf ] || exit
  13. /usr/sbin/dnsmasq
  14. ;;
  15. stop)
  16. pkill dnsmasq
  17. ;;
  18. restart)
  19. sh $0 stop
  20. sh $0 start
  21. ;;
  22. *)
  23. echo "Usage: $0 {start | stop | restart}"
  24. ;;
  25. esac
  26. exit $?