|
|
@ -1,57 +1,26 @@
|
|
|
|
#!/bin/bash
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
# kill qbittorrent (required due to the fact qbittorrent cannot cope with dynamic changes to port)
|
|
|
|
# change incoming port using the qbittorrent api - note this requires anonymous authentication via webui
|
|
|
|
|
|
|
|
# option 'Bypass authentication for clients on localhost'
|
|
|
|
if [[ "${qbittorrent_running}" == "true" ]]; then
|
|
|
|
if [[ "${qbittorrent_running}" == "true" ]]; then
|
|
|
|
|
|
|
|
|
|
|
|
# note its not currently possible to change port and/or ip address whilst running, thus the sigterm
|
|
|
|
if [[ "${VPN_PROV}" == "pia" && -n "${VPN_INCOMING_PORT}" ]]; then
|
|
|
|
echo "[info] Sending SIGTERM (-15) to 'qbittorrent-nox' (will terminate qbittorrent) due to port/ip change..."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# SIGTERM used here as SIGINT does not kill the process
|
|
|
|
|
|
|
|
pkill -SIGTERM "qbittorrent-nox"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# make sure 'qbittorrent-nox' process DOESNT exist before re-starting
|
|
|
|
|
|
|
|
while pgrep -x "qbittorrent-nox" &> /dev/null
|
|
|
|
|
|
|
|
do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sleep 0.5s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
done
|
|
|
|
curl -i -X POST -d "json=%7B%22listen_port%22%3A${VPN_INCOMING_PORT}%7D" "http://localhost:${WEBUI_PORT}/command/setPreferences"
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
echo "[info] Removing session lock file (if it exists)..."
|
|
|
|
echo "[info] Removing session lock file (if it exists)..."
|
|
|
|
rm -f /config/qBittorrent/data/BT_backup/session.lock
|
|
|
|
rm -f /config/qBittorrent/data/BT_backup/session.lock
|
|
|
|
|
|
|
|
|
|
|
|
echo "[info] Attempting to start qBittorrent..."
|
|
|
|
echo "[info] Attempting to start qBittorrent..."
|
|
|
|
|
|
|
|
|
|
|
|
if [[ "${VPN_ENABLED}" == "yes" ]]; then
|
|
|
|
# run qBittorrent (daemonized, non-blocking) - note qbittorrent requires docker privileged flag
|
|
|
|
|
|
|
|
|
|
|
|
if [[ "${VPN_PROV}" == "pia" && -n "${VPN_INCOMING_PORT}" ]]; then
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# run qBittorrent (daemonized, non-blocking), specifying listening interface and port
|
|
|
|
|
|
|
|
/usr/bin/qbittorrent-nox --daemon --webui-port="${WEBUI_PORT}" --profile=/config --relative-fastresume
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# set qbittorrent port to current vpn port (used when checking for changes on next run)
|
|
|
|
|
|
|
|
qbittorrent_port="${VPN_INCOMING_PORT}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# run qBittorrent (daemonized, non-blocking), specifying listening interface
|
|
|
|
|
|
|
|
/usr/bin/qbittorrent-nox --daemon --webui-port="${WEBUI_PORT}" --profile=/config --relative-fastresume
|
|
|
|
/usr/bin/qbittorrent-nox --daemon --webui-port="${WEBUI_PORT}" --profile=/config --relative-fastresume
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
# make sure process qbittorrent-nox DOES exist
|
|
|
|
|
|
|
|
|
|
|
|
# set qbittorrent ip to current vpn ip (used when checking for changes on next run)
|
|
|
|
|
|
|
|
qbittorrent_ip="${vpn_ip}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# run tmux attached to qBittorrent (daemonized, non-blocking)
|
|
|
|
|
|
|
|
/usr/bin/qbittorrent-nox --daemon --webui-port="${WEBUI_PORT}" --profile=/config --relative-fastresume
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# make sure process qbittorrent DOES exist
|
|
|
|
|
|
|
|
retry_count=30
|
|
|
|
retry_count=30
|
|
|
|
while true; do
|
|
|
|
while true; do
|
|
|
|
|
|
|
|
|
|
|
@ -88,4 +57,12 @@ while [[ $(netstat -lnt | awk "\$6 == \"LISTEN\" && \$4 ~ \".${WEBUI_PORT}\"") =
|
|
|
|
sleep 0.1
|
|
|
|
sleep 0.1
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
echo "[info] qBittorrent process listening"
|
|
|
|
# change incoming port using the qbittorrent api - note this requires anonymous authentication via webui
|
|
|
|
|
|
|
|
# option 'Bypass authentication for clients on localhost'
|
|
|
|
|
|
|
|
if [[ "${VPN_PROV}" == "pia" && -n "${VPN_INCOMING_PORT}" ]]; then
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
curl -i -X POST -d "json=%7B%22listen_port%22%3A${VPN_INCOMING_PORT}%7D" "http://localhost:${WEBUI_PORT}/command/setPreferences"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|