From 3864760c5283e9796085faed44b597479df5659f Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 17 Sep 2013 18:03:59 +0200 Subject: test_integration: Add OpenSSHTransport, used if paramiko is not available This adds a transport that uses /usr/bin/ssh calls to communicate with remote hosts. This transport is a bit slower and buffers output more than paramiko, so it is only used if paramiko is not available, or forced with an environment variable. https://fedorahosted.org/freeipa/ticket/3890 --- ipatests/test_integration/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests/test_integration/host.py') diff --git a/ipatests/test_integration/host.py b/ipatests/test_integration/host.py index 38d9ae6f..7e5fca1c 100644 --- a/ipatests/test_integration/host.py +++ b/ipatests/test_integration/host.py @@ -178,7 +178,7 @@ class BaseHost(object): class Host(BaseHost): """A Unix host""" - transport_class = transport.ParamikoTransport + transport_class = transport.SSHTransport def run_command(self, argv, set_env=True, stdin_text=None, log_stdout=True, raiseonerr=True, -- cgit