diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-09-07 11:34:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-09-07 11:34:05 +0000 |
commit | be9896e3bf76bd20449cd70f6482700d5b1b64b3 (patch) | |
tree | 699e7b154c719b913f2cc1af10fc4c55e2c297b9 /package/dnsmasq/files/S50dnsmasq | |
parent | 4ce387cbb88c6c6ecd71cc73d02e4fbe9c5308c2 (diff) | |
download | upstream-be9896e3bf76bd20449cd70f6482700d5b1b64b3.tar.gz upstream-be9896e3bf76bd20449cd70f6482700d5b1b64b3.tar.bz2 upstream-be9896e3bf76bd20449cd70f6482700d5b1b64b3.zip |
set dnsmasq except-interface in init script to wan_ifname instead of vlan1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1866 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dnsmasq/files/S50dnsmasq')
-rwxr-xr-x | package/dnsmasq/files/S50dnsmasq | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/dnsmasq/files/S50dnsmasq b/package/dnsmasq/files/S50dnsmasq index 4f3721846b..c97096054d 100755 --- a/package/dnsmasq/files/S50dnsmasq +++ b/package/dnsmasq/files/S50dnsmasq @@ -20,6 +20,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} |