31 lines
1.1 KiB
Bash
Raw Normal View History

2018-02-02 20:01:28 -05:00
#!/bin/bash
2018-02-02 22:35:08 -05: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-02 20:01:28 -05:00
# if config file doesnt exist then copy default config file
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
2018-02-02 22:35:08 -05: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-02 21:22:29 -05:00
yes | cp /home/$USER/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
2018-02-02 20:42:15 -05:00
chown -R "${PUID}":"${PGID}" /config/qbittorrent
chmod -R 775 /config/qbittorrent
2018-02-02 20:01:28 -05:00
else
2018-02-02 21:22:29 -05: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-02 20:01:28 -05:00
chmod 644 /home/$USER/.config/qBittorrent/qBittorrent.conf
fi
2018-02-02 22:35:08 -05:00
trap trap_handler SIGINT SIGTERM SIGHUP
echo "[info] Starting qBittorrent daemon..."
2018-02-02 20:01:28 -05:00
/usr/bin/qbittorrent-nox -d
2018-02-02 22:35:08 -05:00
wait