Update start.sh

This commit is contained in:
MarkusMcNugen 2018-02-03 02:19:46 -05:00 committed by GitHub
parent 7d05844a60
commit 2a56a35f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,23 +9,27 @@ function trap_handler
# if config file doesnt exist then copy default config file # if config file doesnt exist then copy default config file
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
echo "[warn] qBittorrent config file does not exist, copying default settings to /config/qbittorrent" echo "[warn] qBittorrent config file does not exist, copying default settings to /config/qbittorrent"
echo "[info] You can edit the conf file at /config/qbittorrent to change qBittorrents settings and restart the container" echo "[info] You can edit the conf file at /config/qbittorrent to change qBittorrents settings and restart the container"
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
chown -R "${PUID}":"${PGID}" /config/qbittorrent chown -R "${PUID}":"${PGID}" /config/qbittorrent
chmod -R 775 /config/qbittorrent chmod -R 775 /config/qbittorrent
else else
echo "qBittorrent config file exists in /config, copying to qbittorrent config directory" echo "qBittorrent config file exists in /config, copying to qbittorrent config directory"
yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf
chmod 644 /root/.config/qBittorrent/qBittorrent.conf chmod 644 /root/.config/qBittorrent/qBittorrent.conf
fi fi
while true; do
if [ -c /dev/net/tun ];
exec /bin/bash /etc/qbittorrent/iptables.sh
break
else
sleep 5
fi
done
trap trap_handler SIGINT SIGTERM SIGHUP trap trap_handler SIGINT SIGTERM SIGHUP
echo "[info] Starting qBittorrent daemon..." echo "[info] Starting qBittorrent daemon..."
/usr/bin/qbittorrent-nox -d /usr/bin/qbittorrent-nox -d &&; wait
wait