From d658fc4637becee12267f670ee97b429e05fd655 Mon Sep 17 00:00:00 2001 From: Leo Simons Date: Wed, 23 Jul 2014 17:34:26 +0200 Subject: [PATCH] CLOUDSTACK-7143: attempt to export a vagrant box --- tools/appliance/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/appliance/build.sh b/tools/appliance/build.sh index d315b43e20e..b0bea414294 100755 --- a/tools/appliance/build.sh +++ b/tools/appliance/build.sh @@ -283,7 +283,9 @@ function veewee_destroy() { function veewee_build() { log INFO "building new image with veewee" bundle exec veewee vbox build "${appliance_build_name}" ${VEEWEE_BUILD_ARGS} - bundle exec veewee vbox halt "${appliance_build_name}" ${VEEWEE_ARGS} + # vbox export wants to run vbox halt itself, so don't halt! + # bundle exec veewee vbox halt "${appliance_build_name}" ${VEEWEE_ARGS} + bundle exec veewee vbox export "${appliance_build_name}" ${VEEWEE_ARGS} } function check_appliance_shutdown() {