X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/blobdiff_plain/d1207209d27ff791910c31f6c194bc78e77319c1..424e7823544e54dbf31cc1f28a47a7a76d5bd950:/server/usr/sbin/invirt-remote-proxy diff --git a/server/usr/sbin/invirt-remote-proxy b/server/usr/sbin/invirt-remote-proxy index 358447c..cea1bbd 100755 --- a/server/usr/sbin/invirt-remote-proxy +++ b/server/usr/sbin/invirt-remote-proxy @@ -18,9 +18,19 @@ case "$TYPE/$SERVICE" in invirt-remote-vnccert "$@" ;; web/availability ) invirt-remote-availability "$@" ;; + web/lvcreate | web/lvremove | web/lvrename | web/lvresize ) + if [ -f "/etc/invirt/nolvm" ]; then + echo "LVM operations are temporarily disabled for maintenance, sorry." + exit 2 + fi + remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; control/help ) invirt-remctl-help ;; control/create|control/install ) + if [ -f "/etc/invirt/nocreate" ]; then + echo "Booting VMs is temporarily disabled for maintenance, sorry." + exit 2 + fi invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;; control/listhost|control/list-host ) invirt-remote-listhost "$MACHINE" "$@" ;; @@ -28,5 +38,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