use sysprep only when needed (#59196)
This commit is contained in:
parent
cb201bfba1
commit
9489433a4d
1 changed files with 2 additions and 2 deletions
|
@ -2448,8 +2448,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…
Reference in a new issue