From 57b20c70259357cfba6b54be5888437ec8891541 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 4 Mar 2026 21:54:02 -0500 Subject: [PATCH] fix: remove installation checks from update_script function --- ct/localagi.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ct/localagi.sh b/ct/localagi.sh index d540e57f1..843f042cf 100644 --- a/ct/localagi.sh +++ b/ct/localagi.sh @@ -26,15 +26,6 @@ function update_script() { check_container_storage check_container_resources - if [[ ! -d /opt/localagi || ! -f /opt/localagi/LOCALAGI_VERSION.txt ]]; then - msg_error "No ${APP} Installation Found!" - exit 1 - fi - - if ! check_for_gh_release "localagi" "mudler/LocalAGI"; then - exit 0 - fi - msg_info "Stopping LocalAGI Service" systemctl stop localagi msg_ok "Stopped LocalAGI Service"