/etc/vmbuilder/vmware/esxi.vmx.tmpl is in python-vm-builder 0.12.4+bzr494-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | config.version = "8"
virtualHW.version = "$vmhwversion"
floppy0.present = "true"
nvram = "nvram"
deploymentPlatform = "windows"
virtualHW.productCompatibility = "hosted"
tools.upgrade.policy = "useGlobal"
powerType.powerOff = "default"
powerType.powerOn = "default"
powerType.suspend = "default"
powerType.reset = "default"
displayName = "$hostname $arch"
numvcpus = "$numvcpus"
scsi0.present = "true"
scsi0.sharedBus = "none"
scsi0.virtualDev = "lsilogic"
memsize = "$mem"
#set $i = -1
#for $disk in $disks
#set $i = $i + 1
#set $bus = $i / 2
#set $id = $i % 2
scsi${bus}:${id}.present = "true"
scsi${bus}:${id}.fileName = "${disk}.vmdk"
scsi${bus}:${id}.deviceType = "scsi-hardDisk"
#end for
ide0:0.present = "true"
ide0:0.clientDevice = "TRUE"
ide0:0.deviceType = "cdrom-raw"
ide0:0.startConnected = "FALSE"
floppy0.startConnected = "false"
floppy0.clientDevice = "true"
ethernet0.present = "true"
ethernet0.virtualDev = "e1000"
ethernet0.networkName = "VM Network"
ethernet0.addressType = "generated"
guestOSAltName = "$guestos ($arch)"
guestOS = "$guestos"
toolScripts.afterPowerOn = "true"
toolScripts.afterResume = "true"
toolScripts.beforeSuspend = "true"
toolScripts.beforePowerOff = "true"
scsi0:0.redo = ""
tools.syncTime = "FALSE"
ethernet0.generatedAddressOffset = "0"
tools.remindInstall = "TRUE"
evcCompatibilityMode = "FALSE"
|