matrix-docker-ansible-deploy/roles/custom/matrix-bridge-appservice-slack/tasks/main.yml

22 lines
665 B
YAML
Raw Normal View History

---
- block:
- when: matrix_appservice_slack_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/inject_into_nginx_proxy.yml"
2019-06-10 14:52:48 +00:00
tags:
- setup-all
- setup-nginx-proxy
2019-06-10 14:52:48 +00:00
- block:
- when: matrix_appservice_slack_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
2019-06-10 14:52:48 +00:00
- when: matrix_appservice_slack_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
2019-06-10 14:52:48 +00:00
- when: not matrix_appservice_slack_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
2019-06-10 14:52:48 +00:00
tags:
- setup-all
- setup-appservice-slack