Compare commits

..

2 Commits

Author SHA1 Message Date
Sam Heinz f328a9ddc3 mark deluge as arm64 unsupported
until rencode dependency has a new released after the one in may 2025 it will not work
2026-06-27 20:14:33 +10:00
Sam Heinz bc94001ff9 fix deluge openssl errors 2026-06-27 20:13:49 +10:00
4 changed files with 10 additions and 11 deletions
-6
View File
@@ -488,12 +488,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-06-27
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- fix command syntax in tunarr.sh [@asylumexp](https://github.com/asylumexp) ([#15434](https://github.com/community-scripts/ProxmoxVE/pull/15434))
### ❔ Uncategorized
- fix(endurain): replace Poetry/uv-pip backend setup with uv sync --frozen --no-dev [@Copilot](https://github.com/Copilot) ([#15429](https://github.com/community-scripts/ProxmoxVE/pull/15429))
+2 -2
View File
@@ -12,7 +12,7 @@ var_ram="${var_ram:-2048}"
var_disk="${var_disk:-4}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-yes}"
var_arm64="${var_arm64:-no}"
var_unprivileged="${var_unprivileged:-1}"
header_info "$APP"
@@ -31,7 +31,7 @@ function update_script() {
msg_info "Updating Deluge"
ensure_dependencies python3-setuptools
$STD apt update
$STD pip3 install deluge[all] --upgrade
$STD pip3 install deluge[all] "pyopenssl<25" --upgrade
msg_ok "Updated Deluge"
msg_ok "Updated successfully!"
exit
+7 -2
View File
@@ -33,12 +33,17 @@ function update_script() {
systemctl stop tunarr
msg_ok "Stopped Service"
create_backup /root/.local/share/tunarr
msg_info "Creating Backup"
if [ -d "/root/.local/share/tunarr" ]; then
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /root/.local/share/tunarr $STD
msg_ok "Backup Created"
else
msg_error "Backup failed: /root/.local/share/tunarr does not exist"
fi
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "tunarr" "chrisbenincasa/tunarr" "prebuild" "latest" "/opt/tunarr" "*linux-$(arch_resolve "x64" "arm64").tar.gz"
cd /opt/tunarr
mv tunarr* tunarr
restore_backup
msg_info "Starting Service"
systemctl start tunarr
+1 -1
View File
@@ -26,7 +26,7 @@ cat >~/.config/pip/pip.conf <<EOF
[global]
break-system-packages = true
EOF
$STD pip install deluge[all]
$STD pip install deluge[all] "pyopenssl<25"
msg_ok "Installed Deluge"
msg_info "Creating Service"