tags 376780 + patch thanks I checked in unstable, and see there this header in /etc/init.d/atd like this:
#### BEGIN INIT INFO # Provides: atd # Required-Start: $syslog $time $local_fs $remote_fs # Required-Stop: $syslog $time $local_fs $remote_fs # Default-Start: 2 3 4 5 # Default-Stop: S 0 1 6 # Short-Description: Deferred execution scheduler # Description: Debian init script for the atd deferred executions # scheduler ### END INIT INFO As you can see, this is listing 'S' in should-stop (which is a bug), and a few unneeded dependencies are listed. I recommend applying this patch to solve the issues. --- /etc/init.d/atd 2006-01-03 08:15:53.000000000 +0100 +++ /tmp/atd 2007-10-24 11:41:39.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh -e #### BEGIN INIT INFO # Provides: atd -# Required-Start: $syslog $time $local_fs $remote_fs -# Required-Stop: $syslog $time $local_fs $remote_fs +# Required-Start: $syslog $time $remote_fs +# Required-Stop: $syslog $time $remote_fs # Default-Start: 2 3 4 5 -# Default-Stop: S 0 1 6 +# Default-Stop: 0 1 6 # Short-Description: Deferred execution scheduler # Description: Debian init script for the atd deferred executions # scheduler -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]