projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c18a8ef
)
use /tmp/resolv.conf when using a static nameserver (#177)
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:16:46 +0000
(21:16 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:16:46 +0000
(21:16 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2884
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/default/etc/hotplug.d/net/10-net
patch
|
blob
|
history
diff --git
a/package/base-files/default/etc/hotplug.d/net/10-net
b/package/base-files/default/etc/hotplug.d/net/10-net
index
fb7b128
..
7c8cd67
100644
(file)
--- a/
package/base-files/default/etc/hotplug.d/net/10-net
+++ b/
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}
- [ -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
}