2018-02-03 12:37:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2018-02-03 14:30:10 +00:00
|
|
|
if [[ ! -e /config/qBittorrent ]]; then
|
|
|
|
mkdir -p /config/qBittorrent/config/
|
2018-02-04 04:44:34 +00:00
|
|
|
chown -R ${PUID}:${PGID} /config/qBittorrent
|
|
|
|
else
|
|
|
|
chown -R ${PUID}:${PGID} /config/qBittorrent
|
2018-02-03 14:30:10 +00:00
|
|
|
fi
|
|
|
|
|
2018-02-03 14:22:26 +00:00
|
|
|
if [[ ! -e /config/qBittorrent/config/qBittorrent.conf ]]; then
|
2018-02-03 14:35:04 +00:00
|
|
|
/bin/cp /etc/qbittorrent/qBittorrent.conf /config/qBittorrent/config/qBittorrent.conf
|
2018-02-03 14:22:26 +00:00
|
|
|
chmod 755 /config/qBittorrent/config/qBittorrent.conf
|
|
|
|
fi
|
|
|
|
|
2018-02-03 12:37:58 +00:00
|
|
|
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-05 02:18:03 +00:00
|
|
|
/bin/bash /etc/qbittorrent/qbittorrent.init start &
|
2018-02-05 01:45:11 +00:00
|
|
|
chmod -R 755 /config/qBittorrent
|
2018-02-03 12:37:58 +00:00
|
|
|
|
2018-02-05 01:58:26 +00:00
|
|
|
sleep 1
|
2018-02-04 04:01:11 +00:00
|
|
|
child=$(pgrep -o -x qbittorrent-nox)
|
2018-02-05 01:54:20 +00:00
|
|
|
echo "[info] qBittorrent PID: $child" | ts '%Y-%m-%d %H:%M:%.S'
|
2018-02-05 01:40:32 +00:00
|
|
|
|
2018-02-05 01:54:20 +00:00
|
|
|
if [ -e /proc/$child ]; then
|
|
|
|
sleep infinity
|
|
|
|
else
|
|
|
|
echo "qBittorrent failed to start!"
|
|
|
|
fi
|