mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
Fix webui and incoming config
Fixed cat/grep pipe combo to get the line number and replace existing line with correct ports
This commit is contained in:
parent
2740d88eee
commit
3ada3ce5f3
@ -42,13 +42,13 @@ fi
|
|||||||
|
|
||||||
# Set qBittorrent WebUI and Incoming ports
|
# Set qBittorrent WebUI and Incoming ports
|
||||||
if [ ! -z "${WEBUI_PORT}" ]; then
|
if [ ! -z "${WEBUI_PORT}" ]; then
|
||||||
webui_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 "WebUI\Port=${WEBUI_PORT}")
|
webui_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'WebUI\\Port='${WEBUI_PORT})
|
||||||
if [[ -z "${webui_port_exist}" ]]; then
|
if [[ -z "${webui_port_exist}" ]]; then
|
||||||
webui_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'WebUI\Port')
|
webui_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'WebUI\\Port')
|
||||||
if [[ ! -z "${webui_exist}" ]]; then
|
if [[ ! -z "${webui_exist}" ]]; then
|
||||||
# Get line number of WebUI Port
|
# Get line number of WebUI Port
|
||||||
LINE_NUM=$(grep -Fn -m 1 'WebUI\Port' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
LINE_NUM=$(grep -Fn -m 1 'WebUI\Port' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
||||||
sed -i "${LINE_NUM}s@.*@WebUI\\Port=${WEBUI_PORT}\n@" /config/qBittorrent/config/qBittorrent.conf
|
sed -i "${LINE_NUM}s@.*@WebUI\\Port=${WEBUI_PORT}@" /config/qBittorrent/config/qBittorrent.conf
|
||||||
else
|
else
|
||||||
echo "WebUI\Port=${WEBUI_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
echo "WebUI\Port=${WEBUI_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
||||||
fi
|
fi
|
||||||
@ -56,13 +56,13 @@ if [ ! -z "${WEBUI_PORT}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z "${INCOMING_PORT}" ]; then
|
if [ ! -z "${INCOMING_PORT}" ]; then
|
||||||
incoming_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 "Connection\PortRangeMin=${INCOMING_PORT}")
|
incoming_port_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'Connection\\PortRangeMin='${INCOMING_PORT})
|
||||||
if [[ -z "${incoming_port_exist}" ]]; then
|
if [[ -z "${incoming_port_exist}" ]]; then
|
||||||
incoming_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'Connection\PortRangeMin')
|
incoming_exist=$(cat /config/qBittorrent/config/qBittorrent.conf | grep -m 1 'Connection\\PortRangeMin')
|
||||||
if [[ ! -z "${incoming_exist}" ]]; then
|
if [[ ! -z "${incoming_exist}" ]]; then
|
||||||
# Get line number of Incoming
|
# Get line number of Incoming
|
||||||
LINE_NUM=$(grep -Fn -m 1 'Connection\PortRangeMin' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
LINE_NUM=$(grep -Fn -m 1 'Connection\PortRangeMin' /config/qBittorrent/config/qBittorrent.conf | cut -d: -f 1)
|
||||||
sed -i "${LINE_NUM}s@.*@Connection\\PortRangeMin=${INCOMING_PORT}\n@" /config/qBittorrent/config/qBittorrent.conf
|
sed -i "${LINE_NUM}s@.*@Connection\\PortRangeMin=${INCOMING_PORT}@" /config/qBittorrent/config/qBittorrent.conf
|
||||||
else
|
else
|
||||||
echo "Connection\PortRangeMin=${INCOMING_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
echo "Connection\PortRangeMin=${INCOMING_PORT}" >> /config/qBittorrent/config/qBittorrent.conf
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user