Skip to content

Commit

Permalink
Merge pull request #23 from avinetworks/AV-70540
Browse files Browse the repository at this point in the history
#AV-70540: Added support for cluster located inside folder.
  • Loading branch information
Gaurav Rastogi authored Nov 15, 2019
2 parents f637752 + ffec982 commit e038836
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/deploy_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ def main():
vi_string = 'vi://%s:%s@%s' % (
quoted_vcenter_user, quoted_vcenter_pass,
module.params['vcenter_host'])
vi_string += '/%s/host/%s' % (dc.name, cl.name)
vi_string += '/%s%s/%s' % (dc.name, compile_folder_path_for_object(cl),
cl.name)
command_tokens = [ovftool_exec]

if module.params['con_power_on'] and not is_reconfigure_vm(module):
Expand Down

0 comments on commit e038836

Please sign in to comment.