missed a conditional change for dnf/yum in execdb
This commit is contained in:
parent
6bc0574521
commit
ca6f172b87
1 changed files with 1 additions and 1 deletions
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
- name: ensure packages required for execdb are installed (yum)
|
||||
yum: name={{ item }} state=present
|
||||
when: deployment_type == 'prod' or deployment_type == 'local'
|
||||
with_items:
|
||||
- execdb
|
||||
- mod_wsgi
|
||||
- python-psycopg2
|
||||
- libsemanage-python
|
||||
when: ansible_distribution_major_version|int < 22
|
||||
|
||||
- name: ensure packages required for execdb are installed (dnf)
|
||||
dnf: name={{ item }} state=present enablerepo={{ extra_enablerepos }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue