matrix-docker-ansible-deploy/roles/custom/matrix-corporal/tasks/self_check_corporal.yml

23 lines
1.1 KiB
YAML
Raw Normal View History

2018-10-21 09:58:25 +00:00
---
- ansible.builtin.set_fact:
2019-02-28 09:51:09 +00:00
corporal_client_api_url_endpoint_public: "https://{{ matrix_server_fqn_matrix }}/_matrix/client/corporal"
2018-10-21 09:58:25 +00:00
- name: Check Matrix Corporal HTTP gateway
ansible.builtin.uri:
2018-10-21 09:58:25 +00:00
url: "{{ corporal_client_api_url_endpoint_public }}"
follow_redirects: none
2018-10-21 09:58:25 +00:00
return_content: true
check_mode: false
2018-10-21 09:58:25 +00:00
register: result_corporal_client_api
ignore_errors: true
- name: Fail if Matrix Corporal HTTP gateway not working
ansible.builtin.fail:
2019-02-28 09:51:09 +00:00
msg: "Failed checking Matrix Corporal is fronting the Matrix Client API at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ corporal_client_api_url_endpoint_public }}`). Is matrix-corporal running? Is port 443 open in your firewall? Full error: {{ result_corporal_client_api }}"
2018-10-21 09:58:25 +00:00
when: "result_corporal_client_api.failed or 'Matrix Client-Server API protected by Matrix Corporal' not in result_corporal_client_api.content"
- name: Report working Matrix Corporal HTTP gateway
ansible.builtin.debug:
2019-02-28 09:51:09 +00:00
msg: "Matrix Corporal is fronting the Matrix Client API at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ corporal_client_api_url_endpoint_public }}`)"