2022-01-05 16:33:21 +00:00
---
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2023-02-17 07:20:22 +00:00
matrix_client_cinny_url_endpoint_public : "https://{{ matrix_client_cinny_hostname }}{{ matrix_client_cinny_path_prefix }}/config.json"
2022-01-05 16:33:21 +00:00
- name : Check Cinny
2022-07-18 07:39:08 +00:00
ansible.builtin.uri :
2022-01-05 16:33:21 +00:00
url : "{{ matrix_client_cinny_url_endpoint_public }}"
follow_redirects : none
validate_certs : "{{ matrix_client_cinny_self_check_validate_certificates }}"
register : matrix_client_cinny_self_check_result
2022-02-05 20:32:54 +00:00
check_mode : false
2022-01-05 16:33:21 +00:00
ignore_errors : true
2022-11-24 09:33:30 +00:00
delegate_to : 127.0 .0 .1
become : false
2022-01-05 16:33:21 +00:00
- name : Fail if Cinny not working
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2023-02-17 07:20:22 +00:00
msg : "Failed checking Cinny is up at `{{ matrix_client_cinny_hostname }}` (checked endpoint: `{{ matrix_client_cinny_url_endpoint_public }}`). Is Cinny running? Is port 443 open in your firewall? Full error: {{ matrix_client_cinny_self_check_result }}"
2022-01-05 16:33:21 +00:00
when : "matrix_client_cinny_self_check_result.failed or 'json' not in matrix_client_cinny_self_check_result"
- name : Report working Cinny
2022-07-18 07:39:08 +00:00
ansible.builtin.debug :
2023-02-17 07:20:22 +00:00
msg : "Cinny at `{{ matrix_client_cinny_hostname }}` is working (checked endpoint: `{{ matrix_client_cinny_url_endpoint_public }}`)"