mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
If the error is an authentication exception - just report it that way don't dump out an unappetizing traceback which just says the same
This commit is contained in:
@@ -108,6 +108,8 @@ class Runner(object):
|
||||
ssh.connect(host, username=self.remote_user, allow_agent=True,
|
||||
look_for_keys=True, password=self.remote_pass)
|
||||
return [ True, ssh ]
|
||||
except paramiko.AuthenticationException, e:
|
||||
return [ False, str(e) ]
|
||||
except:
|
||||
# it failed somehow, return the failure string
|
||||
return [ False, traceback.format_exc() ]
|
||||
|
||||
Reference in New Issue
Block a user