diff --git a/root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run b/root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run index 72757e7..411c1ac 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run @@ -7,6 +7,6 @@ if [[ -f /config/web.conf ]]; then fi exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${DELUGE_WEB_PORT:-8112}" \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGE_WEB_PORT:-8112}" \ s6-setuidgid abc /usr/bin/deluge-web \ -d -c /config --loglevel="${DELUGE_LOGLEVEL}" diff --git a/root/etc/s6-overlay/s6-rc.d/svc-deluged/run b/root/etc/s6-overlay/s6-rc.d/svc-deluged/run index 6eafc8d..9a86822 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-deluged/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-deluged/run @@ -7,6 +7,6 @@ if [[ -f /config/core.conf ]]; then fi exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${DELUGED_PORT:-58846}" \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGED_PORT:-58846}" \ s6-setuidgid abc /usr/bin/deluged -c /config \ -d --loglevel="${DELUGE_LOGLEVEL}" diff --git a/root/etc/s6-overlay/s6-rc.d/svc-deluged/timeout-finish b/root/etc/s6-overlay/s6-rc.d/svc-deluged/timeout-finish new file mode 100644 index 0000000..1746da6 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-deluged/timeout-finish @@ -0,0 +1 @@ +10000 \ No newline at end of file