2018-02-03 09:49:58 +00:00
|
|
|
#!/bin/bash
|
2018-02-03 10:08:19 +00:00
|
|
|
set -e
|
2018-02-03 09:49:58 +00:00
|
|
|
|
2018-02-03 10:18:10 +00:00
|
|
|
_handler() {
|
|
|
|
echo "[info] Shutdown detected... copying config file to /config/qbittorrent" | ts '%Y-%m-%d %H:%M:%.S'
|
|
|
|
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
|
|
|
}
|
2018-02-03 09:49:58 +00:00
|
|
|
|
2018-02-03 09:56:01 +00:00
|
|
|
# Make qbittorrent config directory
|
|
|
|
mkdir -p /config/qbittorrent
|
|
|
|
|
2018-02-03 09:49:58 +00:00
|
|
|
# if config file doesnt exist then copy default config file
|
|
|
|
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
|
|
|
|
echo "[warn] qBittorrent config file does not exist, copying default settings to /config/qbittorrent" | ts '%Y-%m-%d %H:%M:%.S'
|
|
|
|
echo "[info] You can edit the conf file at /config/qbittorrent to change qBittorrents settings and restart the container" | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-03 09:56:01 +00:00
|
|
|
yes | cp /etc/qbittorrent/default/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
2018-02-03 10:05:35 +00:00
|
|
|
yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf
|
2018-02-03 09:49:58 +00:00
|
|
|
chown -R "${PUID}":"${PGID}" /config/qbittorrent
|
|
|
|
chmod -R 775 /config/qbittorrent
|
2018-02-03 10:05:35 +00:00
|
|
|
chmod 644 /root/.config/qBittorrent/qBittorrent.conf
|
2018-02-03 09:56:01 +00:00
|
|
|
# Else create directories and copy conf from config volume
|
2018-02-03 09:49:58 +00:00
|
|
|
else
|
|
|
|
echo "qBittorrent config file exists in /config, copying to qbittorrent config directory" | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-03 09:56:01 +00:00
|
|
|
mkdir -p /root/.config/qBittorrent/
|
2018-02-03 09:49:58 +00:00
|
|
|
yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf
|
|
|
|
chmod 644 /root/.config/qBittorrent/qBittorrent.conf
|
|
|
|
fi
|
|
|
|
|
2018-02-03 10:19:56 +00:00
|
|
|
trap _handler SIGINT SIGTERM SIGHUP
|
2018-02-03 09:49:58 +00:00
|
|
|
|
|
|
|
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-03 10:18:10 +00:00
|
|
|
/usr/bin/qbittorrent-nox &
|
|
|
|
|
|
|
|
child=$(pgrep -o -x qbittorrent-nox)
|
|
|
|
wait "$child"
|