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
4fe8ddd7f6
commit
912fc6b739
@ -3,24 +3,24 @@ set -x
|
|||||||
|
|
||||||
function trap_handler
|
function trap_handler
|
||||||
{
|
{
|
||||||
echo "[info] Shutdown detected... copying config file to /config/qbittorrent"
|
echo "[info] Shutdown detected... copying config file to /config/qbittorrent" | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
||||||
}
|
}
|
||||||
|
|
||||||
# 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" | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
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" | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
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" | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
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
|
||||||
|
|
||||||
trap trap_handler SIGINT SIGTERM SIGHUP
|
trap trap_handler SIGINT SIGTERM SIGHUP
|
||||||
|
|
||||||
echo "[info] Starting qBittorrent daemon..."
|
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
|
||||||
/usr/bin/qbittorrent-nox -d &&
|
/usr/bin/qbittorrent-nox -d &&
|
||||||
|
Loading…
Reference in New Issue
Block a user