Package: ivman Version: 0.6.12-5 Severity: important Tags: patch User: [EMAIL PROTECTED] Usertags: incorrect-dependency
I just checked the boot order in unstable on a machine with dependency based boot sequencing enabled, and discovered a problem with the init.d scripts provided in this package. A stop symlink is inserted in the rcS.d/ directory. This is always wrong and 'S' should be removed from the Default-Stop header. Also, it should depend on $remote_fs to make sure /usr/ is available. I also suggest making dbus an optional dependency, to make it possible to install ivman even without dbus installed. If it should be a hard link, please keep it in required-*. Here is a patch to solve this issue. diff -ur ivman-0.6.14.orig/debian/init.d ivman-0.6.14/debian/init.d --- ivman-0.6.14.orig/debian/init.d 2008-03-15 22:17:46.000000000 +0100 +++ ivman-0.6.14/debian/init.d 2008-03-15 22:19:46.000000000 +0100 @@ -1,10 +1,12 @@ #! /bin/sh ### BEGIN INIT INFO # Provides: ivman -# Required-Start: dbus -# Required-Stop: dbus +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Should-Start: dbus +# Should-Start: dbus # Default-Start: 2 3 4 5 -# Default-Stop: S 0 1 6 +# Default-Stop: 0 1 6 # Short-Description: start the ivman daemon ### END INIT INFO Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

