Merge pull request #11385 from meitar/patch-1

Detail other valid values for `config.ssh.verify_host_key`.
This commit is contained in:
Brian Cain 2020-02-11 09:22:07 -08:00 committed by GitHub
commit d5caf672da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,4 +138,6 @@ appropriate user. By default this is "vagrant", since that is what most
public boxes are made as.
* `config.ssh.verify_host_key` (string, symbol) - Perform strict host-key verification. The
default value is `:never`.
default value is `:never`. The other options are `:accept_new_or_local_tunnel`,
`:accept_new`, or `:always`, which each refer to one of
[net-ssh](https://net-ssh.github.io/net-ssh/)'s `Net::SSH::Verifiers` subclasses.