Files
bare-operating-system/kernel/bin/systemctl
T
2026-04-03 20:33:24 -04:00

9 lines
304 B
Plaintext

/* BARE_OS_BIN_API 1.0.0 — stub; booter delegates to systemctl-cli (kernel-runner). */
/** Booter delegates systemctl to systemctl-cli.js (kernel-runner). */
async function run(ctx, argv) {
ctx.console.error(
'systemctl: not executed in host booter (delegation missing)'
)
ctx.exitCode = 1
}