mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-09 17:28:31 +00:00
Deluge openssl fix (#15435)
This commit is contained in:
parent
fb9f5a0047
commit
e1f61aeeb9
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue