projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
use /tmp/resolv.conf when using a static nameserver (#177)
[openwrt.git]
/
openwrt
/
package
/
base-files
/
default
/
etc
/
hotplug.d
/
net
/
10-net
diff --git
a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
index
fb7b128
..
7c8cd67
100644
(file)
--- a/
openwrt/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/
openwrt/package/base-files/default/etc/hotplug.d/net/10-net
@@
-69,10
+69,10
@@
do_ifup() {
$DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
${gateway:+$DEBUG route add default gw $gateway}
$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
for dns in $(nvram get ${2}_dns); do
- echo "nameserver $dns" >> /
etc
/resolv.conf
+ echo "nameserver $dns" >> /
tmp
/resolv.conf
done
}
done
}
This page took
0.026089 seconds
and
4
git commands to generate.