mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 01:06:03 +03:00
Fix Docker legal notice when using existing config
If the user is using a pre-existing config, don't update the legal notice. PR #16974.
This commit is contained in:
parent
e9d3928fe0
commit
48fa4e116c
1 changed files with 5 additions and 5 deletions
10
dist/docker/entrypoint.sh
vendored
10
dist/docker/entrypoint.sh
vendored
|
@ -10,12 +10,12 @@ Session\TempPath=/downloads/temp
|
|||
[LegalNotice]
|
||||
Accepted=false
|
||||
EOF
|
||||
fi
|
||||
|
||||
if [ "$LEGAL" = "accept" ] ; then
|
||||
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1true|}}' /config/qBittorrent/qBittorrent.conf
|
||||
else
|
||||
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1false|}}' /config/qBittorrent/qBittorrent.conf
|
||||
if [ "$LEGAL" = "accept" ] ; then
|
||||
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1true|}}' /config/qBittorrent/qBittorrent.conf
|
||||
else
|
||||
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1false|}}' /config/qBittorrent/qBittorrent.conf
|
||||
fi
|
||||
fi
|
||||
|
||||
HOME="/config" XDG_CONFIG_HOME="/config" XDG_DATA_HOME="/data" qbittorrent-nox --webui-port=$WEBUI_PORT
|
||||
|
|
Loading…
Reference in a new issue