[mapguide-commits] r8605 - branches/3.0/vagrant

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sun Mar 29 08:07:10 PDT 2015


Author: jng
Date: 2015-03-29 08:07:10 -0700 (Sun, 29 Mar 2015)
New Revision: 8605

Modified:
   branches/3.0/vagrant/make_boxes.bat
Log:
#2520: tee and log packer output when building CentOS/Ubuntu base boxes

Modified: branches/3.0/vagrant/make_boxes.bat
===================================================================
--- branches/3.0/vagrant/make_boxes.bat	2015-03-29 15:05:11 UTC (rev 8604)
+++ branches/3.0/vagrant/make_boxes.bat	2015-03-29 15:07:10 UTC (rev 8605)
@@ -6,28 +6,28 @@
 pushd packer
 if "%BUILD_CENTOS_64%" == "1" (
 echo [packer]: Build CentOS 64-bit base box
-packer build -force centos6-amd64.json
+packer build -force centos6-amd64.json | tee packer_centos64.log
 echo [vagrant]: Export centos6-amd64 base box
 rem call vagrant package --base "centos6-amd64" --output centos6-amd64.box
 call vagrant box add "centos6-amd64" centos6-amd64.box --force
 )
 if "%BUILD_CENTOS_32%" == "1" (
 echo [packer]: Build CentOS 32-bit base box
-packer build -force centos6-i386.json
+packer build -force centos6-i386.json | tee packer_centos32.log
 echo [vagrant]: Export centos6-i386 base box
 rem call vagrant package --base "centos6-i386" --output centos6-i386.box
 call vagrant box add "centos6-i386" centos6-i386.box --force
 )
 if "%BUILD_UBUNTU_64%" == "1" (
 echo [packer]: Build Ubuntu 64-bit base box
-packer build -force ubuntu12-amd64.json
+packer build -force ubuntu12-amd64.json | tee packer_ubuntu64.log
 echo [vagrant]: Export ubuntu12-amd64 base box
 rem call vagrant package --base "ubuntu12-amd64" --output ubuntu12-amd64.box
 call vagrant box add "ubuntu12-amd64" ubuntu12-amd64.box --force
 )
 if "%BUILD_UBUNTU_32%" == "1" (
 echo [packer]: Build Ubuntu 32-bit base box
-packer build -force ubuntu12-i386.json
+packer build -force ubuntu12-i386.json | tee packer_ubuntu32.log
 echo [vagrant]: Export ubuntu12-i386 base box
 rem call vagrant package --base "ubuntu12-i386" --output ubuntu12-i386.box
 call vagrant box add "ubuntu12-i386" ubuntu12-i386.box --force



More information about the mapguide-commits mailing list