Install python3-passlib
This commit is contained in:
parent
4b4aee4ab4
commit
3e520d4ed4
|
@ -2,7 +2,15 @@
|
|||
- block:
|
||||
- name: Install the python passlib library on deb based distributions
|
||||
apt: pkg=python-passlib state=present cache_valid_time=3600
|
||||
when: ansible_distribution_file_variety == "Debian"
|
||||
when:
|
||||
- ansible_distribution_file_variety == "Debian"
|
||||
- ansible_distribution_version is version_compare('18.04', '<')
|
||||
|
||||
- name: Install the python passlib library on deb based distributions
|
||||
apt: pkg=python3-passlib state=present cache_valid_time=3600
|
||||
when:
|
||||
- ansible_distribution_file_variety == "Debian"
|
||||
- ansible_distribution_version is version_compare('18.04', '>=')
|
||||
|
||||
- name: Install the python passlib library on RH based distributions
|
||||
yum: pkg=python-passlib state=present
|
||||
|
|
Loading…
Reference in New Issue