X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/72936728abd1088b5d9f8e1c6c6fa013e5bb061c..1203b4c004f0579bba568f1c74e10d0dd4ab55a3:/package/dnsmasq/files/S50dnsmasq diff --git a/package/dnsmasq/files/S50dnsmasq b/package/dnsmasq/files/S50dnsmasq index 4f3721846..e913b8be1 100755 --- a/package/dnsmasq/files/S50dnsmasq +++ b/package/dnsmasq/files/S50dnsmasq @@ -1,5 +1,7 @@ #!/bin/sh . /etc/functions.sh +. /etc/network.overrides +[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network # interface to use for DHCP iface=lan @@ -20,6 +22,9 @@ udhcpc -n -q -R -s /bin/true -i $ifname >&- || { end=$(nvram get dhcp_num) end=$((start+${end:-150})) - args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h" + wanproto=$(nvram get wan_proto) + [ -z "$wanproto" -o "$wanproto" = "none" ] || wanif=$(nvram get wan_ifname) + + args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h ${wanif:+-I ${wanif} }" } dnsmasq ${args}