From 09057be0fb1b0105f4525c95523fa9fa437ceceb Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Sun, 22 Feb 2015 15:32:50 +0100 Subject: [PATCH] labs: stop advertizing export option Exported VMs are currently not very useful. Export/import needs work at least for network configuration to survive the transport. Upcoming patches would become more complicated just to preserve the current export functionality that nobody's using. This patch does not remove export, but keeps osbash.sh from telling anyone about its existence. Change-Id: I4f09fe15b199545e0e7fbc5fa9b3b030a539b934 --- labs/osbash.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/labs/osbash.sh b/labs/osbash.sh index bbc4ad9b..a7d7e415 100755 --- a/labs/osbash.sh +++ b/labs/osbash.sh @@ -23,20 +23,22 @@ source "$OSBASH_LIB_DIR/virtualbox.install_base" function usage { echo "Usage: $0 {-b|-w} [-g GUI] [-n] {basedisk|NODE [NODE..]}" echo " $0 [-e EXPORT] [-n] NODE [NODE..]" + # Don't advertise export until it is working properly + #echo " $0 [-e EXPORT] [-n] NODE [NODE..]" echo "" echo "-h Help" echo "-n Print configuration status and exit" echo "-b Build basedisk (if necessary) and node VMs (if any)" echo "-w Create Windows batch files" echo "-g GUI GUI type during build" - echo "-e EXPORT Export node VMs" + #echo "-e EXPORT Export node VMs" echo "" echo "basedisk Build configured basedisk" echo "NODE Build controller, compute, network, cluster [all three]" echo " (builds basedisk if necessary)" echo "GUI gui, sdl, or headless" echo " (choose GUI type for VirtualBox)" - echo "EXPORT ova (OVA package file) or dir (VM clone directory)" + #echo "EXPORT ova (OVA package file) or dir (VM clone directory)" exit }