infrastructure/systems/reisen/bin/pve.sh
2024-01-28 14:45:11 -08:00

16 lines
177 B
Bash

#!/usr/bin/env bash
set -eu
ARG_CMD=$1
shift
case "$ARG_CMD" in
qm|pct|pveum)
;;
*)
echo unsupported pve command "$ARG_CMD" >&2
exit 1
;;
esac
exec "$ARG_CMD" "$@"