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

推荐订阅源

博客园_首页
量子位
D
DataBreaches.Net
博客园 - 司徒正美
J
Java Code Geeks
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
B
Blog
The Cloudflare Blog
D
Docker
I
InfoQ
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
有赞技术团队
有赞技术团队

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(scripts): avoid mutating tracked auth-monitor templat...
JackWuGlobal · 2026-06-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -60,21 +60,88 @@ echo " OpenClaw message: Send warning via OpenClaw itself"

6060

echo "Enter your phone number for alerts (or leave blank to skip):"

6161

read -r PHONE_NUMBER

6262
63-

# Update service file

64-

SERVICE_FILE="$SCRIPT_DIR/systemd/openclaw-auth-monitor.service"

65-

if [ -n "$NTFY_TOPIC" ]; then

66-

sed -i "s|# Environment=NOTIFY_NTFY=.*|Environment=NOTIFY_NTFY=$NTFY_TOPIC|" "$SERVICE_FILE"

67-

fi

68-

if [ -n "$PHONE_NUMBER" ]; then

69-

sed -i "s|# Environment=NOTIFY_PHONE=.*|Environment=NOTIFY_PHONE=$PHONE_NUMBER|" "$SERVICE_FILE"

70-

fi

71-
7263

# Install systemd units

64+

SERVICE_TEMPLATE="$SCRIPT_DIR/systemd/openclaw-auth-monitor.service"

65+

SYSTEMD_USER_DIR="$HOME/.config/systemd/user"

66+

SERVICE_TARGET="$SYSTEMD_USER_DIR/openclaw-auth-monitor.service"

67+

TIMER_TARGET="$SYSTEMD_USER_DIR/openclaw-auth-monitor.timer"

68+

AUTH_MONITOR_PATH="$SCRIPT_DIR/auth-monitor.sh"

69+
7370

echo ""

7471

echo "Installing systemd timer..."

75-

mkdir -p ~/.config/systemd/user

76-

cp "$SCRIPT_DIR/systemd/openclaw-auth-monitor.service" ~/.config/systemd/user/

77-

cp "$SCRIPT_DIR/systemd/openclaw-auth-monitor.timer" ~/.config/systemd/user/

72+

mkdir -p "$SYSTEMD_USER_DIR"

73+
74+

SERVICE_TEMP="$(mktemp "$SYSTEMD_USER_DIR/openclaw-auth-monitor.service.XXXXXX")"

75+

SERVICE_RENDERED=""

76+

cleanup_service_temp() {

77+

rm -f "$SERVICE_TEMP" "$SERVICE_RENDERED"

78+

}

79+

trap cleanup_service_temp EXIT

80+

SERVICE_RENDERED="$(mktemp "$SYSTEMD_USER_DIR/openclaw-auth-monitor.service.rendered.XXXXXX")"

81+
82+

cp "$SERVICE_TEMPLATE" "$SERVICE_TEMP"

83+
84+

systemd_quote_arg() {

85+

local value="$1"

86+

value="${value//\\/\\\\}"

87+

value="${value//%/%%}"

88+

value="${value//\$/\$\$}"

89+

value="${value//\"/\\\"}"

90+

printf '"%s"' "$value"

91+

}

92+
93+

render_environment_line() {

94+

local key="$1"

95+

local placeholder="$2"

96+

local value="$3"

97+
98+

if [ -n "$value" ]; then

99+

printf 'Environment=%s=%s' "$key" "$value"

100+

else

101+

printf '# Environment=%s=%s' "$key" "$placeholder"

102+

fi

103+

}

104+
105+

RENDERED_EXEC_START="ExecStart=$(systemd_quote_arg "$AUTH_MONITOR_PATH")"

106+

RENDERED_NTFY_LINE="$(render_environment_line "NOTIFY_NTFY" "openclaw-alerts" "$NTFY_TOPIC")"

107+

RENDERED_PHONE_LINE="$(render_environment_line "NOTIFY_PHONE" "+1234567890" "$PHONE_NUMBER")"

108+

FOUND_EXEC_START=0

109+

FOUND_NTFY=0

110+

