Package: qwik Version: 0.8.4.3 Severity: important Tags: patch User: [EMAIL PROTECTED] Usertags: incorrect-dependency
I just checked the shutdown order in unstable on a machine with dependency based boot sequencing enabled, and discovered a problem with the init.d scripts provided in the qwik package. It stops to late and start to early, as it do not depend on $remote_fs which guarantee that /usr/ will be mounted and that it stops before sendsigs. Another issue is that the init.d script list S in its stop runlevel list. This make a useless stop symlink in rcS.d/, and S should not be included there. Here is a patch to solve these issues. diff -ur qwik-0.8.4.4.orig/debian/qwik.init qwik-0.8.4.4/debian/qwik.init --- qwik-0.8.4.4.orig/debian/qwik.init 2006-09-10 13:54:20.000000000 +0200 +++ qwik-0.8.4.4/debian/qwik.init 2008-03-09 08:41:23.000000000 +0100 @@ -2,10 +2,10 @@ # ### BEGIN INIT INFO # Provides: qwik -# Required-Start: $syslog $time $local_fs -# Required-Stop: $syslog $time $local_fs +# Required-Start: $remote_fs $syslog $time +# Required-Stop: $remote_fs $syslog $time # Default-Start: 2 3 4 5 -# Default-Stop: S 0 1 6 +# Default-Stop: 0 1 6 # Short-Description: qwikWeb, a group communication system # Description: qwik's services of web server and smtp server ### END INIT INFO Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

