Paramiko might not come standard everywhere (#54486)

* Paramiko might not come standard everywhere

There is a platform where paramiko isn't shipped but a special version
of paramiko just for our use is shipped.  This code imports paramiko
from that location.
This commit is contained in:
Toshio Kuratomi 2019-04-02 10:06:51 -07:00 committed by GitHub
parent 48c7501768
commit b03c16fa8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 9 deletions

View file

@ -216,9 +216,12 @@ try:
except ImportError:
HAS_B64 = False
HAS_PARAMIKO = True
try:
import paramiko
HAS_PARAMIKO = True
except ImportError:
try:
import ansible_paramiko as paramiko
except ImportError:
HAS_PARAMIKO = False

View file

@ -165,9 +165,12 @@ from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_arg
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils._text import to_native, to_text, to_bytes
HAS_PARAMIKO = True
try:
import paramiko
HAS_PARAMIKO = True
except ImportError:
try:
import ansible_paramiko as paramiko
except ImportError:
HAS_PARAMIKO = False

View file

@ -86,9 +86,12 @@ from ansible.module_utils.basic import AnsibleModule
import time
import sys
HAS_LIB = True
try:
import paramiko
HAS_LIB = True
except ImportError:
try:
import ansible_paramiko as paramiko
except ImportError:
HAS_LIB = False

View file

@ -91,12 +91,16 @@ from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils._text import to_native
import time
HAS_LIB = True
try:
import paramiko
HAS_LIB = True
except ImportError:
try:
import ansible_paramiko as paramiko
except ImportError:
HAS_LIB = False
_PROMPTBUFF = 4096

View file

@ -176,8 +176,14 @@ with warnings.catch_warnings():
try:
import paramiko
HAVE_PARAMIKO = True
except ImportError:
try:
import ansible_paramiko as paramiko
HAVE_PARAMIKO = True
except (ImportError, AttributeError) as err: # paramiko and gssapi are incompatible and raise AttributeError not ImportError
PARAMIKO_IMP_ERR = err
except AttributeError as err: # paramiko and gssapi are incompatible and raise AttributeError not ImportError
PARAMIKO_IMP_ERR = err
class MyAddPolicy(object):