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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

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): preserve explicit systemd unit during refres...
TurboTheTurt · 2026-05-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -685,6 +685,33 @@ describe("buildServiceEnvironment", () => {

685685

}

686686

});

687687
688+

it("preserves explicit systemd unit overrides", () => {

689+

const env = buildServiceEnvironment({

690+

env: {

691+

HOME: "/home/user",

692+

OPENCLAW_PROFILE: "work",

693+

OPENCLAW_SYSTEMD_UNIT: "openclaw-gateway-maintenance",

694+

},

695+

port: 18789,

696+

platform: "linux",

697+

});

698+
699+

expect(env.OPENCLAW_SYSTEMD_UNIT).toBe("openclaw-gateway-maintenance.service");

700+

});

701+
702+

it("preserves explicit systemd unit overrides with service suffix", () => {

703+

const env = buildServiceEnvironment({

704+

env: {

705+

HOME: "/home/user",

706+

OPENCLAW_SYSTEMD_UNIT: "openclaw-gateway-maintenance.service",

707+

},

708+

port: 18789,

709+

platform: "linux",

710+

});

711+
712+

expect(env.OPENCLAW_SYSTEMD_UNIT).toBe("openclaw-gateway-maintenance.service");

713+

});

714+
688715

it("sets a profile-specific launchd marker for macOS gateway services", () => {

689716

const env = buildServiceEnvironment({

690717

env: { HOME: "/Users/user", OPENCLAW_PROFILE: "work" },

Original file line numberDiff line numberDiff line change

@@ -391,6 +391,14 @@ export function buildMinimalServicePath(options: BuildServicePathOptions = {}):

391391

return getMinimalServicePathPartsFromEnv({ ...options, env }).join(path.posix.delimiter);

392392

}

393393
394+

function resolveGatewaySystemdUnitEnv(env: Record<string, string | undefined>): string {

395+

const override = normalizeOptionalString(env.OPENCLAW_SYSTEMD_UNIT);

396+

if (override) {

397+

return override.endsWith(".service") ? override : `${override}.service`;

398+

}

399+

return `${resolveGatewaySystemdServiceName(env.OPENCLAW_PROFILE)}.service`;

400+

}

401+
394402

export function buildServiceEnvironment(params: {

395403

env: Record<string, string | undefined>;

396404

port: number;

@@ -411,7 +419,7 @@ export function buildServiceEnvironment(params: {

411419

const wrapperPath = normalizeOptionalString(env.OPENCLAW_WRAPPER);

412420

const resolvedLaunchdLabel =

413421

launchdLabel || (platform === "darwin" ? resolveGatewayLaunchAgentLabel(profile) : undefined);

414-

const systemdUnit = `${resolveGatewaySystemdServiceName(profile)}.service`;

422+

const systemdUnit = resolveGatewaySystemdUnitEnv(env);

415423

return {

416424

...buildCommonServiceEnvironment(env, sharedEnv),

417425

OPENCLAW_PROFILE: profile,

Original file line numberDiff line numberDiff line change

@@ -112,6 +112,32 @@ describe("readGatewayServiceState", () => {

112112

expect(state.running).toBe(true);

113113

expect(state.env.OPENCLAW_GATEWAY_PORT).toBe("18789");

114114

});

115+
116+

it("keeps the caller-selected service identity when merging persisted env", async () => {

117+

const readRuntime = vi.fn(async () => ({ status: "running" }));

118+

const service = createService({

119+

isLoaded: vi.fn(async () => true),

120+

readCommand: vi.fn(async () => ({

121+

programArguments: ["openclaw", "gateway", "run"],

122+

environment: {

123+

OPENCLAW_GATEWAY_PORT: "18789",

124+

OPENCLAW_SYSTEMD_UNIT: "openclaw-gateway.service",

125+

},

126+

})),

127+

readRuntime,

128+

});

129+
130+

const state = await readGatewayServiceState(service, {

131+

env: { OPENCLAW_SYSTEMD_UNIT: "openclaw-gateway-maintenance.service" },

132+

});

133+
134+

expect(state.env.OPENCLAW_SYSTEMD_UNIT).toBe("openclaw-gateway-maintenance.service");

135+

expect(readRuntime).toHaveBeenCalledWith(

136+

expect.objectContaining({

137+

OPENCLAW_SYSTEMD_UNIT: "openclaw-gateway-maintenance.service",

138+

}),

139+

);

140+

});

115141

});

116142
117143

describe("startGatewayService", () => {

Original file line numberDiff line numberDiff line change

@@ -91,10 +91,21 @@ function mergeGatewayServiceEnv(

9191

if (!command?.environment) {

9292

return baseEnv;

9393

}

94-

return {

94+

const merged = {

9595

...baseEnv,

9696

...command.environment,

9797

};

98+

for (const key of [

99+

"OPENCLAW_LAUNCHD_LABEL",

100+

"OPENCLAW_SYSTEMD_UNIT",

101+

"OPENCLAW_WINDOWS_TASK_NAME",

102+

]) {

103+

const value = baseEnv[key]?.trim();

104+

if (value) {

105+

merged[key] = value;

106+

}

107+

}

108+

return merged;

98109

}

99110
100111

const TEMP_PROGRAM_ROOTS = [os.tmpdir(), "/tmp", "/private/tmp", "/var/tmp"].map((entry) =>