This is what I have tried yet, without success:
1) crontab entry with @reboot and the script below --> neither deluged, nor deluge-web start
2) changed /etc/default/deluged, so it would read ENABLE_DELUGED=0 --> probably would just start deluged, but doesn't.
3) changed /etc/rc.local, so it would start the script bellow --> nothing.
How can I do it? Thanks!
This is the script I am using to start deluged and deluge-web manually:
Code: Select all
#!/bin/bash
echo
echo $(date +%F\ %X) Waiting for network...
echo
until ping -c 1 -W 1 8.8.8.8; do sleep 1; done
echo
echo $(date +%F\ %X) starting Deluge...
echo
nohup deluged -L debug -l /var/log/deluged/deluged.log
nohup deluge-web -L debug -l /var/log/deluged/deluge-web.log