pip fix
This commit is contained in:
parent
faead2a679
commit
2e71fa3507
1 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
state: latest
|
state: latest
|
||||||
extra_args: --upgrade
|
extra_args: --upgrade
|
||||||
when: ansible_python_version is version('3', '>=')
|
when: ansible_python_version is version('3', '>=')
|
||||||
|
become: no
|
||||||
|
|
||||||
- name: Install latest python2-cryptography
|
- name: Install latest python2-cryptography
|
||||||
package:
|
package:
|
||||||
|
@ -26,8 +27,10 @@
|
||||||
- name: Install latest cryptography
|
- name: Install latest cryptography
|
||||||
pip:
|
pip:
|
||||||
name: cryptography
|
name: cryptography
|
||||||
|
executable: pip3
|
||||||
state: latest
|
state: latest
|
||||||
when: ansible_python_version is version('3', '>=')
|
when: ansible_python_version is version('3', '>=')
|
||||||
|
become: no
|
||||||
|
|
||||||
- name: Ensure directory exists for local self-signed TLS certs
|
- name: Ensure directory exists for local self-signed TLS certs
|
||||||
file:
|
file:
|
||||||
|
|
Loading…
Reference in a new issue