8 lines
217 B
Plaintext
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
|
|
}
|