1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

don't recreate the resolv.conf file from the dhcp script if no dhcp server is supplied (reported by exobyte)

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4903 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-10-03 19:38:34 +00:00
parent 5005fb433a
commit b9f75a560d

View File

@@ -38,12 +38,14 @@ case "$1" in
done done
fi fi
echo -n > $RESOLV_CONF [ -n "$dns" ] && {
${domain:+echo search $domain} >> $RESOLV_CONF echo -n > $RESOLV_CONF
for i in $dns ; do ${domain:+echo search $domain} >> $RESOLV_CONF
echo "adding dns $i" for i in $dns ; do
echo "nameserver $i" >> $RESOLV_CONF echo "adding dns $i"
done echo "nameserver $i" >> $RESOLV_CONF
done
}
hotplug_event ifup hotplug_event ifup