|
|
|
|
@ -20,10 +20,12 @@ import (
|
|
|
|
|
// Produces:
|
|
|
|
|
// display_name string - Value of the displayName key set in the VMX file
|
|
|
|
|
type StepConfigureVMX struct {
|
|
|
|
|
CustomData map[string]string
|
|
|
|
|
DisplayName string
|
|
|
|
|
SkipFloppy bool
|
|
|
|
|
VMName string
|
|
|
|
|
CustomData map[string]string
|
|
|
|
|
DisplayName string
|
|
|
|
|
SkipFloppy bool
|
|
|
|
|
VMName string
|
|
|
|
|
DiskAdapterType string
|
|
|
|
|
CDROMAdapterType string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *StepConfigureVMX) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
|
|
|
@ -83,6 +85,17 @@ func (s *StepConfigureVMX) Run(ctx context.Context, state multistep.StateBag) mu
|
|
|
|
|
state.Put("temporaryDevices", tmpBuildDevices)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add our custom CD, if it exists
|
|
|
|
|
if cdPath, ok := state.GetOk("cd_path"); ok {
|
|
|
|
|
if cdPath != "" {
|
|
|
|
|
diskAndCDConfigData := DefaultDiskAndCDROMTypes(s.DiskAdapterType, s.CDROMAdapterType)
|
|
|
|
|
cdromPrefix := diskAndCDConfigData.CDROMType + "1:" + diskAndCDConfigData.CDROMType_PrimarySecondary
|
|
|
|
|
vmxData[cdromPrefix+".present"] = "TRUE"
|
|
|
|
|
vmxData[cdromPrefix+".fileName"] = cdPath.(string)
|
|
|
|
|
vmxData[cdromPrefix+".deviceType"] = "cdrom-image"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the build is taking place on a remote ESX server, the displayName
|
|
|
|
|
// will be needed for discovery of the VM's IP address and for export
|
|
|
|
|
// of the VM. The displayName key should always be set in the VMX file,
|
|
|
|
|
@ -125,5 +138,86 @@ func (s *StepConfigureVMX) Run(ctx context.Context, state multistep.StateBag) mu
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DiskAndCDConfigData struct {
|
|
|
|
|
SCSI_Present string
|
|
|
|
|
SCSI_diskAdapterType string
|
|
|
|
|
SATA_Present string
|
|
|
|
|
NVME_Present string
|
|
|
|
|
|
|
|
|
|
DiskType string
|
|
|
|
|
CDROMType string
|
|
|
|
|
CDROMType_PrimarySecondary string
|
|
|
|
|
CDROM_PATH string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DefaultDiskAndCDROMTypes takes the disk adapter type and cdrom adapter type from the config and converts them
|
|
|
|
|
// into template interpolation data for creating or configuring a vmx.
|
|
|
|
|
func DefaultDiskAndCDROMTypes(diskAdapterType string, cdromAdapterType string) DiskAndCDConfigData {
|
|
|
|
|
diskData := DiskAndCDConfigData{
|
|
|
|
|
SCSI_Present: "FALSE",
|
|
|
|
|
SCSI_diskAdapterType: "lsilogic",
|
|
|
|
|
SATA_Present: "FALSE",
|
|
|
|
|
NVME_Present: "FALSE",
|
|
|
|
|
|
|
|
|
|
DiskType: "scsi",
|
|
|
|
|
CDROMType: "ide",
|
|
|
|
|
CDROMType_PrimarySecondary: "0",
|
|
|
|
|
}
|
|
|
|
|
/// Use the disk adapter type that the user specified to tweak the .vmx
|
|
|
|
|
// Also sync the cdrom adapter type according to what's common for that disk type.
|
|
|
|
|
// XXX: If the cdrom type is modified, make sure to update common/step_clean_vmx.go
|
|
|
|
|
// so that it will regex the correct cdrom device for removal.
|
|
|
|
|
diskAdapterType = strings.ToLower(diskAdapterType)
|
|
|
|
|
switch diskAdapterType {
|
|
|
|
|
case "ide":
|
|
|
|
|
diskData.DiskType = "ide"
|
|
|
|
|
diskData.CDROMType = "ide"
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "1"
|
|
|
|
|
case "sata":
|
|
|
|
|
diskData.SATA_Present = "TRUE"
|
|
|
|
|
diskData.DiskType = "sata"
|
|
|
|
|
diskData.CDROMType = "sata"
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "1"
|
|
|
|
|
case "nvme":
|
|
|
|
|
diskData.NVME_Present = "TRUE"
|
|
|
|
|
diskData.DiskType = "nvme"
|
|
|
|
|
diskData.SATA_Present = "TRUE"
|
|
|
|
|
diskData.CDROMType = "sata"
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "0"
|
|
|
|
|
case "scsi":
|
|
|
|
|
diskAdapterType = "lsilogic"
|
|
|
|
|
fallthrough
|
|
|
|
|
default:
|
|
|
|
|
diskData.SCSI_Present = "TRUE"
|
|
|
|
|
diskData.SCSI_diskAdapterType = diskAdapterType // defaults to lsilogic
|
|
|
|
|
diskData.DiskType = "scsi"
|
|
|
|
|
diskData.CDROMType = "ide"
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "0"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Handle the cdrom adapter type. If the disk adapter type and the
|
|
|
|
|
// cdrom adapter type are the same, then ensure that the cdrom is the
|
|
|
|
|
// secondary device on whatever bus the disk adapter is on.
|
|
|
|
|
if cdromAdapterType == "" {
|
|
|
|
|
cdromAdapterType = diskData.CDROMType
|
|
|
|
|
} else if cdromAdapterType == diskAdapterType {
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "1"
|
|
|
|
|
} else {
|
|
|
|
|
diskData.CDROMType_PrimarySecondary = "0"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch cdromAdapterType {
|
|
|
|
|
case "ide":
|
|
|
|
|
diskData.CDROMType = "ide"
|
|
|
|
|
case "sata":
|
|
|
|
|
diskData.SATA_Present = "TRUE"
|
|
|
|
|
diskData.CDROMType = "sata"
|
|
|
|
|
case "scsi":
|
|
|
|
|
diskData.SCSI_Present = "TRUE"
|
|
|
|
|
diskData.CDROMType = "scsi"
|
|
|
|
|
}
|
|
|
|
|
return diskData
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *StepConfigureVMX) Cleanup(state multistep.StateBag) {
|
|
|
|
|
}
|
|
|
|
|
|