summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/core/target/ssh.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py
index 51079075b5..e650302052 100644
--- a/meta/lib/oeqa/core/target/ssh.py
+++ b/meta/lib/oeqa/core/target/ssh.py
@@ -40,8 +40,11 @@ class OESSHTarget(OETarget):
40 '-o', 'StrictHostKeyChecking=no', 40 '-o', 'StrictHostKeyChecking=no',
41 '-o', 'LogLevel=ERROR' 41 '-o', 'LogLevel=ERROR'
42 ] 42 ]
43 scp_options = [
44 '-r'
45 ]
43 self.ssh = ['ssh', '-l', self.user ] + ssh_options 46 self.ssh = ['ssh', '-l', self.user ] + ssh_options
44 self.scp = ['scp'] + ssh_options 47 self.scp = ['scp'] + ssh_options + scp_options
45 if port: 48 if port:
46 self.ssh = self.ssh + [ '-p', port ] 49 self.ssh = self.ssh + [ '-p', port ]
47 self.scp = self.scp + [ '-P', port ] 50 self.scp = self.scp + [ '-P', port ]