aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/hotplug.d/net/10-net
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-01-10 21:16:46 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-01-10 21:16:46 +0000
commit93157f4e700a1a0fbf0c93b644a87f4d0e903009 (patch)
treee431959552b0b3b63c9358143fa0ef478b5cf6cf /package/base-files/default/etc/hotplug.d/net/10-net
parentc18a8ef1696684c3a09e3c55b963acf0537ee755 (diff)
downloadmaster-187ad058-93157f4e700a1a0fbf0c93b644a87f4d0e903009.tar.gz
master-187ad058-93157f4e700a1a0fbf0c93b644a87f4d0e903009.tar.bz2
master-187ad058-93157f4e700a1a0fbf0c93b644a87f4d0e903009.zip
use /tmp/resolv.conf when using a static nameserver (#177)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2884 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/etc/hotplug.d/net/10-net')
-rw-r--r--package/base-files/default/etc/hotplug.d/net/10-net6
1 files changed, 3 insertions, 3 deletions
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 fb7b128eab..7c8cd67a4e 100644
--- 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
}