lib/oeqa: sshcontrol: Allow alternate port for SSHControl

Add an optional parameter to SSHControl so the user can specify
and alternate port to the default (22).

(From OE-Core rev: 091d395e43836575587112ee1696a18c401505bb)

Signed-off-by: Sipke Vriend <sipke.vriend@xilinx.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Sipke Vriend
2014-01-28 08:25:09 +10:00
committed by Richard Purdie
parent 51cccb7fb9
commit b3bb841fe6

View File

@@ -13,7 +13,7 @@ import select
class SSHControl(object):
def __init__(self, ip=None, timeout=300, logfile=None):
def __init__(self, ip=None, timeout=300, logfile=None, port=None):
self.ip = ip
self.timeout = timeout
self._starttime = None
@@ -26,6 +26,8 @@ class SSHControl(object):
'-o', 'LogLevel=ERROR'
]
self.ssh = ['ssh', '-l', 'root'] + self.ssh_options
if port:
self.ssh = self.ssh + ['-p', str(port)]
def log(self, msg):
if self.logfile: