2018-02-03 01:01:28 +00:00
|
|
|
#!/bin/bash
|
2018-02-03 06:17:05 +00:00
|
|
|
set -x
|
2018-02-03 01:01:28 +00:00
|
|
|
|
2018-02-03 06:17:05 +00:00
|
|
|
function trap_handler
|
2018-02-03 07:19:46 +00:00
|
|
|
{
|
|
|
|
echo "[info] Shutdown detected... copying config file to /config/qbittorrent"
|
|
|
|
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
|
|
|
}
|
2018-02-03 03:35:08 +00:00
|
|
|
|
2018-02-03 01:01:28 +00:00
|
|
|
# if config file doesnt exist then copy default config file
|
|
|
|
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
|
2018-02-03 06:03:04 +00:00
|
|
|
echo "[warn] qBittorrent config file does not exist, copying default settings to /config/qbittorrent"
|
|
|
|
echo "[info] You can edit the conf file at /config/qbittorrent to change qBittorrents settings and restart the container"
|
|
|
|
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
2018-02-03 01:42:15 +00:00
|
|
|
chown -R "${PUID}":"${PGID}" /config/qbittorrent
|
|
|
|
chmod -R 775 /config/qbittorrent
|
2018-02-03 01:01:28 +00:00
|
|
|
else
|
2018-02-03 02:22:29 +00:00
|
|
|
echo "qBittorrent config file exists in /config, copying to qbittorrent config directory"
|
2018-02-03 06:03:04 +00:00
|
|
|
yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf
|
|
|
|
chmod 644 /root/.config/qBittorrent/qBittorrent.conf
|
2018-02-03 01:01:28 +00:00
|
|
|
fi
|
|
|
|
|
2018-02-03 07:19:46 +00:00
|
|
|
while true; do
|
|
|
|
if [ -c /dev/net/tun ];
|
|
|
|
exec /bin/bash /etc/qbittorrent/iptables.sh
|
|
|
|
break
|
|
|
|
else
|
2018-02-03 07:20:03 +00:00
|
|
|
sleep 1
|
2018-02-03 07:19:46 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-02-03 03:35:08 +00:00
|
|
|
trap trap_handler SIGINT SIGTERM SIGHUP
|
|
|
|
|
|
|
|
echo "[info] Starting qBittorrent daemon..."
|
2018-02-03 07:19:46 +00:00
|
|
|
/usr/bin/qbittorrent-nox -d &&; wait
|