1
0
mirror of https://git.lapiole.org/dani/ansible-roles.git synced 2025-04-26 23:23:22 +02:00
2021-12-01 19:13:34 +01:00

14 lines
437 B
YAML

---
- name: Start and enable services
service: name=jitsi-jicofo state=started enabled=True
tags: jitsi
- name: Start and enable jigasi
service: name=jitsi-jigasi state={{ jitsi_jigasi | ternary('started', 'stopped') }} enabled={{ jitsi_jigasi }}
tags: jitsi
- name: Start and enable confmapper
service: name=jitsi-confmapper state={{ jitsi_jigasi | ternary('started', 'stopped') }} enabled={{ jitsi_jigasi }}
tags: jitsi