vmware_guest: Do not match simply by folder (#19823)

This fixes #19077
This commit is contained in:
Dag Wieers 2017-01-04 10:26:29 +01:00 committed by John R Barker
parent 0d9392a3bc
commit fbec2ecaa8

View file

@ -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':