Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions plugins/provisioners/ansible/provisioner/host.rb
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ def prepare_ansible_ssh_args

proxy_cmd += " exec nc %h %p 2>/dev/null"

ssh_options << "-o ProxyCommand='#{ proxy_cmd }'"
elsif @machine.ssh_info[:proxy_command] && @machine.provider_config.connect_via_ssh
proxy_cmd = @machine.ssh_info[:proxy_command]
ssh_options << "-o ProxyCommand='#{ proxy_cmd }'"
end

Expand Down