1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-07 03:31:25 +02:00

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

SVN-Revision: 4903
This commit is contained in:
Felix Fietkau 2006-10-03 19:38:34 +00:00
parent 7cc1e43d94
commit c379f4a159

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