1
0
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:
nbd 2006-01-10 21:16:46 +00:00
parent 9ffdc69752
commit 1603696e5e

View File

@ -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
}