From d11df74ecd26da589135d75cb4d09439e40f8e2a Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 24 Feb 2026 10:23:57 -0800 Subject: [PATCH] Add --enable-kernel-install to container start --- src/vm.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vm.ts b/src/vm.ts index bf0c569..07fa03d 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -236,9 +236,9 @@ export async function start(): Promise { export async function ensure(log?: (msg: string) => void): Promise { requireContainer() - // Ensure the container daemon is running - if (DEBUG) await $`container system start`.nothrow() - else await $`container system start`.nothrow().quiet() + // Ensure the container daemon is running (--enable-kernel-install skips interactive prompt) + if (DEBUG) await $`container system start --enable-kernel-install`.nothrow() + else await $`container system start --enable-kernel-install`.nothrow().quiet() const s = await status() if (s === "running") return