From c866c42a3909feaf43922fcb744db46c70906e43 Mon Sep 17 00:00:00 2001 From: Till JS Date: Mon, 30 Mar 2026 18:42:33 +0200 Subject: [PATCH] fix(startup): add /Users/mana mount to colima start (root cause fix) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The startup script runs `colima delete` on hard shutdown recovery, wiping the colima.yaml mount config. Then `colima start` only added /Volumes/ManaData but forgot /Users/mana — causing all file bind-mounts to appear as empty directories (VirtioFS can't see host files). This was the root cause of Synapse/SearXNG/Alertmanager/Loki crashing after the power outage. Now both mounts are always passed explicitly. Co-Authored-By: Claude Opus 4.6 --- scripts/mac-mini/startup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/mac-mini/startup.sh b/scripts/mac-mini/startup.sh index 8028cd478..24f1c2b7b 100755 --- a/scripts/mac-mini/startup.sh +++ b/scripts/mac-mini/startup.sh @@ -49,6 +49,7 @@ else --vm-type vz \ --vz-rosetta \ --mount-type virtiofs \ + --mount /Users/mana:w \ --mount /Volumes/ManaData:w \ 2>&1 | tee -a "$LOG_FILE"