Ovirt correct sysprep backport (#59286)

* use sysprep only when needed (#59196)

* add changelog
pull/59410/head
Martin Nečas 7 years ago committed by Toshio Kuratomi
parent 8074fa9a3e
commit 5447dc855b

@ -0,0 +1,2 @@
bugfixes:
- "Check when user does pass empty dict to sysprep. Fixes https://github.com/oVirt/ovirt-ansible-vm-infra/issues/104"

@ -2332,8 +2332,8 @@ def main():
),
wait_condition=lambda vm: vm.status == otypes.VmStatus.UP,
# Start action kwargs:
use_cloud_init=True if not module.params.get('cloud_init_persist') and module.params.get('cloud_init') is not None else None,
use_sysprep=True if not module.params.get('cloud_init_persist') and module.params.get('sysprep') is not None else None,
use_cloud_init=True if not module.params.get('cloud_init_persist') and module.params.get('cloud_init') else None,
use_sysprep=True if not module.params.get('cloud_init_persist') and module.params.get('sysprep') else None,
vm=otypes.Vm(
placement_policy=otypes.VmPlacementPolicy(
hosts=[otypes.Host(name=module.params['host'])]

Loading…
Cancel
Save