Commit c2f1aefa by Jeroen Hoekx

Expand user in SSH identity file.

parent 1804df0b
...@@ -99,7 +99,7 @@ class ParamikoConnection(object): ...@@ -99,7 +99,7 @@ class ParamikoConnection(object):
if 'user' in credentials: if 'user' in credentials:
user = credentials['user'] user = credentials['user']
if 'identityfile' in credentials: if 'identityfile' in credentials:
keypair = credentials['identityfile'] keypair = os.path.expanduser(credentials['identityfile'])
ssh = paramiko.SSHClient() ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
......
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