2018-02-03 12:37:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
_handler() {
|
|
|
|
echo "[warn] Shutdown detected... cleaning up real quick!" | ts '%Y-%m-%d %H:%M:%.S'
|
|
|
|
# if config directory exists, apply permissions before exiting
|
|
|
|
if [[ -e /config/qBittorrent ]]; then
|
|
|
|
echo "[info] qBittorrent directory exists in /config, applying ownership and permissions before exit" | ts '%Y-%m-%d %H:%M:%.S'
|
|
|
|
chmod -R 755 /config/qBittorrent
|
2018-02-03 14:32:43 +00:00
|
|
|
chown -R $PUID:$PGID /config/qBittorrent
|
2018-02-03 12:37:58 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
trap _handler SIGINT SIGTERM SIGHUP
|
2018-02-03 14:22:26 +00:00
|
|
|
|
2018-02-03 14:30:10 +00:00
|
|
|
if [[ ! -e /config/qBittorrent ]]; then
|
|
|
|
mkdir -p /config/qBittorrent/config/
|
|
|
|
fi
|
|
|
|
|
2018-02-03 14:22:26 +00:00
|
|
|
if [[ ! -e /config/qBittorrent/config/qBittorrent.conf ]]; then
|
|
|
|
yes | cp /etc/qbittorrent/qBittorrent.conf /config/qBittorrent/config/qBittorrent.conf
|
|
|
|
chmod 755 /config/qBittorrent/config/qBittorrent.conf
|
2018-02-03 14:33:17 +00:00
|
|
|
chown -R $PUID:$PGID /config/qBittorrent/config/qBittorrent.conf
|
2018-02-03 14:22:26 +00:00
|
|
|
fi
|
|
|
|
|
2018-02-03 12:37:58 +00:00
|
|
|
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-03 12:45:55 +00:00
|
|
|
/usr/bin/qbittorrent-nox --profile=/config &
|
2018-02-03 12:37:58 +00:00
|
|
|
|
2018-02-03 13:05:08 +00:00
|
|
|
while true; do
|
|
|
|
if [ -e /config/qBittorrent ]; then
|
|
|
|
chmod -R 755 /config/qBittorrent
|
2018-02-03 14:33:17 +00:00
|
|
|
chown -R $PUID:$PGID /config/qBittorrent
|
2018-02-03 13:05:08 +00:00
|
|
|
break
|
|
|
|
else
|
|
|
|
sleep 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-02-03 12:37:58 +00:00
|
|
|
child=$(pgrep -o -x qbittorrent-nox)
|
|
|
|
wait "$child"
|