Package: dirmngr Version: 0.9.6-1 Severity: important Tags: patch User: [EMAIL PROTECTED] Usertags: incorrect-dependency
When testing dependency based boot sequencing, I discovered a bug in the init.d script for dirmngr. It need a mounted /usr/ and this require a dependency on $remote_fs to avoid starting to early and stopping too late. Also, it claim to stop in the boot runlevel S, which is a bug as no script is ever stopped in that "runlevel". Fixing these issues is a release goal for lenny, so it is good if it is fixed quickly. This patch solve the issue. I hope I located all init.d scripts in the package. diff -ur dirmngr-1.0.1.orig/debian/init.d dirmngr-1.0.1/debian/init.d --- dirmngr-1.0.1.orig/debian/init.d 2008-02-18 08:02:59.000000000 +0100 +++ dirmngr-1.0.1/debian/init.d 2008-02-18 08:05:03.000000000 +0100 @@ -2,10 +2,10 @@ ### BEGIN INIT INFO # Provides: dirmngr -# Required-Start: $local_fs $network -# Required-Stop: $local_fs $network +# Required-Start: $remote_fs $network +# Required-Stop: $remote_fs $network # Default-Start: 2 3 4 5 -# Default-Stop: S 0 1 6 +# Default-Stop: 0 1 6 # Short-Description: start DirMngr daemon # Description: DirMngr is a server for managing and downloading certificate # revocation lists. Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

