blob: 83f4b9f409bb59a0a90013592c5ba2782cb38f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
# Setup a fedmsg-hub
- name: install needed packages
yum: pkg={{ item }} state=present
with_items:
- python-moksha-hub
- python-bugzilla2fedmsg
- python-twisted-words
tags:
- packages
- bugzilla2fedmsg
- name: Copy a custom moksha systemd service file
copy: >
src=moksha-hub.service
dest=/usr/lib/systemd/system/moksha-hub.service
notify:
- restart moksha-hub
tags:
- bugzilla2fedmsg
- name: Make sure a few directories exist.
file:
dest="{{ item }}"
owner=fedmsg
group=fedmsg
mode=0750
state=directory
with_items:
- /etc/moksha/
- /usr/share/fedmsg/
tags:
- bugzilla2fedmsg
- name: Copy the configuration for bugzilla2fedmsg over
template: >
src=bugzilla2fedmsg.ini
dest=/etc/moksha/production.ini
owner=fedmsg
group=fedmsg
mode=0640
notify:
- restart moksha-hub
tags:
- bugzilla2fedmsg
- 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
tags:
- bugzilla2fedmsg
- name: Copy in the production certificates
copy: >
src="{{ private }}/files/bugzilla2fedmsg/{{ item }}"
dest="/etc/pki/fedmsg/{{ item }}"
mode=0640 owner=fedmsg group=fedmsg
with_items:
- fuse-fabric-fedoraproject.org.crt
- fuse-fabric-fedoraproject.org.key
when: env != 'staging'
notify:
- restart moksha-hub
tags:
- bugzilla2fedmsg
- name: moksha-hub service
service: name=moksha-hub state=started enabled=yes
tags:
- bugzilla2fedmsg
|