[Michael Meskes] > Although I tell insserv that wd_keepalive should be started before > virtualbox-ose it is not. All other scripts listed in that > X-Start-Before line are correctly run after wd_keepalive, only > virtualbox-ose is not. > > Or which mistake did I make?
The strings used as dependencies is the string listed in the Provides header of the other init.d scripts. My guess is that the virtualbox-ose init.d script provide some other string. A quick look in the init.d script confirm my suspicion: ### BEGIN INIT INFO # Provides: vboxdrv # Required-Start: $remote_fs $network # Required-Stop: $remote_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: VirtualBox Linux kernel module ### END INIT INFO So for this to work, you need to have a relationship on "vboxdrv", not virtualbox-ose. Happy hacking, -- Petter Reinholdtsen -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

