Files
fedora-infra_ansible/roles/bugyou/bugyou-master/tasks/main.yml
2016-03-04 09:36:10 +00:00

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