Add "overriding" OVF template

This should allow us to generate "compliant" virtual machine images
that VMware Player does not complain about.
This commit is contained in:
Alexey Rogachevskiy
2020-06-29 23:28:56 +03:00
parent c437b219cd
commit 5a0f7b8c48
2 changed files with 182 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
"disk_size": "30000",
"hard_drive_interface": "sata",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "4096", "--vram", "128", "--mouse", "usbtablet", "--accelerate3d", "on", "--apic", "on", "--rtcuseutc", "on", "--graphicscontroller", "vmsvga"],
["modifyvm", "{{.Name}}", "--memory", "4096", "--vram", "128", "--mouse", "usbtablet", "--accelerate3d", "on", "--apic", "on", "--rtcuseutc", "on", "--graphicscontroller", "vmsvga", "--nictype1", "virtio"],
["storageattach", "{{.Name}}", "--storagectl", "SATA Controller", "--port", "0", "--nonrotational", "on", "--discard", "on"]
],