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 Readarr"
mkdir -p /var/lib/readarr/
chmod 775 /var/lib/readarr/
$STD curl -fJL 'https://readarr.servarr.com/v1/update/develop/updatefile?os=linux&runtime=netcore&arch=x64'
$STD tar -xvzf Readarr.develop.*.tar.gz
cd /var/lib/readarr/
$STD curl -fsSL 'https://readarr.servarr.com/v1/update/develop/updatefile?os=linux&runtime=netcore&arch=x64' -o readarr.tar.gz
$STD tar -xvzf readarr.tar.gz
mv Readarr /opt
chmod 775 /opt/Readarr
msg_ok "Installed Readarr"