fix fedmsg/relay for DNF (F>21)
nothing that freezes uses this, so I'm OK to send it, according to nirik.
This commit is contained in:
parent
78df044b87
commit
5e65aab860
1 changed files with 9 additions and 1 deletions
|
@ -1,11 +1,19 @@
|
|||
# This is a *very* simple role. The config needed for fedmsg-relay to operate
|
||||
# correctly is actually included as part of the fedmsg/base role.
|
||||
|
||||
- name: install fedmsg-relay
|
||||
- name: install fedmsg-relay (yum)
|
||||
yum: pkg=fedmsg-relay state=present
|
||||
tags:
|
||||
- packages
|
||||
- fedmsg/relay
|
||||
when: ansible_distribution_major_version|int < 22
|
||||
|
||||
- name: install fedmsg-relay (dnf)
|
||||
dnf: pkg=fedmsg-relay state=present
|
||||
tags:
|
||||
- packages
|
||||
- fedmsg/relay
|
||||
when: ansible_distribution_major_version|int > 21
|
||||
|
||||
- name: ensure that nrpe has rights to monitor us
|
||||
file: >
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue