dnsmasq.init 323 B

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