Index: trunk/packages/invirt-remote/debian/changelog
===================================================================
--- trunk/packages/invirt-remote/debian/changelog	(revision 2255)
+++ trunk/packages/invirt-remote/debian/changelog	(revision 2256)
@@ -2,6 +2,7 @@
 
   * Let invirt-remote-proxy know all the possible subcommands.
-
- -- Greg Price <price@mit.edu>  Mon, 16 Mar 2009 21:15:38 -0400
+  * Accept /etc/invirt/{nocreate,nolvm} on remote-server.
+
+ -- Greg Price <price@mit.edu>  Mon, 16 Mar 2009 21:22:13 -0400
 
 invirt-remote (0.3.9) unstable; urgency=low
Index: trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-proxy
===================================================================
--- trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-proxy	(revision 2255)
+++ trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-proxy	(revision 2256)
@@ -20,8 +20,16 @@
         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 )
