Skip to content
Snippets Groups Projects
Commit c4fa115e authored by Travis Kemen's avatar Travis Kemen
Browse files

add fix from ticket #2290

SVN-Revision: 8732
parent 114a03a4
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# Copyright (C) 2007 OpenWrt.org # Copyright (C) 2007 OpenWrt.org
START=60 START=60
DNS_SERVERS=""
dhcp_calc() { dhcp_calc() {
local ip="$1" local ip="$1"
...@@ -173,6 +174,11 @@ dhcp_add() { ...@@ -173,6 +174,11 @@ dhcp_add() {
config_get ifname "$net" ifname config_get ifname "$net" ifname
[ -n "$ifname" ] || return 0 [ -n "$ifname" ] || return 0
config_get dnsserver "$net" dns
[ -n "$dnsserver" ] && {
DNS_SERVERS="$DNS_SERVERS $dnsserver"
}
append_bool "$cfg" ignore "-I $ifname" append_bool "$cfg" ignore "-I $ifname"
config_get proto "$net" proto config_get proto "$net" proto
...@@ -234,10 +240,10 @@ start() { ...@@ -234,10 +240,10 @@ start() {
/usr/sbin/dnsmasq $args && { /usr/sbin/dnsmasq $args && {
rm -f /tmp/resolv.conf rm -f /tmp/resolv.conf
cat > /tmp/resolv.conf <<EOF DNS_SERVERS="$DNS_SERVERS 127.0.0.1"
nameserver 127.0.0.1 for DNS_SERVER in $DNS_SERVERS ; do
search lan echo "nameserver $DNS_SERVER" >> /tmp/resolv.conf
EOF done
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment