d4e7b045b7
* openssl_privatekey: Extend test coverage Extend the coverage of the integration test for the module openssl_privatekey. New tests have been added: * passphrase * idempotence * removal Co-Authored-By: Pierre-Louis Bonicoli <pierre-louis.bonicoli@gmx.fr> * openssl_publickey: Extend test coverage Extend the coverage on the integration test for the module openssl_publickey. New tests have been added: * OpenSSH format * passphrase * idempotence * removal
33 lines
1,011 B
YAML
33 lines
1,011 B
YAML
- name: Incluse OS-specific variables
|
|
include_vars: '{{ ansible_os_family }}.yml'
|
|
when: not ansible_os_family == "Darwin"
|
|
|
|
- name: Install pyOpenSSL
|
|
become: True
|
|
package:
|
|
name: '{{ pyopenssl_package_name_python3 }}'
|
|
when: not ansible_os_family == 'Darwin' and ansible_python_version|version_compare('3.0', '>=')
|
|
|
|
- name: Install pyOpenSSL
|
|
become: True
|
|
package:
|
|
name: '{{ pyopenssl_package_name }}'
|
|
when: not ansible_os_family == 'Darwin' and ansible_python_version|version_compare('3.0', '<')
|
|
|
|
- name: Install pyOpenSSL
|
|
become: True
|
|
pip:
|
|
name: pyOpenSSL
|
|
when: ansible_os_family == 'Darwin'
|
|
|
|
- name: register pyOpenSSL version
|
|
command: python -c 'import OpenSSL; print(OpenSSL.__version__)'
|
|
register: pyopenssl_version
|
|
|
|
- name: register openssl version
|
|
shell: "openssl version | cut -d' ' -f2"
|
|
register: openssl_version
|
|
|
|
- name: register cryptography version
|
|
command: python -c 'import cryptography; print(cryptography.__version__)'
|
|
register: cryptography_version
|