docker-qBittorrentvpn/qbittorrent/start.sh

27 lines
1.2 KiB
Bash
Raw Normal View History

2018-02-03 01:01:28 +00:00
#!/bin/bash
2018-02-03 06:17:05 +00:00
set -x
2018-02-03 01:01:28 +00:00
2018-02-03 06:17:05 +00:00
function trap_handler
2018-02-03 07:19:46 +00:00
{
2018-02-03 07:31:56 +00:00
echo "[info] Shutdown detected... copying config file to /config/qbittorrent" | ts '%Y-%m-%d %H:%M:%.S'
2018-02-03 07:19:46 +00:00
yes | cp /root/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
}
2018-02-03 03:35:08 +00:00
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 07:31:56 +00:00
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" | ts '%Y-%m-%d %H:%M:%.S'
2018-02-03 06:03:04 +00:00
yes | cp /root/.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 07:31:56 +00:00
echo "qBittorrent config file exists in /config, copying to qbittorrent config directory" | ts '%Y-%m-%d %H:%M:%.S'
2018-02-03 06:03:04 +00:00
yes | cp /config/qbittorrent/qBittorrent.conf /root/.config/qBittorrent/qBittorrent.conf
chmod 644 /root/.config/qBittorrent/qBittorrent.conf
2018-02-03 01:01:28 +00:00
fi
2018-02-03 03:35:08 +00:00
trap trap_handler SIGINT SIGTERM SIGHUP
2018-02-03 07:31:56 +00:00
echo "[info] Starting qBittorrent daemon..." | ts '%Y-%m-%d %H:%M:%.S'
2018-02-03 07:53:49 +00:00
/usr/bin/qbittorrent-nox -d && wait