Print specific error for BadHostKeyException (#24120)
parent
e09cd58a17
commit
f9ec06d1dc
|
@ -245,6 +245,8 @@ class Connection(ConnectionBase):
|
||||||
port=port,
|
port=port,
|
||||||
**sock_kwarg
|
**sock_kwarg
|
||||||
)
|
)
|
||||||
|
except paramiko.ssh_exception.BadHostKeyException as e:
|
||||||
|
raise AnsibleConnectionFailure('host key mismatch for %s' % e.hostname)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
msg = str(e)
|
msg = str(e)
|
||||||
if "PID check failed" in msg:
|
if "PID check failed" in msg:
|
||||||
|
|
Loading…
Reference in New Issue