this should test that pagure on el8 wants the python3 versions

This commit is contained in:
Stephen Smoogen 2020-05-19 19:42:15 -04:00
parent f6666c0240
commit 8211a567a2

View file

@ -12,6 +12,20 @@
- packages
- pagure
- pagure/fedmsg
when: ansible_distribution_major_version|int < 8 and ansible_distribution == 'RedHat'
- name: install needed packages
package: name={{ item }} state=present
with_items:
- fedmsg
- python3-libsemanage
- python3-psutil
tags:
- packages
- pagure
- pagure/fedmsg
when: ansible_distribution_major_version|int >= 8 and ansible_distribution == 'RedHat'
# We use setgid here so that the monitoring sockets created by fedmsg services
# are accessible to the nrpe group.