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() {
|
2018-02-03 12:29:02 +00:00
|
|
|
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
|
|
|
|
chown -R 99:100 /config/qBittorrent
|
|
|
|
fi
|
2018-02-03 10:18:10 +00:00
|
|
|
}
|
2018-02-03 09:49:58 +00:00
|
|
|
|
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 12:29:02 +00:00
|
|
|
/usr/bin/qbittorrent-nox =-profile=/config &
|
2018-02-03 10:18:10 +00:00
|
|
|
|
|
|
|
child=$(pgrep -o -x qbittorrent-nox)
|
|
|
|
wait "$child"
|