core: enable SSH compression for `vagrant ssh`

This commit is contained in:
Mitchell Hashimoto 2013-11-23 16:50:39 -08:00
parent 97c80c0a62
commit bc9d048066
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ IMPROVEMENTS:
- core: owner/group of shared folders can be specified by integers. [GH-2390] - core: owner/group of shared folders can be specified by integers. [GH-2390]
- commands/provision: Add `--no-parallel` option to disable provider - commands/provision: Add `--no-parallel` option to disable provider
parallelization if the provider supports it. [GH-2404] parallelization if the provider supports it. [GH-2404]
- commands/ssh: SSH compression is enabled by default. [GH-2456]
- providers/virtualbox: Enable symlinks for VirtualBox 4.1. [GH-2414] - providers/virtualbox: Enable symlinks for VirtualBox 4.1. [GH-2414]
- providers/virtualbox: default VM name now includes milliseconds with - providers/virtualbox: default VM name now includes milliseconds with
a random number to try to avoid conflicts in CI environments. [GH-2482] a random number to try to avoid conflicts in CI environments. [GH-2482]

View File

@ -100,6 +100,7 @@ module Vagrant
# Command line options # Command line options
command_options = [ command_options = [
"-p", options[:port].to_s, "-p", options[:port].to_s,
"-o", "Compression=yes",
"-o", "DSAAuthentication=yes", "-o", "DSAAuthentication=yes",
"-o", "LogLevel=FATAL", "-o", "LogLevel=FATAL",
"-o", "StrictHostKeyChecking=no", "-o", "StrictHostKeyChecking=no",