Просмотр исходного кода

Remove selfcheck

pull/2038/head
Julian-Samuel Gebühr 3 лет назад
Родитель
Сommit
3bc64fb6cc
2 измененных файлов: 0 добавлений и 29 удалений
  1. +0
    -7
      roles/matrix-ldap-registration-proxy/tasks/main.yml
  2. +0
    -22
      roles/matrix-ldap-registration-proxy/tasks/self_check_matrix_ldap_registration_proxy.yml

+ 0
- 7
roles/matrix-ldap-registration-proxy/tasks/main.yml Просмотреть файл

@@ -21,10 +21,3 @@
tags:
- setup-all
- setup-matrix-ldap-registration-proxy

- ansible.builtin.import_tasks: "{{ role_path }}/tasks/self_check_matrix_ldap_registration_proxy.yml"
delegate_to: 127.0.0.1
become: false
when: "run_self_check | bool and matrix_matrix_ldap_registration_proxy_enabled | bool"
tags:
- self-check

+ 0
- 22
roles/matrix-ldap-registration-proxy/tasks/self_check_matrix_ldap_registration_proxy.yml Просмотреть файл

@@ -1,22 +0,0 @@
---

- ansible.builtin.set_fact:
matrix_ldap_registration_proxy_url_endpoint_public: "https://{{ matrix_server_fqn_matrix }}/_matrix/client/r0/register"

- name: Check matrix_ldap_registration_proxy Service
ansible.builtin.uri:
url: "{{ matrix_ldap_registration_proxy_url_endpoint_public }}"
follow_redirects: none
validate_certs: "{{ matrix_matrix_ldap_registration_proxy_self_check_validate_certificates }}"
check_mode: false
register: result_matrix_ldap_registration_proxy
ignore_errors: true

- name: Fail if matrix_ldap_registration_proxy Service not working
ansible.builtin.fail:
msg: "Failed checking matrix_ldap_registration_proxy is up at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ matrix_ldap_registration_proxy_url_endpoint_public }}`). Is matrix_ldap_registration_proxy running? Is port 443 open in your firewall? Full error: {{ result_matrix_ldap_registration_proxy }}"
when: "result_matrix_ldap_registration_proxy.failed or 'json' not in result_matrix_ldap_registration_proxy"

- name: Report working matrix_ldap_registration_proxy Service
ansible.builtin.debug:
msg: "matrix_ldap_registration_proxy at `{{ matrix_server_fqn_matrix }}` is working (checked endpoint: `{{ matrix_ldap_registration_proxy_url_endpoint_public }}`)"

Загрузка…
Отмена
Сохранить