Advertisement
WalterHWhite

Ansible local error

Jun 27th, 2022
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. hbarta@rocinante:~/Programming/Ansible/Pi$ ansible-playbook provision-local.yml -b -K --extra-vars "sd_dev=/dev/mmcblk0 \
  2.  
  3. os_image=/home/hbarta/Downloads/Pi/2022-04-04-raspios-bullseye-armhf-lite.img.xz \
  4.  
  5. new_host_name=tvberry"
  6. ERROR! Unexpected Exception, this is probably a bug: Unknown OpenSSL error. This error is commonly encountered when another library is not cleaning up the OpenSSL error stack. If you are using cryptography with another library that uses OpenSSL try disabling it before reporting a bug. Otherwise please file an issue at https://github.com/pyca/cryptography/issues with information on how to reproduce this. ([_OpenSSLErrorWithText(code=310378599, lib=37, reason=103, reason_text=b'error:12800067:DSO support routines::could not load the shared library'), _OpenSSLErrorWithText(code=310378599, lib=37, reason=103, reason_text=b'error:12800067:DSO support routines::could not load the shared library'), _OpenSSLErrorWithText(code=126615813, lib=15, reason=786693, reason_text=b'error:078C0105:common libcrypto routines::init fail')])
  7. the full traceback was:
  8.  
  9. Traceback (most recent call last):
  10. File "/usr/bin/ansible-playbook", line 97, in <module>
  11. mycli = getattr(__import__("ansible.cli.%s" % sub, fromlist=[myclass]), myclass)
  12. File "/usr/lib/python3/dist-packages/ansible/cli/__init__.py", line 21, in <module>
  13. from ansible.inventory.manager import InventoryManager
  14. File "/usr/lib/python3/dist-packages/ansible/inventory/manager.py", line 38, in <module>
  15. from ansible.plugins.loader import inventory_loader
  16. File "/usr/lib/python3/dist-packages/ansible/plugins/loader.py", line 23, in <module>
  17. from ansible.parsing.utils.yaml import from_yaml
  18. File "/usr/lib/python3/dist-packages/ansible/parsing/utils/yaml.py", line 17, in <module>
  19. from ansible.parsing.yaml.loader import AnsibleLoader
  20. File "/usr/lib/python3/dist-packages/ansible/parsing/yaml/loader.py", line 24, in <module>
  21. from ansible.parsing.yaml.constructor import AnsibleConstructor
  22. File "/usr/lib/python3/dist-packages/ansible/parsing/yaml/constructor.py", line 28, in <module>
  23. from ansible.parsing.vault import VaultLib
  24. File "/usr/lib/python3/dist-packages/ansible/parsing/vault/__init__.py", line 50, in <module>
  25. CRYPTOGRAPHY_BACKEND = default_backend()
  26. File "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/__init__.py", line 14, in default_backend
  27. from cryptography.hazmat.backends.openssl.backend import backend
  28. File "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__init__.py", line 6, in <module>
  29. from cryptography.hazmat.backends.openssl.backend import backend
  30. File "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/backend.py", line 114, in <module>
  31. from cryptography.hazmat.bindings.openssl import binding
  32. File "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py", line 189, in <module>
  33. Binding.init_static_locks()
  34. File "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py", line 163, in init_static_locks
  35. cls._ensure_ffi_initialized()
  36. File "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py", line 151, in _ensure_ffi_initialized
  37. _openssl_assert(
  38. File "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py", line 77, in _openssl_assert
  39. raise InternalError(
  40. cryptography.exceptions.InternalError: Unknown OpenSSL error. This error is commonly encountered when another library is not cleaning up the OpenSSL error stack. If you are using cryptography with another library that uses OpenSSL try disabling it before reporting a bug. Otherwise please file an issue at https://github.com/pyca/cryptography/issues with information on how to reproduce this. ([_OpenSSLErrorWithText(code=310378599, lib=37, reason=103, reason_text=b'error:12800067:DSO support routines::could not load the shared library'), _OpenSSLErrorWithText(code=310378599, lib=37, reason=103, reason_text=b'error:12800067:DSO support routines::could not load the shared library'), _OpenSSLErrorWithText(code=126615813, lib=15, reason=786693, reason_text=b'error:078C0105:common libcrypto routines::init fail')])
  41. hbarta@rocinante:~/Programming/Ansible/Pi$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement