Update start.sh

This commit is contained in:
MarkusMcNugen 2018-02-03 23:44:34 -05:00 committed by GitHub
parent 55120c24fc
commit c127af5bb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,17 +4,16 @@ set -e
_handler() { _handler() {
echo "[warn] Shutdown detected... cleaning up real quick!" | ts '%Y-%m-%d %H:%M:%.S' echo "[warn] Shutdown detected... cleaning up real quick!" | ts '%Y-%m-%d %H:%M:%.S'
# if config directory exists, apply permissions before exiting # 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 chmod -R 755 /config/qBittorrent
chown -R ${PUID}:${PGID} /config/qBittorrent
fi
} }
trap _handler SIGINT SIGTERM SIGHUP trap _handler SIGINT SIGTERM SIGHUP
if [[ ! -e /config/qBittorrent ]]; then if [[ ! -e /config/qBittorrent ]]; then
mkdir -p /config/qBittorrent/config/ mkdir -p /config/qBittorrent/config/
chown -R ${PUID}:${PGID} /config/qBittorrent
else
chown -R ${PUID}:${PGID} /config/qBittorrent
fi fi
if [[ ! -e /config/qBittorrent/config/qBittorrent.conf ]]; then if [[ ! -e /config/qBittorrent/config/qBittorrent.conf ]]; then
@ -26,15 +25,5 @@ fi
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S' echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
/etc/qbittorrent/qbittorrent.init start /etc/qbittorrent/qbittorrent.init start
while true; do
if [ -e /config/qBittorrent ]; then
chmod -R 755 /config/qBittorrent
chown -R ${PUID}:${PGID} /config/qBittorrent
break
else
sleep 1
fi
done
child=$(pgrep -o -x qbittorrent-nox) child=$(pgrep -o -x qbittorrent-nox)
wait "$child" wait "$child"