From 2eccbe55a3ceb66c65ae51e74db6fbddb090769e Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 10 Jan 2006 21:16:46 +0000 Subject: [PATCH] use /tmp/resolv.conf when using a static nameserver (#177) SVN-Revision: 2884 --- openwrt/package/base-files/default/etc/hotplug.d/net/10-net | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 fb7b128eab..7c8cd67a4e 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 } -- 2.25.1