/* BARE_OS_BIN_API 1.0.0 — delegates to booter systemctl-cli when ctx exposes bareOsRunSystemctlCli. */ async function run(ctx, argv) { if (typeof ctx.bareOsRunSystemctlCli === 'function') { await ctx.bareOsRunSystemctlCli(argv) return } ctx.console.error( 'systemctl: ctx.bareOsRunSystemctlCli missing — run under host booter / upgrade ctx API' ) ctx.exitCode = 1 }