infrastructure/ci/proxmox/bin/pve.sh
2025-09-06 23:05:37 -07: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" "$@"