From b46cbe403ba42ed6ed66ae8b9e2139be8f5a032a Mon Sep 17 00:00:00 2001 From: Till JS Date: Mon, 30 Mar 2026 19:12:51 +0200 Subject: [PATCH] fix(startup): remove colima delete --force to prevent image loss on reboot colima delete wipes the entire VM disk on every power cycle, forcing full image rebuilds. colima stop --force is sufficient to clear stale process state after a hard shutdown. Co-Authored-By: Claude Opus 4.6 --- scripts/mac-mini/startup.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/mac-mini/startup.sh b/scripts/mac-mini/startup.sh index 24f1c2b7b..b583e76e5 100755 --- a/scripts/mac-mini/startup.sh +++ b/scripts/mac-mini/startup.sh @@ -37,9 +37,8 @@ if colima status 2>/dev/null | grep -q "running"; then else log "Starting Colima..." - # Clean stale state from hard shutdown + # Clear stale process state from hard shutdown (stop only, never delete — delete wipes all images) colima stop --force 2>/dev/null || true - colima delete --force 2>/dev/null || true sleep 2 colima start \