fix(swarm-mgmt): exclude .env from bundle, chmod +x decnet, mkdir log

This commit is contained in:
2026-04-19 04:58:55 -04:00
parent b4df9ea0a1
commit 95ae175e1b
3 changed files with 15 additions and 0 deletions

View File

@@ -66,6 +66,11 @@ _EXCLUDES: tuple[str, ...] = (
"decnet-state.json",
"master.log", "master.json",
"decnet.tar",
# Dev-host env/config leaks — these bake the master's absolute paths into
# the agent and point log handlers at directories that don't exist on the
# worker VM.
".env", ".env.*", "**/.env", "**/.env.*",
"decnet.ini", "**/decnet.ini",
)