Package: release.debian.org Severity: normal Tags: bullseye User: release.debian....@packages.debian.org Usertags: pu
Dear team, [ Reason ] The dnsproxy package fails to install when you do not have the IP address "192.168.168.1" configured on the machine. This bug remains since its initial release. [ Impact ] A user that not have the address "192.168.168.1" configured on the machine will not be able to install the package. [ Tests ] I did manual tests. I installed and removed the new deb file three times. [ Risks ] This code is trivial. No risks. [ Checklist ] [X] *all* changes are documented in the d/changelog [X] I reviewed all changes and I approve them [X] attach debdiff against the package in (old)stable [X] the issue is verified as fixed in unstable [ Changes ] To fix the problem I just changed the file "debian/dnsproxy.conf" replacing the line "listen 192.168.168.1" to "listen 127.0.0.1". [ Other info ] None. Thanks! Best Regards, mt
diff -u dnsproxy-1.16/debian/dnsproxy.conf dnsproxy-1.16/debian/dnsproxy.conf --- dnsproxy-1.16/debian/dnsproxy.conf +++ dnsproxy-1.16/debian/dnsproxy.conf @@ -20,7 +20,7 @@ # # Local address and port of dnsproxy # -listen 192.168.168.1 +listen 127.0.0.1 port 53000 # diff -u dnsproxy-1.16/debian/changelog dnsproxy-1.16/debian/changelog --- dnsproxy-1.16/debian/changelog +++ dnsproxy-1.16/debian/changelog @@ -1,3 +1,13 @@ +dnsproxy (1.16-0.1+deb11u1) bullseye; urgency=medium + + * debian/dnsproxy.conf: Change the default listening IP address to localhost. + This address is used by the daemon to bind a UDP port when it starts. + Currently, the default listening address is "192.168.168.1", and if this + address is not available on the machine, this will cause a dpkg error when + trying to install dnsproxy. Thanks to Marco d'Itri (Closes: #802918). + + -- Marcos Talau <mar...@talau.info> Sun, 03 Jul 2022 16:35:09 -0300 + dnsproxy (1.16-0.1) unstable; urgency=low * Non-maintainer upload.