You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix verify: inference curl and TPM permission fallback
- Inference check used `curl -sI -X POST` which is invalid (curl bails
with "You can only select one HTTP request method", silenced by
2>/dev/null). Switch to `curl -s -D - -o /dev/null` against /models,
which is a real GET that returns the same Attestation-Report header.
- SEV-SNP check failed for non-root users because /dev/tpmrm0 is
root:tss and the admin user was not in tss group. Add a sudo -n
fallback when attestation-cli reports a TPM error, and emit a
helpful "add user to tss group" hint when even sudo fails.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments