ansible/roles/bugzilla2fedmsg/tasks/main.yml

67 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2014-06-24 14:32:06 +00:00
---
# Setup a fedmsg-hub
- name: install needed packages
yum: pkg={{ item }} state=installed
with_items:
- python-moksha-hub
- python-bugzilla2fedmsg
- python-twisted-words
tags:
- packages
- name: Copy a custom moksha systemd service file
copy: >
src=moksha-hub.service
2014-06-24 14:39:48 +00:00
dest=/usr/lib/systemd/system/moksha-hub.service
2014-06-24 14:32:06 +00:00
notify:
- restart moksha-hub
2014-06-24 15:20:26 +00:00
- name: Make sure a few directories exist.
file:
2014-06-24 15:20:26 +00:00
dest="{{ item }}"
owner=fedmsg
group=fedmsg
2014-06-24 15:49:40 +00:00
mode=0750
state=directory
2014-06-24 15:20:26 +00:00
with_items:
- /etc/moksha/
- /usr/share/fedmsg/
2014-06-24 14:32:06 +00:00
- name: Copy the configuration for bugzilla2fedmsg over
template: >
src=bugzilla2fedmsg.ini
dest=/etc/moksha/production.ini
2014-06-24 14:32:06 +00:00
owner=fedmsg
group=fedmsg
mode=0640
notify:
- restart moksha-hub
- name: Copy in the staging certificates
copy: >
src="{{ private }}/files/bugzilla2fedmsg/{{ item }}"
dest="/etc/pki/fedmsg/{{ item }}"
mode=0640 owner=fedmsg group=fedmsg
with_items:
- fedora.devel.engineering.redhat.com.crt
- fedora.devel.engineering.redhat.com.key
when: env == 'staging'
notify:
- restart moksha-hub
- name: Copy in the production certificates
2014-06-24 14:32:06 +00:00
copy: >
src="{{ private }}/files/bugzilla2fedmsg/{{ item }}"
dest="/etc/pki/fedmsg/{{ item }}"
mode=0640 owner=fedmsg group=fedmsg
2014-06-24 14:32:06 +00:00
with_items:
- fuse-fabric-fedoraproject.org.crt
- fuse-fabric-fedoraproject.org.key
when: env != 'staging'
2014-06-24 14:32:06 +00:00
notify:
- restart moksha-hub
- name: moksha-hub service
service: name=moksha-hub state=started enabled=yes