5 lines
187 B
Bash
5 lines
187 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Silent child for the governed attended login; no secret output.
|
||
|
|
set -euo pipefail
|
||
|
|
exec python3 "$(dirname "$0")/provision-sitting-requester.py" "$@" >/dev/null 2>&1
|