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

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

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 systemd env-file secrets on re-stag...
hclsys · 2026-05-04 · via Recent Commits to openclaw:main

@@ -20,6 +20,7 @@ import {

2020

writeManagedServiceEnvKeysToEnvironment,

2121

} from "../daemon/service-managed-env.js";

2222

import { isNonMinimalServicePathEntry } from "../daemon/service-path-policy.js";

23+

import type { GatewayServiceEnvironmentValueSource } from "../daemon/service-types.js";

2324

import {

2425

isDangerousHostEnvOverrideVarName,

2526

isDangerousHostEnvVarName,

@@ -40,6 +41,7 @@ type GatewayInstallPlan = {

4041

programArguments: string[];

4142

workingDirectory?: string;

4243

environment: Record<string, string | undefined>;

44+

environmentValueSources?: Record<string, GatewayServiceEnvironmentValueSource | undefined>;

4345

};

44464547

let daemonInstallAuthProfileSourceRuntimePromise:

@@ -360,6 +362,22 @@ function collectPreservedExistingServiceEnvVars(

360362

return preserved;

361363

}

362364365+

function readExistingEnvironmentValueSource(params: {

366+

existingEnvironmentValueSources?: Record<

367+

string,

368+

GatewayServiceEnvironmentValueSource | undefined

369+

>;

370+

normalizedKey: string;

371+

}): GatewayServiceEnvironmentValueSource | undefined {

372+

for (const [rawKey, source] of Object.entries(params.existingEnvironmentValueSources ?? {})) {

373+

const key = normalizeEnvVarKey(rawKey, { portable: true })?.toUpperCase();

374+

if (key === params.normalizedKey) {

375+

return source;

376+

}

377+

}

378+

return undefined;

379+

}

380+363381

function resolveGatewayInstallWorkingDirectory(params: {

364382

env: Record<string, string | undefined>;

365383

platform: NodeJS.Platform;

@@ -381,8 +399,15 @@ async function buildGatewayInstallEnvironment(params: {

381399

warn?: DaemonInstallWarnFn;

382400

serviceEnvironment: Record<string, string | undefined>;

383401

existingEnvironment?: Record<string, string | undefined>;

402+

existingEnvironmentValueSources?: Record<

403+

string,

404+

GatewayServiceEnvironmentValueSource | undefined

405+

>;

384406

platform: NodeJS.Platform;

385-

}): Promise<Record<string, string | undefined>> {

407+

}): Promise<{

408+

environment: Record<string, string | undefined>;

409+

environmentValueSources: Record<string, GatewayServiceEnvironmentValueSource | undefined>;

410+

}> {

386411

const durableEnvironment = collectDurableServiceEnvVars({

387412

env: params.env,

388413

config: params.config,

@@ -404,21 +429,47 @@ async function buildGatewayInstallEnvironment(params: {

404429

authStore: params.authStore,

405430

warn: params.warn,

406431

});

432+

const preservedExistingEnvironment = collectPreservedExistingServiceEnvVars(

433+

params.existingEnvironment,

434+

readManagedServiceEnvKeysFromEnvironment(params.existingEnvironment),

435+

);

407436

const environment: Record<string, string | undefined> = {

408-

...collectPreservedExistingServiceEnvVars(

409-

params.existingEnvironment,

410-

readManagedServiceEnvKeysFromEnvironment(params.existingEnvironment),

411-

),

437+

...preservedExistingEnvironment,

412438

...durableEnvironment,

413439

...configSecretRefEnvironment,

414440

...execSecretRefPassEnvEnvironment,

415441

...authProfileEnvironment,

416442

};

443+

const environmentValueSources: Record<string, GatewayServiceEnvironmentValueSource | undefined> =

444+

{};

445+

for (const rawKey of Object.keys(preservedExistingEnvironment)) {

446+

const normalizedKey = normalizeEnvVarKey(rawKey, { portable: true })?.toUpperCase();

447+

environmentValueSources[rawKey] = normalizedKey

448+

? (readExistingEnvironmentValueSource({

449+

existingEnvironmentValueSources: params.existingEnvironmentValueSources,

450+

normalizedKey,

451+

}) ?? "inline")

452+

: "inline";

453+

}

454+

for (const key of Object.keys({

455+

...durableEnvironment,

456+

...configSecretRefEnvironment,

457+

...execSecretRefPassEnvEnvironment,

458+

...authProfileEnvironment,

459+

})) {

460+

environmentValueSources[key] = "inline";

461+

}

417462

const managedServiceEnvKeys = formatManagedServiceEnvKeys(durableEnvironment, {

418463

omitKeys: Object.keys(params.serviceEnvironment),

419464

});

420465

writeManagedServiceEnvKeysToEnvironment(environment, managedServiceEnvKeys);

466+

if (environment.OPENCLAW_SERVICE_MANAGED_ENV_KEYS) {

467+

environmentValueSources.OPENCLAW_SERVICE_MANAGED_ENV_KEYS = "inline";

468+

}

421469

Object.assign(environment, params.serviceEnvironment);

470+

for (const key of Object.keys(params.serviceEnvironment)) {

471+

environmentValueSources[key] = "inline";

472+

}

422473

const mergedPath = mergeServicePath(

423474

params.serviceEnvironment.PATH,

424475

params.existingEnvironment?.PATH,

@@ -427,8 +478,14 @@ async function buildGatewayInstallEnvironment(params: {

427478

);

428479

if (mergedPath) {

429480

environment.PATH = mergedPath;

481+

environmentValueSources.PATH = "inline";

482+

}

483+

for (const key of Object.keys(environmentValueSources)) {

484+

if (!Object.hasOwn(environment, key)) {

485+

delete environmentValueSources[key];

486+

}

430487

}

431-

return environment;

488+

return { environment, environmentValueSources };

432489

}

433490434491

export async function buildGatewayInstallPlan(params: {

@@ -444,6 +501,10 @@ export async function buildGatewayInstallPlan(params: {

444501

/** Full config to extract env vars from (env vars + inline env keys). */

445502

config?: OpenClawConfig;

446503

authStore?: AuthProfileStore;

504+

existingEnvironmentValueSources?: Record<

505+

string,

506+

GatewayServiceEnvironmentValueSource | undefined

507+

>;

447508

}): Promise<GatewayInstallPlan> {

448509

const platform = params.platform ?? process.platform;

449510

const { devMode, nodePath } = await resolveDaemonInstallRuntimeInputs({

@@ -483,6 +544,17 @@ export async function buildGatewayInstallPlan(params: {

483544

extraPathDirs: resolveDaemonNodeBinDir(nodePath),

484545

});

485546547+

const { environment, environmentValueSources } = await buildGatewayInstallEnvironment({

548+

env: serviceInputEnv,

549+

config: params.config,

550+

authStore: params.authStore,

551+

warn: params.warn,

552+

serviceEnvironment,

553+

existingEnvironment: params.existingEnvironment,

554+

existingEnvironmentValueSources: params.existingEnvironmentValueSources,

555+

platform,

556+

});

557+486558

// Lowest to highest: preserved custom vars, durable config, auth env refs, generated service env.

487559

return {

488560

programArguments,

@@ -491,15 +563,8 @@ export async function buildGatewayInstallPlan(params: {

491563

platform,

492564

workingDirectory,

493565

}),

494-

environment: await buildGatewayInstallEnvironment({

495-

env: serviceInputEnv,

496-

config: params.config,

497-

authStore: params.authStore,

498-

warn: params.warn,

499-

serviceEnvironment,

500-

existingEnvironment: params.existingEnvironment,

501-

platform,

502-

}),

566+

environment,

567+

...(Object.keys(environmentValueSources).length > 0 ? { environmentValueSources } : {}),

503568

};

504569

}

505570