docker-qBittorrentvpn/qbittorrent/start.sh

31 lines
1.1 KiB
Bash
Raw Normal View History

2018-02-03 01:01:28 +00:00
#!/bin/bash
2018-02-03 03:35:08 +00:00
function trap_handler
{
echo "[info] Shutdown detected... copying config file to /config/qbittorrent"
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
}
2018-02-03 01:01:28 +00:00
# if config file doesnt exist then copy default config file
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
2018-02-03 03:35:08 +00:00
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 while docker if offline"
2018-02-03 02:22:29 +00:00
yes | cp /home/$USER/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
2018-02-03 01:42:15 +00:00
chown -R "${PUID}":"${PGID}" /config/qbittorrent
chmod -R 775 /config/qbittorrent
2018-02-03 01:01:28 +00:00
else
2018-02-03 02:22:29 +00:00
echo "qBittorrent config file exists in /config, copying to qbittorrent config directory"
yes | cp /config/qbittorrent/qBittorrent.conf /home/$USER/.config/qBittorrent/qBittorrent.conf
2018-02-03 01:01:28 +00:00
chmod 644 /home/$USER/.config/qBittorrent/qBittorrent.conf
fi
2018-02-03 03:35:08 +00:00
trap trap_handler SIGINT SIGTERM SIGHUP
echo "[info] Starting qBittorrent daemon..."
2018-02-03 01:01:28 +00:00
/usr/bin/qbittorrent-nox -d
2018-02-03 03:35:08 +00:00
wait