We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OVFs can specify multiple subtypes for a device (allowing the target host to choose which subtype it prefers/supports):
<rasd:ResourceSubType>virtio E1000</rasd:ResourceSubType>
but cot edit-hardware doesn't presently provide this option:
cot edit-hardware
$ cot edit-hardware foo.ova --nic-type e1000 virtio cot: error: unrecognized arguments: virtio $ cot edit-hardware foo.ova --nic-type "e1000 virtio" cot edit-hardware: error: argument --nic-type: invalid choice: 'e1000 virtio' (choose from 'e1000', 'virtio', 'vmxnet3') $ cot edit-hardware foo.ova --nic-type "e1000, virtio" cot edit-hardware: error: argument --nic-type: invalid choice: 'e1000, virtio' (choose from 'e1000', 'virtio', 'vmxnet3') $ cot edit-hardware foo.ova --nic-type e1000 --nic-type virtio # accepted as valid but the resulting OVA only has virtio subtype
The text was updated successfully, but these errors were encountered:
Change --nic-type to --nic-types (#45)
368811d
ide_subtypes and scsi_subtypes (#45)
ff20316
Fixed in v1.5.0
Sorry, something went wrong.
glennmatthews
No branches or pull requests
OVFs can specify multiple subtypes for a device (allowing the target host to choose which subtype it prefers/supports):
but
cot edit-hardware
doesn't presently provide this option:The text was updated successfully, but these errors were encountered: