Your message dated Fri, 15 Aug 2014 13:38:02 +0200
with message-id 
<CAJn8KfA0+97GsKkkQ3QV=f9tghka5rir4flt9qmd4dc2cfu...@mail.gmail.com>
and subject line Re: [Resolvconf-devel] Bug#754381: resolveconf does not write 
dhcpdnsoption.tmp correctly
has caused the Debian Bug report #754381,
regarding resolveconf does not write dhcpdnsoption.tmp correctly
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
754381: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754381
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: resolvconf

Version: 1.67

Debian GNU/Linux, wheezy, ifup/down-mechanism, no network manager,
pppoe connection

Description:

/etc/ppp/ip-up.d/0001makedhcpdnsoption is supposed to write
/etc/ppp/dhcpdnsoption.tmp for the dhcp sever, but the command it
uses:

(echo -n "option domain-name-servers "; (sed -e "s/nameserver //g" < 
"$REALRESOLVCONF" | tr "\n" ","); echo ";") | sed -e "s/,;/;/" | sed -e "s/,/, 
/" > /etc/ppp/dhcpdnsoption.tmp

is wrong, since it does not account for the comment lines in
"$REALRESOLVCONF" and produces no valid option so that the dhcp server
dies.

Rather use this command (tested, working):

(echo -n "option domain-name-servers "; (sed -e "/^#.*$/d" -e "s/nameserver 
//g" < "$REALRESOLVCONF" | tr "\n" ","); echo ";") | sed -e "s/,;/;/" | sed -e 
"s/,/, /g" > /etc/ppp/dhcpdnsoption.tmp

(Note that additionally there is an added /g option for sed at the
end.)

-- 
public key id EAFE0591, e.g. on x-hkp://pool.sks-keyservers.net

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
On 10 July 2014 15:08, Olaf Till <[email protected]> wrote:
> /etc/ppp/ip-up.d/0001makedhcpdnsoption is supposed to write
> /etc/ppp/dhcpdnsoption.tmp for the dhcp sever, but [...]

That file is not in the resolvconf package. Googling
"0001makedhcpdnsoption" yields zero hits.

Please figure out where that file comes from and talk to the author
about fixing the bug.

Closing this report.
-- 
Thomas

--- End Message ---

Reply via email to