Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

49 satır
2.5 KiB

  1. # SPDX-FileCopyrightText: 2023 - 2025 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2023 MDAD project contributors
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - name: Verify homeserver_url is not empty
  7. ansible.builtin.assert:
  8. that:
  9. - matrix_user_verification_service_uvs_homeserver_url|length > 0
  10. fail_msg: "Missing variable in {{ matrix_user_verification_service_ansible_name }} role"
  11. - name: Verify Auth is configured properly or disabled
  12. ansible.builtin.assert:
  13. that:
  14. - matrix_user_verification_service_uvs_access_token|length > 0 or not matrix_user_verification_service_uvs_require_auth|bool
  15. fail_msg: "If Auth is enabled, a valid (non empty) TOKEN must be given in 'matrix_user_verification_service_uvs_access_token'."
  16. - name: Verify server_name for openid verification is given, if pinning a single server_name is enabled.
  17. ansible.builtin.assert:
  18. that:
  19. - matrix_user_verification_service_uvs_openid_verify_server_name|length > 0 or not matrix_user_verification_service_uvs_pin_openid_verify_server_name|bool
  20. fail_msg: "If pinning a single server_name is enabled, a valid (non empty) server_name must be given in 'matrix_user_verification_service_uvs_openid_verify_server_name'."
  21. - name: Verify the homeserver implementation is synapse
  22. ansible.builtin.assert:
  23. that:
  24. - matrix_homeserver_implementation == 'synapse'
  25. fail_msg: "The User-Verification-Service requires Synapse as homeserver implementation"
  26. - name: Fail if required matrix-user-verification-service settings not defined
  27. ansible.builtin.fail:
  28. msg: >-
  29. You need to define a required configuration setting (`{{ item.name }}`).
  30. when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
  31. with_items:
  32. - {'name': 'matrix_user_verification_service_uvs_homeserver_url', when: true}
  33. - {'name': 'matrix_user_verification_service_container_network', when: true}
  34. - name: (Deprecation) Catch and report renamed matrix-user-verification-service variables
  35. ansible.builtin.fail:
  36. msg: >-
  37. Your configuration contains a variable, which now has a different name.
  38. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  39. when: "lookup('ansible.builtin.varnames', ('^' + item.old + '$'), wantlist=True) | length > 0"
  40. with_items:
  41. - {'old': 'matrix_user_verification_service_docker_image_name_prefix', 'new': 'matrix_user_verification_service_docker_image_registry_prefix'}