Skip to content

Commit

Permalink
Merge pull request #170 from linuxserver/finish-timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad authored Nov 15, 2022
2 parents f943384 + 4bfe79c commit 70f2b4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
2 changes: 1 addition & 1 deletion root/etc/s6-overlay/s6-rc.d/svc-deluged/run
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
1 change: 1 addition & 0 deletions root/etc/s6-overlay/s6-rc.d/svc-deluged/timeout-finish
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10000

0 comments on commit 70f2b4d

Please sign in to comment.