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
This commit is contained in:
Roger Luethi 2015-02-22 15:32:50 +01:00
parent b0226a11d7
commit 09057be0fb

View File

@ -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
}