Skip to content
Snippets Groups Projects
Commit 305cb9bb authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

QA: Use pseudo-tty via SSH

This gives continous output instead it being buffered.

Reviewed-by: ultrotter
parent e67bd559
No related merge requests found
...@@ -101,7 +101,7 @@ def GetSSHCommand(node, cmd, strict=True): ...@@ -101,7 +101,7 @@ def GetSSHCommand(node, cmd, strict=True):
- strict: Whether to enable strict host key checking - strict: Whether to enable strict host key checking
""" """
args = [ 'ssh', '-oEscapeChar=none', '-oBatchMode=yes', '-l', 'root' ] args = [ 'ssh', '-oEscapeChar=none', '-oBatchMode=yes', '-l', 'root', '-t' ]
if strict: if strict:
tmp = 'yes' tmp = 'yes'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment