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