Changeset 2256
- Timestamp:
- Mar 16, 2009, 9:27:10 PM (16 years ago)
- Location:
- trunk/packages/invirt-remote
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-remote/debian/changelog
r2255 r2256 2 2 3 3 * Let invirt-remote-proxy know all the possible subcommands. 4 5 -- Greg Price <price@mit.edu> Mon, 16 Mar 2009 21:15:38 -0400 4 * Accept /etc/invirt/{nocreate,nolvm} on remote-server. 5 6 -- Greg Price <price@mit.edu> Mon, 16 Mar 2009 21:22:13 -0400 6 7 7 8 invirt-remote (0.3.9) unstable; urgency=low -
trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-proxy
r2255 r2256 20 20 invirt-remote-availability "$@" ;; 21 21 web/lvcreate | web/lvremove | web/lvrename | web/lvresize ) 22 if [ -f "/etc/invirt/nolvm" ]; then 23 echo "LVM operations are temporarily disabled for maintenance, sorry." 24 exit 2 25 fi 22 26 remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; 23 27 control/help ) 24 28 invirt-remctl-help ;; 25 29 control/create|control/install ) 30 if [ -f "/etc/invirt/nocreate" ]; then 31 echo "Booting VMs is temporarily disabled for maintenance, sorry." 32 exit 2 33 fi 26 34 invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;; 27 35 control/listhost|control/list-host )
Note: See TracChangeset
for help on using the changeset viewer.