mirror of
https://github.com/qbittorrent/docker-qbittorrent-nox.git
synced 2024-11-23 09:19:47 +00:00
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
downloadsPath="/downloads"
|
|
profilePath="/config"
|
|
qbtConfigFile="$profilePath/qBittorrent/config/qBittorrent.conf"
|
|
|
|
: "${GUID:=1000}"
|
|
: "${PUID:=1000}"
|
|
sed -i "s|^qbtUser:x:[0-9]*:[0-9]*:|qbtUser:x:$PUID:$GUID:|g" "/etc/passwd"
|
|
sed -i "s|^qbtUser:x:[0-9]*:|qbtUser:x:$GUID:|g" "/etc/group"
|
|
|
|
if [ ! -f "$qbtConfigFile" ]; then
|
|
mkdir -p "$(dirname $qbtConfigFile)"
|
|
cat << EOF > "$qbtConfigFile"
|
|
[BitTorrent]
|
|
Session\DefaultSavePath=/downloads
|
|
Session\Port=6881
|
|
Session\TempPath=/downloads/temp
|
|
|
|
[LegalNotice]
|
|
Accepted=false
|
|
EOF
|
|
|
|
if [ "$QBT_EULA" = "accept" ]; then
|
|
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1true|}}' "$qbtConfigFile"
|
|
else
|
|
sed -i '/^\[LegalNotice\]$/{$!{N;s|\(\[LegalNotice\]\nAccepted=\).*|\1false|}}' "$qbtConfigFile"
|
|
fi
|
|
fi
|
|
|
|
# those are owned by root by default
|
|
# don't change existing files owner in `$downloadsPath`
|
|
chown qbtUser:qbtUser "$downloadsPath"
|
|
chown qbtUser:qbtUser -R "$profilePath"
|
|
|
|
doas -u qbtUser \
|
|
qbittorrent-nox \
|
|
--profile="$profilePath" \
|
|
--webui-port="$QBT_WEBUI_PORT" \
|
|
"$@"
|