Merge pull request #3895 from mscherer/fix_option_new_ssh
make sure ssh do not ask password
This commit is contained in:
commit
e6ad3b7792
1 changed files with 1 additions and 0 deletions
|
@ -85,6 +85,7 @@ class Connection(object):
|
|||
"-o", "PubkeyAuthentication=no"]
|
||||
else:
|
||||
self.common_args += ["-o", "KbdInteractiveAuthentication=no",
|
||||
"-o", "PreferredAuthentications=hostbased,publickey",
|
||||
"-o", "PasswordAuthentication=no"]
|
||||
if self.user != pwd.getpwuid(os.geteuid())[0]:
|
||||
self.common_args += ["-o", "User="+self.user]
|
||||
|
|
Loading…
Reference in a new issue