mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-13 16:09:45 +08:00
41 lines
844 B
YAML
41 lines
844 B
YAML
# 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 datanommer packages
|
|
yum: pkg="{{ item }}" state=present
|
|
with_items:
|
|
- python-datanommer-consumer
|
|
- python-datanommer-models
|
|
- python-psycopg2
|
|
- datanommer-commands
|
|
tags:
|
|
- packages
|
|
- datanommer
|
|
|
|
- name: copy alembic config
|
|
template: >
|
|
src=alembic.ini
|
|
dest=/usr/share/datanommer.models/alembic.ini
|
|
mode=0640
|
|
tags:
|
|
- config
|
|
- datanommer
|
|
notify:
|
|
- restart fedmsg-hub
|
|
|
|
- name: copy datanommer config itself
|
|
template: >
|
|
src="{{ item }}"
|
|
dest="/etc/fedmsg.d/{{item}}"
|
|
mode=0640
|
|
owner=fedmsg
|
|
group=nrpe
|
|
with_items:
|
|
- datanommer.py
|
|
- fas-credentials.py
|
|
tags:
|
|
- config
|
|
- datanommer
|
|
notify:
|
|
- restart fedmsg-hub
|