From 6dfba210f99da6c684997d6c8a3c600e28dd71c5 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Fri, 18 Nov 2016 13:20:08 +0000 Subject: [PATCH] Fixed bug in openvim when connecting using ssh key file Signed-off-by: garciadeblas --- dhcp_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dhcp_thread.py b/dhcp_thread.py index 5cf1e80..f482334 100644 --- a/dhcp_thread.py +++ b/dhcp_thread.py @@ -76,7 +76,7 @@ class dhcp_thread(threading.Thread): self.ssh_conn.set_missing_host_key_policy(paramiko.AutoAddPolicy()) self.ssh_conn.load_system_host_keys() self.ssh_conn.connect(self.dhcp_params["host"], port=self.dhcp_params.get("port",22), - username=self.dhcp_params["user"], password=self.dhcp_params.get("password"), pkey=self.dhcp_params.get("key"), + username=self.dhcp_params["user"], password=self.dhcp_params.get("password"), key_filename=self.dhcp_params.get("key"), timeout=2) except paramiko.ssh_exception.SSHException as e: text = e.args[0] -- 2.25.1