Configure qbittorrent with new port

This commit is contained in:
Jeffrey Serio 2025-03-25 22:58:42 -05:00
parent 66aa7dfe54
commit 6dfa5efecc

View File

@ -1,6 +1,11 @@
#!/bin/sh
/usr/local/bin/natpmpc -a 1 0 udp 60 -g 10.2.0.1 | grep "Mapped public port" | awk '{print $4}' | tee /usr/local/etc/natvpn_port.txt
port=$(/usr/local/bin/natpmpc -a 1 0 udp 60 -g 10.2.0.1 | grep "Mapped public port" | awk '{print $4}')
sed -i.bak 's|Session\\Port=[[:digit:]]*|Session\\Port='"${port}"'|g' /var/db/qbittorrent/conf/qBittorrent/config/qBittorrent.conf
killall -HUP qbittorrent-nox
service qbittorrent start
while true; do
date