Re: How to autorun at boot a non runit daemon
Reply #2 –
i created two files in /etc/local.d
sudo touch /etc/local.d/preload.start
sudo nano /etc/local.d/preload.start
#!/bin/sh
# Start preload service
sudo /usr/bin/preload &
and the second file
sudo touch /etc/local.d/vpn.start
sudo nano /etc/local.d/vpn.start
#!/bin/sh
# Start Vpn-Unlimited service
sudo /usr/bin/vpn-unlimited-daemon &
but unfortunately, none of them start
can you help me more?