fix(runtime): harden smoke and credential boundaries

This commit is contained in:
2026-08-04 16:05:06 +00:00
parent 09d849de07
commit c49989631f
16 changed files with 517 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
set -eu
auth_dir=${SAMMO_GIT_AUTH_DIR:-/srv/data/git-auth}
case "${1:-}" in
*Username*) cat "$auth_dir/https-username" ;;
*Password*) cat "$auth_dir/https-token" ;;
*) exit 1 ;;
esac