mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-23 04:37:14 +02:00
tdarr: make unzip non-interactive to prevent hang on repeat/automated updates (#16648)
This commit is contained in:
committed by
GitHub
parent
df2d700a40
commit
a4542eacb3
+1
-1
@@ -36,7 +36,7 @@ function update_script() {
|
|||||||
cd /opt/tdarr
|
cd /opt/tdarr
|
||||||
RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1)
|
RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1)
|
||||||
curl_with_retry "$RELEASE" "Tdarr_Updater.zip"
|
curl_with_retry "$RELEASE" "Tdarr_Updater.zip"
|
||||||
$STD unzip Tdarr_Updater.zip
|
$STD unzip -o Tdarr_Updater.zip
|
||||||
chmod +x Tdarr_Updater
|
chmod +x Tdarr_Updater
|
||||||
$STD ./Tdarr_Updater
|
$STD ./Tdarr_Updater
|
||||||
rm -rf /opt/tdarr/Tdarr_Updater.zip
|
rm -rf /opt/tdarr/Tdarr_Updater.zip
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ mkdir -p /opt/tdarr
|
|||||||
cd /opt/tdarr
|
cd /opt/tdarr
|
||||||
RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1)
|
RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1)
|
||||||
curl_with_retry "$RELEASE" "Tdarr_Updater.zip"
|
curl_with_retry "$RELEASE" "Tdarr_Updater.zip"
|
||||||
$STD unzip Tdarr_Updater.zip
|
$STD unzip -o Tdarr_Updater.zip
|
||||||
chmod +x Tdarr_Updater
|
chmod +x Tdarr_Updater
|
||||||
$STD ./Tdarr_Updater
|
$STD ./Tdarr_Updater
|
||||||
rm -rf /opt/tdarr/Tdarr_Updater.zip
|
rm -rf /opt/tdarr/Tdarr_Updater.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user