FOUND_PHONE=0

111+
112+

while IFS= read -r line || [ -n "$line" ]; do

113+

if [[ "$line" =~ ^[[:space:]]*ExecStart=.*$ ]]; then

114+

printf '%s\n' "$RENDERED_EXEC_START"

115+

FOUND_EXEC_START=1

116+

elif [[ "$line" =~ ^[[:space:]]*#?[[:space:]]*Environment=NOTIFY_NTFY=.*$ ]]; then

117+

printf '%s\n' "$RENDERED_NTFY_LINE"

118+

FOUND_NTFY=1

119+

elif [[ "$line" =~ ^[[:space:]]*#?[[:space:]]*Environment=NOTIFY_PHONE=.*$ ]]; then

120+

printf '%s\n' "$RENDERED_PHONE_LINE"

121+

FOUND_PHONE=1

122+

else

123+

printf '%s\n' "$line"

124+

fi

125+

done < "$SERVICE_TEMP" > "$SERVICE_RENDERED"

126+
127+

if [ "$FOUND_EXEC_START" -ne 1 ]; then

128+

echo "ERROR: ExecStart line not found in $SERVICE_TEMPLATE" >&2

129+

exit 1

130+

fi

131+

if [ "$FOUND_NTFY" -ne 1 ]; then

132+

echo "ERROR: NOTIFY_NTFY placeholder not found in $SERVICE_TEMPLATE" >&2

133+

exit 1

134+

fi

135+

if [ "$FOUND_PHONE" -ne 1 ]; then

136+

echo "ERROR: NOTIFY_PHONE placeholder not found in $SERVICE_TEMPLATE" >&2

137+

exit 1

138+

fi

139+
140+

mv "$SERVICE_RENDERED" "$SERVICE_TEMP"

141+
142+

mv "$SERVICE_TEMP" "$SERVICE_TARGET"

143+

trap - EXIT

144+

cp "$SCRIPT_DIR/systemd/openclaw-auth-monitor.timer" "$TIMER_TARGET"

78145

systemctl --user daemon-reload

79146

systemctl --user enable --now openclaw-auth-monitor.timer

80147
Original file line numberDiff line numberDiff line change

@@ -723,6 +723,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

723723

["scripts/run-oxlint-shards.mjs", ["test/scripts/run-oxlint.test.ts"]],

724724

["scripts/run-with-env.mjs", ["test/scripts/run-with-env.test.ts"]],

725725

["scripts/run-node.mjs", ["src/infra/run-node.test.ts"]],

726+

["scripts/setup-auth-system.sh", ["test/scripts/test-projects.test.ts"]],

726727

["scripts/ci-run-timings.mjs", ["test/scripts/ci-run-timings.test.ts"]],

727728

["scripts/docker-e2e.mjs", ["test/scripts/docker-e2e-helper-cli.test.ts"]],

728729

["scripts/docker-e2e-rerun.mjs", ["test/scripts/docker-e2e-helper-cli.test.ts"]],

Original file line numberDiff line numberDiff line change

@@ -1011,6 +1011,25 @@ describe("test-projects args", () => {

10111011

).toStrictEqual([]);

10121012

});

10131013
1014+

it("routes auth setup script changes to the focused tooling planner test", () => {

1015+

const changedPaths = ["scripts/setup-auth-system.sh"];

1016+
1017+

expect(resolveChangedTestTargetPlan(changedPaths)).toEqual({

1018+

mode: "targets",

1019+

targets: ["test/scripts/test-projects.test.ts"],

1020+

});

1021+

expect(

1022+

buildVitestRunPlans(["--changed=origin/main"], process.cwd(), () => changedPaths),

1023+

).toEqual([

1024+

{

1025+

config: "test/vitest/vitest.tooling.config.ts",

1026+

forwardedArgs: [],

1027+

includePatterns: ["test/scripts/test-projects.test.ts"],

1028+

watchMode: false,

1029+

},

1030+

]);

1031+

});

1032+
10141033

it("keeps core test-only changes on their owning test lane", () => {

10151034

const changedPaths = ["src/auto-reply/reply/commands-approve.test.ts"];

10161035