tobiko/tobiko/shell/ssh/__init__.py
Federico Ressi 0a81543134 Add support for SSH proxy in os-faults integration.
Change-Id: I07fbae3c477b4075ffba6b454b4a5f62d53cf63d
2019-10-01 16:27:41 +00:00

31 lines
1.1 KiB
Python

# Copyright (c) 2019 Red Hat, Inc.
#
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import absolute_import
from tobiko.shell.ssh import _config
from tobiko.shell.ssh import _client
from tobiko.shell.ssh import _command
SSHHostConfig = _config.SSHHostConfig
ssh_host_config = _config.ssh_host_config
SSHClientFixture = _client.SSHClientFixture
ssh_client = _client.ssh_client
ssh_command = _command.ssh_command
ssh_proxy_client = _client.ssh_proxy_client
SSHConnectFailure = _client.SSHConnectFailure
gather_ssh_connect_parameters = _client.gather_ssh_connect_parameters