This commit is contained in:
Szymon Cader 2020-07-06 21:14:33 +02:00
parent a2321033f1
commit b13220ab36
2 changed files with 7 additions and 7 deletions

View File

@ -12,6 +12,13 @@
when: ansible_os_family == 'Debian' when: ansible_os_family == 'Debian'
changed_when: false changed_when: false
- name: Install cryptography python library
pip:
name: cryptography
state: forcereinstall
tags:
- nginx
- name: Install python packages - name: Install python packages
apt: apt:
name: name:

View File

@ -14,13 +14,6 @@
- always - always
# Setup/install tasks. # Setup/install tasks.
- name: Install cryptography python library
pip:
name: cryptography
state: forcereinstall
tags:
- nginx
- include_tasks: setup-RedHat.yml - include_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat' when: ansible_os_family == 'RedHat'
tags: tags: