Have paramiko use /etc/ssh_known_hosts
Fixes an issue with a confusing error: "paramiko: The authenticity of host '[host]' can't be established" when ssh on the command line doesn't complain Closes PR #7730
This commit is contained in:
parent
0858d97c44
commit
e4df8c3d36
1 changed files with 1 additions and 0 deletions
|
@ -152,6 +152,7 @@ class Connection(ConnectionBase):
|
||||||
self.keyfile = os.path.expanduser("~/.ssh/known_hosts")
|
self.keyfile = os.path.expanduser("~/.ssh/known_hosts")
|
||||||
|
|
||||||
if C.HOST_KEY_CHECKING:
|
if C.HOST_KEY_CHECKING:
|
||||||
|
ssh.load_system_host_keys("/etc/ssh/ssh_known_hosts")
|
||||||
ssh.load_system_host_keys()
|
ssh.load_system_host_keys()
|
||||||
|
|
||||||
ssh.set_missing_host_key_policy(MyAddPolicy(self._new_stdin))
|
ssh.set_missing_host_key_policy(MyAddPolicy(self._new_stdin))
|
||||||
|
|
Loading…
Reference in a new issue