So i want my service to start on boot. I have created the following file `/etc/init.d/myvpn`: https://gist.github.com/banister/060d03 ... 4df9d1f724
and made it executable
I can start/stop the service correctly using:
Code: Select all
sudo service myvpn start
I then run:
Code: Select all
sudo sysv-rc-conf myvpn on
Code: Select all
/etc/rc5.d/
Code: Select all
/etc/rc5.d/S80myvpn -> ../init.d/myvpn
at this point, it should start at boot right?
however it doesn't.
Can someone tell me what i'm doing wrong?
Note again, the service DOES start fine when i manually go:
Code: Select all
sudo service myvpn start
THanks!