Add 'bhyve' as a valid brand for SmartOS vmadm (#65200)
This commit is contained in:
parent
b08e7daf46
commit
2d6f716d37
1 changed files with 3 additions and 3 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue