mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-01 20:31:19 +00:00
feat(cli): support targeting running containerized openclaw instances (#52651)
Signed-off-by: sallyom <somalley@redhat.com>
This commit is contained in:
@@ -19,6 +19,7 @@ import {
|
||||
type DaemonActionResponse,
|
||||
emitDaemonActionJson,
|
||||
} from "./response.js";
|
||||
import { filterContainerGenericHints } from "./shared.js";
|
||||
|
||||
type DaemonLifecycleOptions = {
|
||||
json?: boolean;
|
||||
@@ -81,7 +82,9 @@ async function handleServiceNotLoaded(params: {
|
||||
json: boolean;
|
||||
emit: ReturnType<typeof createActionIO>["emit"];
|
||||
}) {
|
||||
const hints = await maybeAugmentSystemdHints(params.renderStartHints());
|
||||
const hints = filterContainerGenericHints(
|
||||
await maybeAugmentSystemdHints(params.renderStartHints()),
|
||||
);
|
||||
params.emit({
|
||||
ok: true,
|
||||
result: "not-loaded",
|
||||
|
||||
Reference in New Issue
Block a user