Add DSAAuthentication=yes flag to SSH [GH-1900]

This commit is contained in:
Mitchell Hashimoto 2013-07-16 16:46:00 -07:00
parent b531337718
commit 986eda4a4f
2 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,8 @@ BUG FIXES:
- NFS shared folders with single quotes in their name now work properly. [GH-1166]
- Debian/Ubuntu request DHCP renewal when hostname changes, which will
fix issues with FQDN detecting. [GH-1929]
- SSH adds the "DSAAuthentication=yes" option in case that is disabled
on the user's system. [GH-1900]
## 1.2.3 (July 9, 2013)

View File

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