support ansible for remote servers and vm

This commit is contained in:
Dmitry Vasilets 2016-08-24 17:07:04 +02:00 committed by Gilles Cornu
parent 2281c9fc03
commit a943f67da1
No known key found for this signature in database
GPG Key ID: F6BC2CF7E1FE8FFF
1 changed files with 3 additions and 0 deletions

View File

@ -233,6 +233,9 @@ module VagrantPlugins
proxy_cmd += " exec nc %h %p 2>/dev/null"
ssh_options << "-o ProxyCommand='#{ proxy_cmd }'"
elsif @machine.provider_name == :libvirt && @machine.provider_config.connect_via_ssh
proxy_cmd = @machine.ssh_info[:proxy_command]
ssh_options << "-o ProxyCommand='#{ proxy_cmd }'"
end