mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 06:25:11 +02:00
use /tmp/resolv.conf when using a static nameserver (#177)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2884 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f552e7b03b
commit
930b7bf624
@ -69,10 +69,10 @@ do_ifup() {
|
|||||||
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
|
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
|
||||||
${gateway:+$DEBUG route add default gw $gateway}
|
${gateway:+$DEBUG route add default gw $gateway}
|
||||||
|
|
||||||
[ -f /etc/resolv.conf ] || {
|
[ -f /tmp/resolv.conf ] || {
|
||||||
debug "# --- creating /etc/resolv.conf ---"
|
debug "# --- creating /tmp/resolv.conf ---"
|
||||||
for dns in $(nvram get ${2}_dns); do
|
for dns in $(nvram get ${2}_dns); do
|
||||||
echo "nameserver $dns" >> /etc/resolv.conf
|
echo "nameserver $dns" >> /tmp/resolv.conf
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user