Package: dhcp3-client
Version: 3.1.0-1
If domain-search contains multiple options separated by spaces, the resulting
resolv.conf has the ending domains separated by \032 instead of spaces.
The problem is in /sbin/dhclient-script, in make_resolv_conf():
echo "search ${new_domain_search/\\032/ }" >> $new_resolv_conf
only replace the first \032 occurrence.
If you replace it with:
echo "search ${new_domain_search//\\032/ }" >> $new_resolv_conf
(note the double /)
it'll replace all occurrences, and the resulting resolv.conf will work.
HTH, and regards,
--
Yves-Alexis
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]