Remove redundant check for pyopenssl ()

This commit is contained in:
gp 2020-03-01 15:32:49 -05:00 committed by GitHub
parent 99e657162f
commit 44d8ce9b31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions
changelogs/fragments
lib/ansible/modules/crypto

View file

@ -0,0 +1,2 @@
bugfixes:
- get_certificate - Fix cryptography backend when pyopenssl is unavailable (https://github.com/ansible/ansible/issues/67900)

View file

@ -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)