Package: console-tools Version: 1:0.2.3dbs-65 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. The default-start and default-stop entries do not match how it is currently installed. Also, it should not depend on $syslog, as it is started in rcS.d/ while the syslog daemon is started later in the boot sequence. Last, but not least, as it is only started and only in rcS.d/, it does not need any stop dependencies. Here is a patch to solve this issue. diff -ur console-tools-0.2.3dbs.orig/debian/console-screen.sh console-tools-0.2.3dbs/debian/console-screen.sh --- console-tools-0.2.3dbs.orig/debian/console-screen.sh 2006-09-05 18:15:12.000000000 +0200 +++ console-tools-0.2.3dbs/debian/console-screen.sh 2008-03-15 22:35:29.000000000 +0100 @@ -2,11 +2,9 @@ ### BEGIN INIT INFO # Provides: console-screen # Required-Start: $local_fs $remote_fs -# Required-Stop: $local_fs $remote_fs -# Default-Start: S 2 3 4 5 -# Default-Stop: 0 1 6 -# Should-Start: $syslog -# Should-Stop: +# Required-Stop: +# Default-Start: S +# Default-Stop: # Description: Set console screen modes and fonts # Short-Description: Prepare console ### END INIT INFO Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

