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
46dd4a7b1c
commit
ef5022a7b7
@ -1,10 +1,16 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
function trap_handler
|
||||||
|
{
|
||||||
|
echo "[info] Shutdown detected... copying config file to /config/qbittorrent"
|
||||||
|
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 "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 "You can edit the conf file at /config/qBittorrent to change qBittorrents settings while docker if offline"
|
echo "[info] You can edit the conf file at /config/qBittorrent to change qBittorrents settings while docker if offline"
|
||||||
yes | cp /home/$USER/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
yes | cp /home/$USER/.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
|
||||||
@ -17,5 +23,8 @@ else
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Starting qBittorrent daemon..."
|
trap trap_handler SIGINT SIGTERM SIGHUP
|
||||||
|
|
||||||
|
echo "[info] Starting qBittorrent daemon..."
|
||||||
/usr/bin/qbittorrent-nox -d
|
/usr/bin/qbittorrent-nox -d
|
||||||
|
wait
|
||||||
|
Loading…
Reference in New Issue
Block a user