Remove redundant check for pyopenssl (#67901)
This commit is contained in:
parent
99e657162f
commit
44d8ce9b31
2 changed files with 2 additions and 3 deletions
changelogs/fragments
lib/ansible/modules/crypto
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- get_certificate - Fix cryptography backend when pyopenssl is unavailable (https://github.com/ansible/ansible/issues/67900)
|
|
@ -258,9 +258,6 @@ def main():
|
|||
changed=False,
|
||||
)
|
||||
|
||||
if not PYOPENSSL_FOUND:
|
||||
module.fail_json(msg=missing_required_lib('pyOpenSSL >= 0.15'), exception=PYOPENSSL_IMP_ERR)
|
||||
|
||||
if timeout:
|
||||
setdefaulttimeout(timeout)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue