diff --git a/scripts/install-debros-network.sh b/scripts/install-debros-network.sh index 825cf48..8b4ce0a 100755 --- a/scripts/install-debros-network.sh +++ b/scripts/install-debros-network.sh @@ -744,7 +744,13 @@ main() { detect_os check_existing_installation - check_ports + + # Skip port check in update mode since services are already running + if [ "$UPDATE_MODE" != true ]; then + check_ports + else + log "Update mode: skipping port availability check" + fi # Check and install Go if needed if ! check_go_installation; then