tags 398536 + patch thanks On Tue, Nov 14, 2006 at 12:00:25PM +0200, Meelis Roos wrote: > Setting up radvd (1.0-1) ... > Starting radvd: [Nov 14 11:48:37] radvd: no linklocal address configured for > eth3 > [Nov 14 11:48:37] radvd: error parsing or activating the config file: > /etc/radvd.conf failed. > invoke-rc.d: initscript radvd, action "start" failed. > dpkg: error processing radvd (--configure): > subprocess post-installation script returned error exit status 1 > > Maybe radvd should not fail installation when startup fails - this is one > problem.
This is quite a serious problem. A misconfiguration or problem starting/restarting radvd completely aborts package installation and the entire dist-upgrade. This should not happen, and it's something that should have been fixed long ago--it's been outstanding and unaddressed for five years now. Please consider applying the attached patch, which makes this a non-fatal error on upgrade. You can change the "true" to make this a more informative warning message should you wish. Regards, Roger -- .''`. Roger Leigh : :' : Debian GNU/Linux http://people.debian.org/~rleigh/ `. `' Printing on GNU/Linux? http://gutenprint.sourceforge.net/ `- GPG Public Key: 0x25BFB848 Please GPG sign your mail.
diff -urN radvd-1.8.5.original/debian/rules radvd-1.8.5/debian/rules --- radvd-1.8.5.original/debian/rules 2012-02-27 21:56:18.440128217 +0000 +++ radvd-1.8.5/debian/rules 2012-02-27 21:59:06.887147233 +0000 @@ -13,3 +13,6 @@ override_dh_install: install -m 644 debian/simple-radvd.conf `pwd`/debian/radvd/usr/share/doc/radvd/examples/ install -m 644 radvd.conf.example `pwd`/debian/radvd/usr/share/doc/radvd/examples/ + +override_dh_installinit: + dh_installinit --error-handler=true