X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f34412724d20d3716b545d4a5c87ac1e76604044..25768f1c4d22195764ef1e818d25d2b14f95bb97:/openwrt/package/dnsmasq/files/S50dnsmasq diff --git a/openwrt/package/dnsmasq/files/S50dnsmasq b/openwrt/package/dnsmasq/files/S50dnsmasq index 4f3721846..e913b8be1 100755 --- a/openwrt/package/dnsmasq/files/S50dnsmasq +++ b/openwrt/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}