1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 20:57:50 +03: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:
nbd 2006-01-10 21:16:46 +00:00
parent f552e7b03b
commit 930b7bf624

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
}