Actions
Feature #4533
openBoot options configuration for VMware guests
Status:
New
Priority:
Normal
Assignee:
-
Category:
Compute resources - VMware
Target version:
-
Description
The ability to change the "Options" for a vmware guest would be very important. For example, the configuration of hot-plug and boot options are commonly used in enterprises.
Updated by Angelo Lisco almost 11 years ago
Maybe we can mark this as a child of http://projects.theforeman.org/issues/1946
Updated by Dominic Cleal almost 11 years ago
- Related to Feature #1946: Addition VMWare options required for VM creation added
Updated by Dominic Cleal over 10 years ago
- Category changed from Compute resources to Compute resources - VMware
Updated by Mathieu Parent over 9 years ago
Mem and CPU hotplug has a separate ticket : http://projects.theforeman.org/issues/8295
This one should be retitled to focus on "boot options".
Updated by Dominic Cleal over 9 years ago
- Subject changed from Vmware guest Options to Boot options configuration for VMware guests
Updated by Mathieu Parent over 9 years ago
A powershell snipset to limit boot modes :
$VM = YourVMName $spec = New-Object VMware.Vim.VirtualMachineConfigSpec $spec.extraConfig += New-Object VMware.Vim.OptionValue $spec.extraConfig[0].key = "bios.bootDeviceClasses" $spec.extraConfig[0].value = "allow:net,hd,cd"
Note that option sets only list of allowed device classes, not their
order - so 'allow:net,cd' and 'allow:cd,net' are equivalent.
Ref : http://download3.vmware.com/sample_code/Perl/VMBootOrder.html
Updated by Greg Koch almost 8 years ago
- Related to Feature #19013: It would be useful if Boot Retry was enabled or configurable added
Actions