Files
bare-operating-system/packages/bare-os-seeder/kernel/bin/journalctl
T
2026-04-03 18:24:15 -04:00

8 lines
217 B
Plaintext

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