From 038785a3558edbd351b6c43918fd9acfc32e6770 Mon Sep 17 00:00:00 2001 From: Steve Cliff Date: Sat, 9 May 2026 12:49:40 +0100 Subject: [PATCH] first-run: keep 'bootstrap token' phrase so e2e log-scraper still matches The CI e2e workflow greps for 'bootstrap token' in server logs to capture the one-shot token. The earlier reword dropped that phrase; restore it on the headless-instructions line so .gitea/workflows/e2e.yml step 'Capture bootstrap token from server logs' keeps matching. --- cmd/server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server/main.go b/cmd/server/main.go index 9da8c13..d598571 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -156,7 +156,7 @@ func run() error { } fmt.Fprintln(os.Stderr, "") fmt.Fprintln(os.Stderr, " Headless? POST {token, username, password} to /api/bootstrap") - fmt.Fprintln(os.Stderr, " with this one-shot token (valid until first user is created):") + fmt.Fprintln(os.Stderr, " with this one-shot bootstrap token (valid until first user exists):") fmt.Fprintln(os.Stderr, " "+token) fmt.Fprintln(os.Stderr, "================================================================") }