Your message dated Wed, 16 Jan 2008 21:17:05 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#461073: fixed in insserv 1.10.0-4 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: insserv Version: 1.10.0-3 Severity: normal Tags: patch When attempting to enable dep based boot: info: Checking if it is safe to convert to dependency based boot. error: Obsolete init.d conffile left behind by package makedev: /etc/init.d/makedev 6db71bb7f1c016cadf07b947e2c0c943 obsolete error: Obsolete init.d conffile left behind by package procps: /etc/init.d/procps.sh 778551944e9ac7ddffd44cd949baeff3 obsolete error: Obsolete init.d conffile left behind by package sudo: /etc/init.d/sudo 3ea7480674a8288c36fbac9ef3b26632 obsolete error: Problems running insserv: insserv: script procps: service procps already provided! info: Please check out this manually. info: Refusing to convert boot sequence until this is fixed error: Unable to enable dependency based boot system. After rm -f /etc/init.d/makedev /etc/init.d/procps.sh /etc/init.d/sudo I still could not proceed, because /etc/init.d/procps.sh was being reported still as obsolete by dpkg-query. Please apply attached patch to check filesystem for existence of obsolete conffiles before bailing out. --- diff -Nrup insserv-1.10.0/debian/update-bootsystem-insserv insserv-1.10.0.patch/debian/update-bootsystem-insserv --- insserv-1.10.0/debian/update-bootsystem-insserv 2008-01-16 20:52:13.000000000 +1000 +++ insserv-1.10.0.patch/debian/update-bootsystem-insserv 2008-01-16 22:47:20.000000000 +1000 @@ -144,12 +144,16 @@ activate_insserv() { echo "info: Checking if it is safe to convert to dependency based boot." for package in $(dpkg -S $(find /etc/init.d -type f -perm /+x) \ 2>/dev/null | cut -d: -f1 | sort -u); do - if dpkg-query -W -f='${Conffiles}' $package | \ - grep /etc/init.d/ | grep -q obsolete; then - echo "error: Obsolete init.d conffile left behind by package $package:" - dpkg-query -W -f='${Conffiles}' $package | \ - grep /etc/init.d/ | grep obsolete | sed 's/^/ /' - badstate=1 + obsolete_initscripts=$(dpkg-query -W -f='${Conffiles}\n' $package | \ + grep 'obsolete$' | grep -o '/etc/init.d/[^ ]\+') || : + if [ "$obsolete_initscripts" ]; then + for initscript in $obsolete_initscripts; do + if [ -e "$initscript" ]; then + echo "error: Obsolete init.d conffile left behind by package $package:" + echo "$initscript" + badstate=1 + fi + done fi done ---
--- End Message ---
--- Begin Message ---Source: insserv Source-Version: 1.10.0-4 We believe that the bug you reported is fixed in the latest version of insserv, which is due to be installed in the Debian FTP archive: insserv_1.10.0-4.diff.gz to pool/main/i/insserv/insserv_1.10.0-4.diff.gz insserv_1.10.0-4.dsc to pool/main/i/insserv/insserv_1.10.0-4.dsc insserv_1.10.0-4_i386.deb to pool/main/i/insserv/insserv_1.10.0-4_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Petter Reinholdtsen <[EMAIL PROTECTED]> (supplier of updated insserv package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Wed, 16 Jan 2008 22:00:50 +0100 Source: insserv Binary: insserv Architecture: source i386 Version: 1.10.0-4 Distribution: unstable Urgency: low Maintainer: Petter Reinholdtsen <[EMAIL PROTECTED]> Changed-By: Petter Reinholdtsen <[EMAIL PROTECTED]> Description: insserv - Reorder boot sequence based on LSB init.d script dependencies Closes: 461073 Changes: insserv (1.10.0-4) unstable; urgency=low . * Made problematic test cases for bug #460034 and #458582 fatal in testing and non-fatal when uploading. * Added override files for bastille-firewall. * Do not warn about obsolete init.d scripts that have been removed (Closes: #461073). Patch from Kel Modderman. * Provide more information when convertion to dependency based boot sequencing can not be done. Files: 9be6ea47295b622493993cb504a77574 724 misc optional insserv_1.10.0-4.dsc 22ad518f1996ab39f9d097607613ec19 36803 misc optional insserv_1.10.0-4.diff.gz 63a9d032a2e1dcfd6ed92e941e41ab98 52110 misc optional insserv_1.10.0-4_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHjnGc20zMSyow1ykRAv9xAJ0XfilHsIk4zZYI5Gyw3VpDVHybTACgp2KO R6/1ATFUlni5om/4qEAXNyM= =jN2X -----END PGP SIGNATURE-----
--- End Message ---

