use /tmp/resolv.conf when using a static nameserver (#177)
SVN-Revision: 2884
This commit is contained in:
parent
5aae7cab2c
commit
2eccbe55a3
1 changed files with 3 additions and 3 deletions
|
@ -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 a new issue