docker-qBittorrentvpn/qbittorrent/stop.sh

15 lines
294 B
Bash
Raw Normal View History

2018-02-03 01:01:28 +00:00
#!/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