mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 22:30:22 -07:00
ovirt vmpool fix (#57453)
This commit is contained in:
parent
6f06fc9945
commit
8a02901e5f
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ class VmPoolsModule(BaseModule):
|
||||||
type=otypes.VmPoolType(
|
type=otypes.VmPoolType(
|
||||||
self._module.params['type']
|
self._module.params['type']
|
||||||
) if self._module.params['type'] else None,
|
) if self._module.params['type'] else None,
|
||||||
vm=self.build_vm(vm)
|
vm=self.build_vm(vm) if self._module.params['vm'] else None,
|
||||||
)
|
)
|
||||||
|
|
||||||
def build_vm(self, vm):
|
def build_vm(self, vm):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue