Update CHANGELOG, fix tests

This commit is contained in:
Mitchell Hashimoto 2014-04-27 15:53:31 -07:00
parent 617a85be06
commit df86b18263
2 changed files with 6 additions and 1 deletions

View File

@ -61,6 +61,7 @@ BUG FIXES:
- synced\_folders/nfs: Acquires a process-level lock so exports don't
collide with Vagrant running in parallel.
- synced\_folders/rsync: Add UserKnownHostsFile option to not complain. [GH-3511]
- synced\_folders/rsync: Proxy command is used properly if set. [GH-3553]
PLUGIN AUTHOR CHANGES:

View File

@ -56,7 +56,11 @@ module VagrantPlugins
# Connection information
username = ssh_info[:username]
host = ssh_info[:host]
proxy_command = "-o ProxyCommand='#{ssh_info[:proxy_command]}' " if ssh_info[:proxy_command]
proxy_command = ""
if ssh_info[:proxy_command]
proxy_command = "-o ProxyCommand='#{ssh_info[:proxy_command]}' "
end
rsh = [
"ssh -p #{ssh_info[:port]} " +
proxy_command +