mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-27 12:03:38 +08:00
25 lines
471 B
YAML
25 lines
471 B
YAML
---
|
|
# Configuration for Bugyou
|
|
|
|
- name: install needed packages for bugyou
|
|
yum: pkg={{ item }} state=present enablerepo=epel-testing
|
|
with_items:
|
|
- bugyou
|
|
notify:
|
|
- restart fedmsg-hub
|
|
tags:
|
|
- bugyou
|
|
- bugyou/master
|
|
|
|
- name: copy bugyou fedmsg configuration
|
|
template: >
|
|
src={{ item }} dest=/etc/fedmsg.d/{{ item }}
|
|
owner=root group=fedmsg mode=0640
|
|
with_items:
|
|
- bugyou.py
|
|
notify:
|
|
- restart fedmsg-hub
|
|
tags:
|
|
- bugyou
|
|
- bugyou/master
|