[Rogério Brito] > I am fixing the code in my (upstream) repository, will release a new > version of the program (with some extra changes) and will upload a > new package soon.
Are you sure the script should not start from runlevels 3-5 and stop in runlevel 1? The current header have a strange runlevel list: ### BEGIN INIT INFO # Provides: avr-evtd # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 # Default-Stop: 0 6 # Short-Description: Linkstation/Kurobox AVR watchdog daemon ### END INIT INFO Without runlevel 1 listed in default-stop, the script will not start the service again when switching from runlevel 1 to 2. (killprocs will kill any daemon when switching to runlevel 1. Also, in Debian, the runlevels 2-5 are supposed to work the same way, and with the current setup, the script will not start when booting into runlevels 3-5. A more common setup is this runlevel configuration: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 I just wanted to verify again that you actually intend the strange runlevel setup, and that it isn't a mistake. Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

