From 9c2f6ee0df0156eb2d6f8bbfce7fb2d59f765933 Mon Sep 17 00:00:00 2001
From: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Date: Fri, 16 Dec 2016 14:57:32 +0100
Subject: [PATCH] Allow all auth methods

There is no reason to not allow e.g. an ssh agent or to prevent ade
looking for keys, so drop the restrictions. Also fixes launching the
install job from eclipse as that doesn't seems to pass a user and relies
on ssh key authentication.

Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: Emanuele Aina <emanuele.aina@collabora.com>
Differential Revision: https://phabricator.apertis.org/D5344
---
 tools/ade | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/ade b/tools/ade
index 7df0839..90481c6 100755
--- a/tools/ade
+++ b/tools/ade
@@ -312,7 +312,6 @@ class Device:
         ssh = paramiko.SSHClient()
         ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
         ssh.connect(self.host, port=self.port,
-                    allow_agent=False, look_for_keys=False, gss_auth=False,
                     username=self.user, password=self.password)
         return ssh
 
-- 
GitLab