Fix issue in activating the VM disk while attaching disk
Currently <active> tag is passed within the disk element which is incorrect. As a result, disk will remain inactive even though the default option is true.
This commit is contained in:
parent
80f622a075
commit
b55c973444
1 changed files with 1 additions and 1 deletions
|
@ -532,8 +532,8 @@ class VmsModule(BaseModule):
|
|||
otypes.DiskAttachment(
|
||||
disk=otypes.Disk(
|
||||
id=disk_id,
|
||||
active=disk.get('activate', True),
|
||||
),
|
||||
active=disk.get('activate', True),
|
||||
interface=otypes.DiskInterface(
|
||||
disk.get('interface', 'virtio')
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue