2 # invoke as invirt-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
9 MACHINE="$1"; SERVICE="$2"; shift; shift ;;
11 SERVICE="$1"; shift ;;
14 case "$TYPE/$SERVICE" in
16 invirt-remote-listvms "$@" ;;
18 invirt-remote-vnccert "$@" ;;
19 web/availability | web/avail )
20 invirt-remote-availability "$@" ;;
21 web/lvcreate | web/lvremove | web/lvrename | web/lvresize | web/vgcapacity | web/checkdisks )
22 invirt-remote-lvm "$SERVICE" "$@"
26 control/create|control/install )
27 if [ -f "/etc/invirt/nocreate" ]; then
28 echo "Booting VMs is temporarily disabled for maintenance, sorry." >&2
31 invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;;
32 control/listhost|control/list-host )
33 invirt-remote-listhost "$MACHINE" "$@" ;;
35 # Everything but create must go where the VM is already running.
36 invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;;
38 echo "ERROR: invalid subcommand $TYPE/$SERVICE"