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 411c1ac..72757e7 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 127.0.0.1 ${DELUGE_WEB_PORT:-8112}" \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${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 b0ba3b7..a75a6b2 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-deluged/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-deluged/run @@ -16,6 +16,6 @@ if [[ -f /config/core.conf ]]; then fi exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGED_PORT:-58846}" \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${DELUGED_PORT:-58846}" \ s6-setuidgid abc /usr/bin/deluged -c /config \ -d --loglevel="${DELUGE_LOGLEVEL}"