mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
32 lines
858 B
Bash
32 lines
858 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ ! -e /config/qBittorrent ]]; then
|
|
mkdir -p /config/qBittorrent/config/
|
|
chown -R ${PUID}:${PGID} /config/qBittorrent
|
|
else
|
|
chown -R ${PUID}:${PGID} /config/qBittorrent
|
|
fi
|
|
|
|
if [[ ! -e /config/qBittorrent/config/qBittorrent.conf ]]; then
|
|
/bin/cp /etc/qbittorrent/qBittorrent.conf /config/qBittorrent/config/qBittorrent.conf
|
|
chmod 755 /config/qBittorrent/config/qBittorrent.conf
|
|
fi
|
|
|
|
echo "$(date) [info] Starting qBittorrent daemon..."
|
|
/bin/bash /etc/qbittorrent/qbittorrent.init start &
|
|
chmod -R 755 /config/qBittorrent
|
|
|
|
sleep 1
|
|
qbpid=$(pgrep -o -x qbittorrent-nox)
|
|
echo "$(date) [info] qBittorrent PID: $qbpid"
|
|
|
|
if [ -e /proc/$qbpid ]; then
|
|
if [[ -e /config/qBittorrent/data/logs/qbittorrent.log ]]; then
|
|
chmod 775 /config/qBittorrent/data/logs/qbittorrent.log
|
|
fi
|
|
sleep infinity
|
|
else
|
|
echo "qBittorrent failed to start!"
|
|
fi
|