2018-12-18 10:07:36 +01:00
|
|
|
---
|
2017-07-25 13:18:18 +02:00
|
|
|
- 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 }}'
|
2017-11-27 23:58:08 +01:00
|
|
|
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '>=')
|
2017-07-25 13:18:18 +02:00
|
|
|
|
|
|
|
- name: Install pyOpenSSL
|
|
|
|
become: True
|
|
|
|
package:
|
|
|
|
name: '{{ pyopenssl_package_name }}'
|
2017-11-27 23:58:08 +01:00
|
|
|
when: not ansible_os_family == 'Darwin' and ansible_python_version is version('3.0', '<')
|
2017-07-25 13:18:18 +02:00
|
|
|
|
|
|
|
- name: Install pyOpenSSL
|
|
|
|
become: True
|
|
|
|
pip:
|
|
|
|
name: pyOpenSSL
|
|
|
|
when: ansible_os_family == 'Darwin'
|
|
|
|
|
2017-08-21 13:19:41 +02:00
|
|
|
- name: register pyOpenSSL version
|
2018-10-19 09:00:34 +02:00
|
|
|
command: "{{ ansible_python.executable }} -c 'import OpenSSL; print(OpenSSL.__version__)'"
|
2017-07-25 13:18:18 +02:00
|
|
|
register: pyopenssl_version
|
2017-08-21 13:19:41 +02:00
|
|
|
|
|
|
|
- name: register openssl version
|
|
|
|
shell: "openssl version | cut -d' ' -f2"
|
|
|
|
register: openssl_version
|
|
|
|
|
|
|
|
- name: register cryptography version
|
2018-10-19 09:00:34 +02:00
|
|
|
command: "{{ ansible_python.executable }} -c 'import cryptography; print(cryptography.__version__)'"
|
2017-08-21 13:19:41 +02:00
|
|
|
register: cryptography_version
|