mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
78 lines
2.7 KiB
Bash
78 lines
2.7 KiB
Bash
#!/bin/bash
|
|
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
|
|
|
|
## Check for missing group
|
|
/bin/egrep -i "^${PGID}:" /etc/passwd
|
|
if [ $? -eq 0 ]; then
|
|
echo "Group $PGID exists"
|
|
else
|
|
echo "Adding $PGID group"
|
|
groupadd -g $PGID qbittorent
|
|
fi
|
|
|
|
## Check for missing userid
|
|
/bin/egrep -i "^${PUID}:" /etc/passwd
|
|
if [ $? -eq 0 ]; then
|
|
echo "User $PUID exists in /etc/passwd"
|
|
else
|
|
echo "Adding $PUID user"
|
|
useradd -c "qbittorent user" -g $PGID -u $PUID qbittorent
|
|
fi
|
|
|
|
|
|
# Set qBittorrent WebUI and Incoming ports
|
|
if [ ! -z "${WEBUI_PORT}" ]; then
|
|
webui_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 "WebUI\Port=${WEBUI_PORT}")
|
|
if [[ -z "${webui_port_exist}" ]]; then
|
|
webui_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'WebUI\Port')
|
|
if [[ ! -z "${webui_exist}" ]]; then
|
|
# Get line number of WebUI Port
|
|
LINE_NUM=$(grep -Fn -m 1 'WebUI\Port' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
|
sed -i "${LINE_NUM}s@.*@WebUI\Port=${WEBUI_PORT}\n@" /config/qBittorrent/config/qBittorrent.conf
|
|
else
|
|
echo "WebUI\Port=${WEBUI_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ ! -z "${INCOMING_PORT}" ]; then
|
|
incoming_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 "Connection\PortRangeMin=${INCOMING_PORT}")
|
|
if [[ -z "${incoming_port_exist}" ]]; then
|
|
incoming_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'Connection\PortRangeMin')
|
|
if [[ ! -z "${incoming_exist}" ]]; then
|
|
# Get line number of Incoming
|
|
LINE_NUM=$(grep -Fn -m 1 'Connection\PortRangeMin' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
|
sed -i "${LINE_NUM}s@.*@Connection\PortRangeMin=${INCOMING_PORT}\n@" /config/qBittorrent/config/qBittorrent.conf
|
|
else
|
|
echo "Connection\PortRangeMin=${INCOMING_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
|
/bin/bash /etc/qbittorrent/qbittorrent.init start &
|
|
chmod -R 755 /config/qBittorrent
|
|
|
|
sleep 1
|
|
qbpid=$(pgrep -o -x qbittorrent-nox)
|
|
echo "[info] qBittorrent PID: $qbpid" | ts '%Y-%m-%d %H:%M:%.S'
|
|
|
|
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
|