2013-12-24 00:58:41 -05:00
|
|
|
package iso
|
2013-06-04 19:52:59 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
2013-12-24 01:09:47 -05:00
|
|
|
vmwcommon "github.com/mitchellh/packer/builder/vmware/common"
|
2013-06-04 19:52:59 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-08-27 20:23:22 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2013-06-04 19:52:59 -04:00
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
type vmxTemplateData struct {
|
|
|
|
Name string
|
|
|
|
GuestOS string
|
|
|
|
DiskName string
|
2013-06-04 20:00:29 -04:00
|
|
|
ISOPath string
|
2013-06-04 19:52:59 -04:00
|
|
|
}
|
|
|
|
|
2013-06-05 17:47:19 -04:00
|
|
|
// This step creates the VMX file for the VM.
|
|
|
|
//
|
|
|
|
// Uses:
|
|
|
|
// config *config
|
2013-06-10 00:50:15 -04:00
|
|
|
// iso_path string
|
2013-06-05 17:47:19 -04:00
|
|
|
// ui packer.Ui
|
|
|
|
//
|
|
|
|
// Produces:
|
2013-06-05 17:49:04 -04:00
|
|
|
// vmx_path string - The path to the VMX file.
|
2013-11-08 00:02:12 -05:00
|
|
|
type stepCreateVMX struct {
|
|
|
|
tempDir string
|
|
|
|
}
|
2013-06-04 19:52:59 -04:00
|
|
|
|
2013-11-08 00:02:12 -05:00
|
|
|
func (s *stepCreateVMX) Run(state multistep.StateBag) multistep.StepAction {
|
2013-08-31 15:50:25 -04:00
|
|
|
config := state.Get("config").(*config)
|
|
|
|
isoPath := state.Get("iso_path").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-06-04 19:52:59 -04:00
|
|
|
|
2013-06-07 19:20:58 -04:00
|
|
|
ui.Say("Building and writing VMX file")
|
2013-06-04 19:52:59 -04:00
|
|
|
|
|
|
|
tplData := &vmxTemplateData{
|
2013-07-08 23:56:23 -04:00
|
|
|
Name: config.VMName,
|
|
|
|
GuestOS: config.GuestOSType,
|
|
|
|
DiskName: config.DiskName,
|
|
|
|
ISOPath: isoPath,
|
2013-06-04 19:52:59 -04:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:23:22 -04:00
|
|
|
vmxTemplate := DefaultVMXTemplate
|
|
|
|
if config.VMXTemplatePath != "" {
|
|
|
|
f, err := os.Open(config.VMXTemplatePath)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error reading VMX template: %s", err)
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("error", err)
|
2013-08-27 20:23:22 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2013-06-07 19:20:58 -04:00
|
|
|
|
2013-08-27 20:23:22 -04:00
|
|
|
rawBytes, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error reading VMX template: %s", err)
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("error", err)
|
2013-08-27 20:23:22 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
vmxTemplate = string(rawBytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
vmxContents, err := config.tpl.Process(vmxTemplate, tplData)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error procesing VMX template: %s", err)
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("error", err)
|
2013-08-27 20:23:22 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-11-08 00:02:12 -05:00
|
|
|
vmxDir := config.OutputDir
|
|
|
|
if config.RemoteType != "" {
|
|
|
|
// For remote builds, we just put the VMX in a temporary
|
|
|
|
// directory since it just gets uploaded anyways.
|
|
|
|
vmxDir, err = ioutil.TempDir("", "packer-vmx")
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error preparing VMX template: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the tempDir so we clean it up
|
|
|
|
s.tempDir = vmxDir
|
|
|
|
}
|
|
|
|
|
|
|
|
vmxPath := filepath.Join(vmxDir, config.VMName+".vmx")
|
2013-12-24 01:09:47 -05:00
|
|
|
if err := vmwcommon.WriteVMX(vmxPath, vmwcommon.ParseVMX(vmxContents)); err != nil {
|
2013-06-20 00:20:48 -04:00
|
|
|
err := fmt.Errorf("Error creating VMX file: %s", err)
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("error", err)
|
2013-06-20 00:20:48 -04:00
|
|
|
ui.Error(err.Error())
|
2013-06-07 19:20:58 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-06-04 19:52:59 -04:00
|
|
|
|
2013-08-31 15:50:25 -04:00
|
|
|
state.Put("vmx_path", vmxPath)
|
2013-06-05 16:17:56 -04:00
|
|
|
|
2013-06-04 19:52:59 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-11-08 00:02:12 -05:00
|
|
|
func (s *stepCreateVMX) Cleanup(multistep.StateBag) {
|
|
|
|
if s.tempDir != "" {
|
|
|
|
os.RemoveAll(s.tempDir)
|
|
|
|
}
|
2013-06-04 19:52:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is the default VMX template used if no other template is given.
|
|
|
|
// This is hardcoded here. If you wish to use a custom template please
|
|
|
|
// do so by specifying in the builder configuration.
|
|
|
|
const DefaultVMXTemplate = `
|
|
|
|
.encoding = "UTF-8"
|
|
|
|
bios.bootOrder = "hdd,CDROM"
|
|
|
|
checkpoint.vmState = ""
|
|
|
|
cleanShutdown = "TRUE"
|
|
|
|
config.version = "8"
|
|
|
|
displayName = "{{ .Name }}"
|
|
|
|
ehci.pciSlotNumber = "34"
|
|
|
|
ehci.present = "TRUE"
|
|
|
|
ethernet0.addressType = "generated"
|
|
|
|
ethernet0.bsdName = "en0"
|
|
|
|
ethernet0.connectionType = "nat"
|
|
|
|
ethernet0.displayName = "Ethernet"
|
|
|
|
ethernet0.linkStatePropagation.enable = "FALSE"
|
|
|
|
ethernet0.pciSlotNumber = "33"
|
|
|
|
ethernet0.present = "TRUE"
|
|
|
|
ethernet0.virtualDev = "e1000"
|
|
|
|
ethernet0.wakeOnPcktRcv = "FALSE"
|
|
|
|
extendedConfigFile = "{{ .Name }}.vmxf"
|
|
|
|
floppy0.present = "FALSE"
|
|
|
|
guestOS = "{{ .GuestOS }}"
|
|
|
|
gui.fullScreenAtPowerOn = "FALSE"
|
|
|
|
gui.viewModeAtPowerOn = "windowed"
|
|
|
|
hgfs.linkRootShare = "TRUE"
|
|
|
|
hgfs.mapRootShare = "TRUE"
|
2013-06-04 20:00:29 -04:00
|
|
|
ide1:0.present = "TRUE"
|
|
|
|
ide1:0.fileName = "{{ .ISOPath }}"
|
|
|
|
ide1:0.deviceType = "cdrom-image"
|
2013-06-04 19:52:59 -04:00
|
|
|
isolation.tools.hgfs.disable = "FALSE"
|
|
|
|
memsize = "512"
|
|
|
|
nvram = "{{ .Name }}.nvram"
|
|
|
|
pciBridge0.pciSlotNumber = "17"
|
|
|
|
pciBridge0.present = "TRUE"
|
|
|
|
pciBridge4.functions = "8"
|
|
|
|
pciBridge4.pciSlotNumber = "21"
|
|
|
|
pciBridge4.present = "TRUE"
|
|
|
|
pciBridge4.virtualDev = "pcieRootPort"
|
|
|
|
pciBridge5.functions = "8"
|
|
|
|
pciBridge5.pciSlotNumber = "22"
|
|
|
|
pciBridge5.present = "TRUE"
|
|
|
|
pciBridge5.virtualDev = "pcieRootPort"
|
|
|
|
pciBridge6.functions = "8"
|
|
|
|
pciBridge6.pciSlotNumber = "23"
|
|
|
|
pciBridge6.present = "TRUE"
|
|
|
|
pciBridge6.virtualDev = "pcieRootPort"
|
|
|
|
pciBridge7.functions = "8"
|
|
|
|
pciBridge7.pciSlotNumber = "24"
|
|
|
|
pciBridge7.present = "TRUE"
|
|
|
|
pciBridge7.virtualDev = "pcieRootPort"
|
|
|
|
powerType.powerOff = "soft"
|
|
|
|
powerType.powerOn = "soft"
|
|
|
|
powerType.reset = "soft"
|
|
|
|
powerType.suspend = "soft"
|
|
|
|
proxyApps.publishToHost = "FALSE"
|
|
|
|
replay.filename = ""
|
|
|
|
replay.supported = "FALSE"
|
|
|
|
scsi0.pciSlotNumber = "16"
|
|
|
|
scsi0.present = "TRUE"
|
|
|
|
scsi0.virtualDev = "lsilogic"
|
|
|
|
scsi0:0.fileName = "{{ .DiskName }}.vmdk"
|
|
|
|
scsi0:0.present = "TRUE"
|
|
|
|
scsi0:0.redo = ""
|
|
|
|
sound.startConnected = "FALSE"
|
|
|
|
tools.syncTime = "TRUE"
|
|
|
|
tools.upgrade.policy = "upgradeAtPowerCycle"
|
|
|
|
usb.pciSlotNumber = "32"
|
|
|
|
usb.present = "FALSE"
|
|
|
|
virtualHW.productCompatibility = "hosted"
|
|
|
|
virtualHW.version = "9"
|
|
|
|
vmci0.id = "1861462627"
|
|
|
|
vmci0.pciSlotNumber = "35"
|
|
|
|
vmci0.present = "TRUE"
|
|
|
|
vmotion.checkpointFBSize = "65536000"
|
|
|
|
`
|