mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
0d9392a3bc
commit
fbec2ecaa8
1 changed files with 4 additions and 2 deletions
|
@ -641,8 +641,10 @@ class PyVmomiHelper(object):
|
|||
if not isinstance(vobj.parent, vim.Folder):
|
||||
continue
|
||||
if self.compile_folder_path_for_object(vobj) == searchpath:
|
||||
self.current_vm_obj = vobj
|
||||
return vobj
|
||||
# Match by name
|
||||
if vobj.config.name == name:
|
||||
self.current_vm_obj = vobj
|
||||
return vobj
|
||||
|
||||
if name_match:
|
||||
if name_match == 'first':
|
||||
|
|
Loading…
Reference in a new issue