mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
Update start.sh
This commit is contained in:
parent
34828666a0
commit
acd84665ea
@ -1,24 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
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
|
|
||||||
qbpid=$(pgrep -o -x qbittorrent-nox)
|
|
||||||
if [[ ! -z $qbpid ]]; then
|
|
||||||
echo "[warn] qBittorrent still running... shutting down now" | ts '%Y-%m-%d %H:%M:%.S'
|
|
||||||
kill -9 $qbpid
|
|
||||||
fi
|
|
||||||
|
|
||||||
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 $PUID:$PGID /config/qBittorrent
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
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
|
chown -R ${PUID}:${PGID} /config/qBittorrent
|
||||||
@ -36,12 +18,11 @@ echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
|||||||
chmod -R 755 /config/qBittorrent
|
chmod -R 755 /config/qBittorrent
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
|
qbpid=$(pgrep -o -x qbittorrent-nox)
|
||||||
|
echo "[info] qBittorrent PID: $qbpid" | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
|
|
||||||
echo "[info] qBittorrent PID: $child" | ts '%Y-%m-%d %H:%M:%.S'
|
if [ -e /proc/$qbpid ]; then
|
||||||
|
sleep infinity
|
||||||
if [ -e /proc/$child ]; then
|
|
||||||
this=$(echo $$)
|
|
||||||
wait "$this"
|
|
||||||
else
|
else
|
||||||
echo "qBittorrent failed to start!" || exit 2
|
echo "qBittorrent failed to start!"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user