惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(daemon): detect system-scope systemd gateway units on...
yetval · 2026-06-01 · via Recent Commits to openclaw:main

@@ -54,6 +54,15 @@ const isRestartEnabled = vi.fn<(config?: { commands?: unknown }) => boolean>(()

5454

const loadConfig = vi.hoisted(() => vi.fn(() => ({})));

5555

const recoverInstalledLaunchAgent = vi.hoisted(() => vi.fn());

5656

const repairLoadedGatewayServiceForStart = vi.hoisted(() => vi.fn());

57+

const findInstalledSystemdGatewayScope = vi.hoisted(() =>

58+

vi.fn<() => Promise<{ scope: "user" | "system"; unitName: string; unitPath: string } | null>>(

59+

async () => null,

60+

),

61+

);

62+

const restartSystemdService = vi.hoisted(() =>

63+

vi.fn<() => Promise<{ outcome: "completed" }>>(async () => ({ outcome: "completed" })),

64+

);

65+

const stopSystemdService = vi.hoisted(() => vi.fn<() => Promise<void>>(async () => {}));

57665867

function requireMockCallArg(

5968

mockFn: { mock: { calls: unknown[][] } },

@@ -113,6 +122,12 @@ vi.mock("../../daemon/service.js", () => ({

113122

resolveGatewayService: () => service,

114123

}));

115124125+

vi.mock("../../daemon/systemd.js", () => ({

126+

findInstalledSystemdGatewayScope: () => findInstalledSystemdGatewayScope(),

127+

restartSystemdService: () => restartSystemdService(),

128+

stopSystemdService: () => stopSystemdService(),

129+

}));

130+116131

vi.mock("./launchd-recovery.js", () => ({

117132

recoverInstalledLaunchAgent: (args: { result: "started" | "restarted" }) =>

118133

recoverInstalledLaunchAgent(args),

@@ -208,6 +223,12 @@ describe("runDaemonRestart health checks", () => {

208223

service.restart.mockResolvedValue({ outcome: "completed" });

209224

runServiceStart.mockResolvedValue(undefined);

210225

recoverInstalledLaunchAgent.mockResolvedValue(null);

226+

findInstalledSystemdGatewayScope.mockReset();

227+

findInstalledSystemdGatewayScope.mockResolvedValue(null);

228+

restartSystemdService.mockReset();

229+

restartSystemdService.mockResolvedValue({ outcome: "completed" });

230+

stopSystemdService.mockReset();

231+

stopSystemdService.mockResolvedValue(undefined);

211232212233

runServiceRestart.mockImplementation(async (params: RestartParams) => {

213234

const fail = (message: string, hints?: string[]) => {

@@ -607,6 +628,89 @@ describe("runDaemonRestart health checks", () => {

607628

);

608629

});

609630631+

it("delegates system-scope restart to systemctl without unmanaged signaling when root (openclaw#87577)", async () => {

632+

vi.spyOn(process, "platform", "get").mockReturnValue("linux");

633+

findInstalledSystemdGatewayScope.mockResolvedValue({

634+

scope: "system",

635+

unitName: "openclaw.service",

636+

unitPath: "/etc/systemd/system/openclaw.service",

637+

});

638+

restartSystemdService.mockResolvedValue({ outcome: "completed" });

639+

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([4200]);

640+

mockUnmanagedRestart();

641+642+

await expect(runDaemonRestart({ json: true })).resolves.toBe(true);

643+644+

expect(restartSystemdService).toHaveBeenCalled();

645+

expect(signalVerifiedGatewayPidSync).not.toHaveBeenCalled();

646+

expect(probeGateway).not.toHaveBeenCalled();

647+

});

648+649+

it("surfaces systemd sudo guidance and never signals when restarting a system-scope unit as non-root (openclaw#87577)", async () => {

650+

vi.spyOn(process, "platform", "get").mockReturnValue("linux");

651+

findInstalledSystemdGatewayScope.mockResolvedValue({

652+

scope: "system",

653+

unitName: "openclaw.service",

654+

unitPath: "/etc/systemd/system/openclaw.service",

655+

});

656+

restartSystemdService.mockRejectedValue(

657+

new Error(

658+

"openclaw.service is a system-scope unit (/etc/systemd/system/openclaw.service); run `sudo systemctl restart openclaw.service` to restart it",

659+

),

660+

);

661+

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([4200]);

662+

mockUnmanagedRestart();

663+664+

await expect(runDaemonRestart({ json: true })).rejects.toThrow(

665+

/sudo systemctl restart openclaw\.service/,

666+

);

667+668+

expect(signalVerifiedGatewayPidSync).not.toHaveBeenCalled();

669+

expect(probeGateway).not.toHaveBeenCalled();

670+

});

671+672+

it("delegates system-scope stop to systemctl without unmanaged signaling when root (openclaw#87577)", async () => {

673+

vi.spyOn(process, "platform", "get").mockReturnValue("linux");

674+

findInstalledSystemdGatewayScope.mockResolvedValue({

675+

scope: "system",

676+

unitName: "openclaw-gateway.service",

677+

unitPath: "/etc/systemd/system/openclaw-gateway.service",

678+

});

679+

stopSystemdService.mockResolvedValue(undefined);

680+

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([4200]);

681+

runServiceStop.mockImplementation(async (params: { onNotLoaded?: () => Promise<unknown> }) => {

682+

await params.onNotLoaded?.();

683+

});

684+685+

await expect(runDaemonStop({ json: true })).resolves.toBeUndefined();

686+

expect(stopSystemdService).toHaveBeenCalled();

687+

expect(signalVerifiedGatewayPidSync).not.toHaveBeenCalled();

688+

});

689+690+

it("surfaces systemd sudo guidance and never signals when stopping a system-scope unit as non-root (openclaw#87577)", async () => {

691+

vi.spyOn(process, "platform", "get").mockReturnValue("linux");

692+

findInstalledSystemdGatewayScope.mockResolvedValue({

693+

scope: "system",

694+

unitName: "openclaw-gateway.service",

695+

unitPath: "/etc/systemd/system/openclaw-gateway.service",

696+

});

697+

stopSystemdService.mockRejectedValue(

698+

new Error(

699+

"openclaw-gateway.service is a system-scope unit (/etc/systemd/system/openclaw-gateway.service); run `sudo systemctl stop openclaw-gateway.service` to stop it",

700+

),

701+

);

702+

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([4200]);

703+

runServiceStop.mockImplementation(async (params: { onNotLoaded?: () => Promise<unknown> }) => {

704+

await params.onNotLoaded?.();

705+

});

706+707+

await expect(runDaemonStop({ json: true })).rejects.toThrow(

708+

/sudo systemctl stop openclaw-gateway\.service/,

709+

);

710+

expect(stopSystemdService).toHaveBeenCalled();

711+

expect(signalVerifiedGatewayPidSync).not.toHaveBeenCalled();

712+

});

713+610714

it("skips unmanaged signaling for pids that are not live gateway processes", async () => {

611715

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([]);

612716

runServiceStop.mockImplementation(async (params: { onNotLoaded?: () => Promise<unknown> }) => {