use /tmp/resolv.conf when using a static nameserver (#177)

SVN-Revision: 2884
This commit is contained in:
Felix Fietkau 2006-01-10 21:16:46 +00:00
parent 5aae7cab2c
commit 2eccbe55a3

View file

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