Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a06ea3-7939-7b63-8125-699f8b50bedd
7 lines
360 B
Bash
Executable file
7 lines
360 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Functional realm/resolver and token-backed MFA proof, NK-WP-0034.
|
|
# Usage: ./verify-t06.sh --user platform-root
|
|
# Runbook: docs/verify-t06.md (credentials are prompted, not read from old bundles).
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec python3 "$SCRIPT_DIR/privacyidea/verify_mfa.py" "$@"
|