mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
Trying to add qbittorrent folder
This commit is contained in:
parent
8181782cda
commit
e541e124b4
19
qbittorrent/start.sh
Normal file
19
qbittorrent/start.sh
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# if config file doesnt exist then copy default config file
|
||||||
|
if [[ ! -f /config/qbittorrent/qBittorrent.conf ]]; then
|
||||||
|
|
||||||
|
echo "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"
|
||||||
|
cp /home/$USER/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
echo "qBittorrent config file exists, copying to config directory"
|
||||||
|
cp /config/qbittorrent/qBittorrent.conf /home/$USER/.config/qBittorrent/qBittorrent.conf
|
||||||
|
chmod 644 /home/$USER/.config/qBittorrent/qBittorrent.conf
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Starting qBittorrent daemon..."
|
||||||
|
/usr/bin/qbittorrent-nox -d
|
14
qbittorrent/stop.sh
Normal file
14
qbittorrent/stop.sh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
function trap_handler
|
||||||
|
{
|
||||||
|
echo "Shutdown detected... copying config file to /config/qbittorrent"
|
||||||
|
cp /home/$USER/.config/qBittorrent/qBittorrent.conf /config/qbittorrent/qBittorrent.conf
|
||||||
|
}
|
||||||
|
|
||||||
|
trap trap_handler SIGINT SIGTERM SIGHUP
|
||||||
|
|
||||||
|
while true
|
||||||
|
do
|
||||||
|
sleep 60
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user