diff --git a/lib/vagrant/ssh.rb b/lib/vagrant/ssh.rb index 5be5494f574..59cace32106 100644 --- a/lib/vagrant/ssh.rb +++ b/lib/vagrant/ssh.rb @@ -79,7 +79,7 @@ def exec(opts={}) "-o", "StrictHostKeyChecking=no", "-o", "LogLevel=ERROR"] # Solaris/OpenSolaris/Illumos uses SunSSH which doesn't support the IdentitiesOnly option - command_options += ["-o", "IdentitiesOnly=yes"] unless Util::Platform.solaris? + command_options += ["-o", "IdentitiesOnly=yes"] if !Util::Platform.solaris? command_options += ["-i", options[:private_key_path]] if !plain_mode command_options += ["-o", "ForwardAgent=yes"] if ssh_info[:forward_agent]