mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-04-25 03:15:04 +02:00
fix(twingate-connector): perform real apt upgrade during update flow
The update path used ensure_dependencies, which only installs missing packages and does not upgrade already installed ones. As a result, users could see 'Updated successfully' even when a newer twingate-connector version was available. Switch update_script to a real package update flow: - ensure apt is healthy - refresh apt metadata - install/upgrade twingate-connector via retry helper - restart service This aligns behavior with Twingate's documented upgrade process.
This commit is contained in:
@@ -30,7 +30,12 @@ function update_script() {
|
||||
fi
|
||||
|
||||
msg_info "Updating ${APP}"
|
||||
ensure_dependencies twingate-connector
|
||||
ensure_apt_working || return 100
|
||||
$STD apt update || msg_warn "apt update failed, continuing with cached package lists"
|
||||
install_packages_with_retry twingate-connector || {
|
||||
msg_error "Failed to update ${APP} package"
|
||||
return 100
|
||||
}
|
||||
$STD systemctl restart twingate-connector
|
||||
msg_ok "Updated successfully!"
|
||||
exit
|
||||
|
||||
Reference in New Issue
Block a user