8 lines
362 B
Bash
8 lines
362 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Attended child for openbao-attended-exec / warden access. Metadata only.
|
||
|
|
set -euo pipefail
|
||
|
|
export INFD_APPROVAL_ORIGIN="${INFD_APPROVAL_ORIGIN:-http://127.0.0.1:18281}"
|
||
|
|
exec /home/worsch/informed-decision/.venv/bin/python -B \
|
||
|
|
/home/worsch/informed-decision/tools/create_sitting_approvals.py \
|
||
|
|
--approval-origin "$INFD_APPROVAL_ORIGIN"
|