mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-25 02:46:48 +00:00
use /tmp/resolv.conf when using a static nameserver (#177)
SVN-Revision: 2884
This commit is contained in:
parent
5aae7cab2c
commit
2eccbe55a3
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user