summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/utils/sshcontrol.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/sshcontrol.py b/meta/lib/oeqa/utils/sshcontrol.py
index 3e53ec3e89..891325048c 100644
--- a/meta/lib/oeqa/utils/sshcontrol.py
+++ b/meta/lib/oeqa/utils/sshcontrol.py
@@ -13,7 +13,7 @@ import select
13 13
14class SSHControl(object): 14class SSHControl(object):
15 15
16 def __init__(self, ip=None, timeout=300, logfile=None): 16 def __init__(self, ip=None, timeout=300, logfile=None, port=None):
17 self.ip = ip 17 self.ip = ip
18 self.timeout = timeout 18 self.timeout = timeout
19 self._starttime = None 19 self._starttime = None
@@ -26,6 +26,8 @@ class SSHControl(object):
26 '-o', 'LogLevel=ERROR' 26 '-o', 'LogLevel=ERROR'
27 ] 27 ]
28 self.ssh = ['ssh', '-l', 'root'] + self.ssh_options 28 self.ssh = ['ssh', '-l', 'root'] + self.ssh_options
29 if port:
30 self.ssh = self.ssh + ['-p', str(port)]
29 31
30 def log(self, msg): 32 def log(self, msg):
31 if self.logfile: 33 if self.logfile: