I have created a python script. I set in as a daemon.
When I start manually, it works fine :
service testMotor start
it works well ! Cool.
Then I wanted to make it works on startup. I follow the tips given here.
So I used :
update-rc.d testMotor start 99 2 3 4 5 . stop 20 0 1 6
I also tried to move the file in the /etc/rc2.d/K01testMotor to /etc/rc2.d/S99testMotor
But never, never does this daemon start on boot.
What do I do wrong ?
Thanks for any suggestion.