mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
first path check missing forward slash between dcpath and datacenter (#31481)
* fixed folder path logic * fixed folder path logic * fixed folder path logic
This commit is contained in:
@@ -1110,7 +1110,8 @@ class PyVmomiHelper(PyVmomi):
|
||||
dcpath = compile_folder_path_for_object(datacenter)
|
||||
|
||||
# Check for full path first in case it was already supplied
|
||||
if (self.params['folder'].startswith(dcpath + self.params['datacenter'] + '/vm')):
|
||||
if (self.params['folder'].startswith(dcpath + self.params['datacenter'] + '/vm') or
|
||||
self.params['folder'].startswith(dcpath + '/' + self.params['datacenter'] + '/vm')):
|
||||
fullpath = self.params['folder']
|
||||
elif (self.params['folder'].startswith('/vm/') or self.params['folder'] == '/vm'):
|
||||
fullpath = "%s%s%s" % (dcpath, self.params['datacenter'], self.params['folder'])
|
||||
|
||||
Reference in New Issue
Block a user