Adding fmc role to odcs playbook

Signed-off-by: Mohan Boddu <mboddu@bhujji.com>
This commit is contained in:
Mohan Boddu 2020-05-21 11:55:04 -04:00
parent 30bf65b01b
commit 9c9bc25cbb
2 changed files with 36 additions and 3 deletions

View file

@ -4,11 +4,13 @@
url: https://pagure.io/releng/fmc/raw/master/f/fedora-minimal-compose.py
dest: /usr/lib/python3.7/site-packages/
mode: '0755'
when: inventory_hostname.startswith('odcs-backend-releng')
- name: Install fedora-messaging rpm
dnf:
package: fedora-messaging
state: latest
when: inventory_hostname.startswith('odcs-backend-releng')
- name: Place fedora-minimal-compose.toml /etc/fedora-messaging/
template:
@ -17,9 +19,11 @@
owner: root
group: root
mode: 644
when: inventory_hostname.startswith('odcs-backend-releng')
- name: Start and enable the fmc services
service:
name: fm-consumer@fedora-minimal-compose
state: started
enabled: yes
name: fm-consumer@fedora-minimal-compose
state: started
enabled: yes
when: inventory_hostname.startswith('odcs-backend-releng')