forked from msvsphere/cloud-images
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
460 B
12 lines
460 B
#!/bin/bash
|
|
|
|
OUT_DIR='./vmware-iso.msvsphere-9-ovf-x86_64_ovf'
|
|
|
|
PACKER_LOG_FILE='./packer.log'
|
|
PACKER_LOG=1 packer build -only=vmware-iso.msvsphere-9-ovf-x86_64 . 2>$PACKER_LOG_FILE || exit 1
|
|
|
|
rm -rf $OUT_DIR
|
|
mkdir $OUT_DIR
|
|
|
|
/usr/lib/vmware-ovftool/ovftool --machineOutput --X:logFile=./ovftool.log --X:logLevel=verbose --exportFlags=extraconfig --allowExtraConfig --X:vCloudEnableGuestCustomization ./output-msvsphere-9-ovf-x86_64/msvsphere-9.4.vmx $OUT_DIR
|