switch arr lxc's (lidarr,-prowlarr,-radarr,-readarr,-whisparr) to curl -fsSL (#3554)

* switch

* fix sonarr double escaped

* fix 3 other double escaped
This commit is contained in:
CanbiZ
2025-04-01 12:05:32 +02:00
committed by GitHub
parent 508a771b67
commit 1096662d81
9 changed files with 21 additions and 16 deletions

View File

@@ -20,8 +20,9 @@ msg_ok "Installed Dependencies"
msg_info "Installing Radarr"
mkdir -p /var/lib/radarr/
chmod 775 /var/lib/radarr/
$STD curl -fJL 'https://radarr.servarr.com/v1/update/master/updatefile?os=linux&runtime=netcore&arch=x64'
$STD tar -xvzf Radarr.master.*.tar.gz
cd /var/lib/radarr/
$STD curl -fsSL 'https://radarr.servarr.com/v1/update/master/updatefile?os=linux&runtime=netcore&arch=x64' -o radarr.tar.gz
$STD tar -xvzf radarr.tar.gz
mv Radarr /opt
chmod 775 /opt/Radarr
msg_ok "Installed Radarr"