aboutsummaryrefslogtreecommitdiff
path: root/rumba/ssh_support.py
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@ugent.be>2017-10-25 18:35:42 +0200
committerSander Vrijders <sander.vrijders@ugent.be>2017-10-25 19:07:58 +0200
commit6503ca2369a5cc876f33bcbc41b10972602571ea (patch)
tree815635c0e5ce200f0a6737f6a7aff6076baba2d5 /rumba/ssh_support.py
parent624a7885319ea71e0e1eef760d490871748d2967 (diff)
downloadrumba-6503ca2369a5cc876f33bcbc41b10972602571ea.tar.gz
rumba-6503ca2369a5cc876f33bcbc41b10972602571ea.zip
prototypes, testbeds, ssh_support: Add several fixes
This adds several fixes in order for rlite to function on the exogeni testbed.
Diffstat (limited to 'rumba/ssh_support.py')
-rw-r--r--rumba/ssh_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/ssh_support.py b/rumba/ssh_support.py
index d9be604..9aa312e 100644
--- a/rumba/ssh_support.py
+++ b/rumba/ssh_support.py
@@ -88,11 +88,11 @@ def ssh_connect(hostname, port, username, password, time_out, proxy_server):
logger.error('If you are sure this is not a man in the ' +
'middle attack, edit that file to remove the ' +
'entry and then hit return to try again.')
+ input()
except (paramiko.ssh_exception.SSHException, EOFError):
retry += 1
logger.error('Failed to connect to host, retrying: ' +
str(retry) + '/' + str(max_retries) + ' retries')
- input('Hit Enter when ready')
if retry == max_retries:
raise SSHException('Failed to connect to host')