deluge script, update update script

This commit is contained in:
simon987 2020-07-01 14:25:54 -04:00
parent 838381ea89
commit f94be5b7e6
2 changed files with 36 additions and 5 deletions

29
old/deluge_tweak.sh Normal file
View File

@ -0,0 +1,29 @@
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
x=1
ddport=$(grep '"daemon_port": [0-9]*' ~/.config/deluge/core.conf | awk -F ': ' '{print $2}' | awk -F ',' '{print $1}')
while [ $x -le 100 ]
do
sleep 2
echo "Running $x times" >> ~/script.log
echo "TorrentID: $torrentid" >> ~/script.log
line=$(deluge-console "connect 127.0.0.1:$ddport; info" $1 | grep "Tracker status")
echo $line >> ~/script.log
case "$line" in
*unregistered*|*Sent*|*End*of*file*|*Bad*Gateway*)
deluge-console "connect 127.0.0.1:$ddport; pause '$torrentid'"
sleep 2
deluge-console "connect 127.0.0.1:$ddport; resume '$torrentid'"
;;
*)
echo "Found working torrent: $torrentname $torrentpath $torrentid" >> ~/script.log
exit 1;;
esac
x=$(( $x + 1 ))
done

View File

@ -1,5 +1,7 @@
sudo pacman -S archlinux-keyring --noconfirm
sudo pacman-key --init --noconfirm
sudo pacman-key --populate archlinux --noconfirm
sudo pacman-key --refresh-keys --noconfirm
sudo pacman -Syyu --noconfirm
sudo su <<EOF
pacman -S archlinux-keyring
pacman-key --init
pacman-key --populate archlinux
pacman-key --refresh-keys
pacman -Syyu --noconfirm
EOF