1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-20 03:29:42 +02: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
[ -n "$dns" ] && {
echo -n > $RESOLV_CONF echo -n > $RESOLV_CONF
${domain:+echo search $domain} >> $RESOLV_CONF ${domain:+echo search $domain} >> $RESOLV_CONF
for i in $dns ; do for i in $dns ; do
echo "adding dns $i" echo "adding dns $i"
echo "nameserver $i" >> $RESOLV_CONF echo "nameserver $i" >> $RESOLV_CONF
done done
}
hotplug_event ifup hotplug_event ifup