X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/blobdiff_plain/315d974f414c74456adbf60eb9912a8908421939..5af3b5d0f46ce82b148766b4dc21abf0fec08e6b:/server/usr/sbin/invirt-remote-proxy diff --git a/server/usr/sbin/invirt-remote-proxy b/server/usr/sbin/invirt-remote-proxy index f05fa65..9a9266d 100755 --- a/server/usr/sbin/invirt-remote-proxy +++ b/server/usr/sbin/invirt-remote-proxy @@ -16,6 +16,10 @@ case "$TYPE/$SERVICE" in invirt-remote-listvms "$@" ;; web/vnccert ) invirt-remote-vnccert "$@" ;; + web/availability ) + invirt-remote-availability "$@" ;; + web/lvcreate | web/lvremove | web/lvrename | web/lvresize ) + remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; control/help ) invirt-remctl-help ;; control/create|control/install ) @@ -26,5 +30,7 @@ case "$TYPE/$SERVICE" in # Everything but create must go where the VM is already running. invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;; * ) - remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; + echo "ERROR: invalid subcommand" + exit 34 + ;; esac