Commit 1a20b00d by Seth Vidal

If the error is an authentication exception - just report it that way don't dump…

If the error is an authentication exception - just report it that way don't dump out an unappetizing traceback which just says the same
parent 5781e6e0
......@@ -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() ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment