Skip to content

Commit fbb76a7

Browse files
committed
Fix binary paths
1 parent 5284fc5 commit fbb76a7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • root/etc/s6-overlay/s6-rc.d
    • svc-deluge-web
    • svc-deluged

root/etc/s6-overlay/s6-rc.d/svc-deluge-web/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ fi
1010
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
1111
exec \
1212
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGE_WEB_PORT:-8112}" \
13-
s6-setuidgid abc /usr/bin/deluge-web -d -c /config --loglevel="${DELUGE_LOGLEVEL}"
13+
s6-setuidgid abc /lsiopy/bin/deluge-web -d -c /config --loglevel="${DELUGE_LOGLEVEL}"
1414
else
1515
exec \
1616
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGE_WEB_PORT:-8112}" \
17-
/usr/bin/deluge-web -d -c /config --loglevel="${DELUGE_LOGLEVEL}"
17+
/lsiopy/bin/deluge-web -d -c /config --loglevel="${DELUGE_LOGLEVEL}"
1818
fi

root/etc/s6-overlay/s6-rc.d/svc-deluged/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ fi
1010
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
1111
exec \
1212
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGED_PORT:-58846}" \
13-
s6-setuidgid abc /usr/bin/deluged -c /config -d --loglevel="${DELUGE_LOGLEVEL}"
13+
s6-setuidgid abc /lsiopy/bin/deluged -c /config -d --loglevel="${DELUGE_LOGLEVEL}"
1414
else
1515
exec \
1616
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z 127.0.0.1 ${DELUGED_PORT:-58846}" \
17-
/usr/bin/deluged -c /config -d --loglevel="${DELUGE_LOGLEVEL}"
17+
/lsiopy/bin/deluged -c /config -d --loglevel="${DELUGE_LOGLEVEL}"
1818
fi

0 commit comments

Comments
 (0)