Add 'bhyve' as a valid brand for SmartOS vmadm (#65200)

This commit is contained in:
Nate Coraor 2019-11-25 09:50:39 -05:00 committed by Abhijeet Kasurde
parent b08e7daf46
commit 2d6f716d37

View file

@ -33,10 +33,10 @@ options:
- Whether or not a VM is booted when the system is rebooted.
brand:
required: true
choices: [ joyent, joyent-minimal, kvm, lx ]
choices: [ joyent, joyent-minimal, lx, kvm, bhyve ]
default: joyent
description:
- Type of virtual machine.
- Type of virtual machine. The C(bhyve) option was added in Ansible 2.10.
boot:
required: false
description:
@ -641,7 +641,7 @@ def main():
brand=dict(
default='joyent',
type='str',
choices=['joyent', 'joyent-minimal', 'kvm', 'lx']
choices=['joyent', 'joyent-minimal', 'lx', 'kvm', 'bhyve']
),
cpu_type=dict(
default='qemu64',