ansible-collection-famedly-.../tasks/main.yml

16 lines
589 B
YAML
Raw Normal View History

2018-07-30 14:56:33 +00:00
---
- name: check that sypervision and deployment are compatible
fail:
msg: "Either both or neither of deployment and supervision method should be docker."
when: (matrix_synapse_supervision_method == "docker" and matrix_synapse_deployment_method != "docker") or (matrix_synapse_deployment_method == "docker" and matrix_synapse_supervision_method != "docker")
2018-07-30 14:56:33 +00:00
- name: configure synapse
import_tasks: configure.yml
- name: deploy synapse
import_tasks: deployment.yml
2018-07-30 14:56:33 +00:00
- name: configure service
import_tasks: systemd.yml
when: matrix_synapse_supervision_method == "systemd"