From 1603696e5ef22d41cdee385284f51b0405a44e0b Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Jan 2006 21:16:46 +0000 Subject: use /tmp/resolv.conf when using a static nameserver (#177) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2884 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/base-files/default/etc/hotplug.d/net/10-net | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openwrt/package/base-files') 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 fb7b128ea..7c8cd67a4 100644 --- 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} - [ -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 } -- cgit v1.2.3