Package: hddtemp Version: 0.3-beta15-31 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 hddtemp. It need a mounted /usr/ and this require a dependency on $remote_fs. Fixing these issues is a release goal for lenny, so it is good if it is fixed quickly. This patch solve the issue: diff -ur hddtemp-0.3-beta15.orig/debian/init hddtemp-0.3-beta15/debian/init --- hddtemp-0.3-beta15.orig/debian/init 2008-02-17 17:52:07.000000000 +0100 +++ hddtemp-0.3-beta15/debian/init 2008-02-17 17:53:04.000000000 +0100 @@ -12,8 +12,8 @@ ### BEGIN INIT INFO # Provides: hddtemp -# Required-Start: $syslog $network -# Required-Stop: $syslog $network +# Required-Start: $remote_fs $syslog $network +# Required-Stop: $remote_fs $syslog $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: disk temperature monitoring daemon Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

