Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

72 строки
4.3 KiB

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Fail if required Element Web settings not defined
  6. ansible.builtin.fail:
  7. msg: >
  8. You need to define a required configuration setting (`{{ item }}`) for using Element Web.
  9. when: "item.when | bool and vars[item.name] == ''"
  10. with_items:
  11. - {'name': 'matrix_client_element_default_hs_url', when: true}
  12. - {'name': 'matrix_client_element_container_network', when: true}
  13. - {'name': 'matrix_client_element_container_labels_traefik_compression_middleware_name', when: "{{ matrix_client_element_container_labels_traefik_compression_middleware_enabled }}"}
  14. - name: Fail if Element location sharing enabled, but no tile server defined
  15. ansible.builtin.fail:
  16. msg: >-
  17. You need to define at least one map tile server in matrix_client_element_location_sharing_map_style_content_sources_localsource_tiles list
  18. when:
  19. - matrix_client_element_location_sharing_enabled | bool
  20. - matrix_client_element_location_sharing_map_style_content_sources_localsource_tiles | length == 0
  21. - name: (Deprecation) Catch and report riot-web variables
  22. ansible.builtin.fail:
  23. msg: >-
  24. Riot has been renamed to Element (https://element.io/blog/welcome-to-element/).
  25. The playbook will migrate your existing configuration and data automatically, but you need to adjust variable names.
  26. Please change your configuration (vars.yml) to rename all riot-web variables (`{{ item.old }}` -> `{{ item.new }}`).
  27. Also note that DNS configuration changes may be necessary.
  28. when: "vars | dict2items | selectattr('key', 'match', item.old) | list | items2dict"
  29. with_items:
  30. - {'old': 'matrix_riot_web_.*', 'new': 'matrix_client_element_.*'}
  31. - name: (Deprecation) Catch and report renamed element-web settings
  32. ansible.builtin.fail:
  33. msg: >-
  34. Your configuration contains a variable, which now has a different name.
  35. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  36. when: "item.old in vars"
  37. with_items:
  38. - {'old': 'matrix_client_element_showLabsSettings', 'new': 'matrix_client_element_show_lab_settings'}
  39. - {'old': 'matrix_client_element_permalinkPrefix', 'new': 'matrix_client_element_permalink_prefix'}
  40. - {'old': 'matrix_client_element_roomdir_servers', 'new': 'matrix_client_element_room_directory_servers'}
  41. - {'old': 'matrix_client_element_settingDefaults_custom_themes', 'new': 'matrix_client_element_setting_defaults_custom_themes'}
  42. - {'old': 'matrix_client_element_branding_authFooterLinks', 'new': 'matrix_client_element_branding_auth_footer_links'}
  43. - {'old': 'matrix_client_element_branding_authHeaderLogoUrl', 'new': 'matrix_client_element_branding_auth_header_logo_url'}
  44. - {'old': 'matrix_client_element_branding_welcomeBackgroundUrl', 'new': 'matrix_client_element_branding_welcome_background_url'}
  45. - {'old': 'matrix_client_element_jitsi_preferredDomain', 'new': 'matrix_client_element_jitsi_preferred_domain'}
  46. - {'old': 'matrix_client_element_welcome_user_id', 'new': '<removed>'}
  47. - when: matrix_client_element_container_labels_traefik_enabled | bool
  48. block:
  49. - name: Fail if required matrix-client-element Traefik settings not defined
  50. ansible.builtin.fail:
  51. msg: >-
  52. You need to define a required configuration setting (`{{ item }}`).
  53. when: "vars[item] == ''"
  54. with_items:
  55. - matrix_client_element_container_labels_traefik_hostname
  56. - matrix_client_element_container_labels_traefik_path_prefix
  57. # We ensure it doesn't end with a slash, because we handle both (slash and no-slash).
  58. # Knowing that `matrix_client_element_container_labels_traefik_path_prefix` does not end with a slash
  59. # ensures we know how to set these routes up without having to do "does it end with a slash" checks elsewhere.
  60. - name: Fail if matrix_client_element_container_labels_traefik_path_prefix ends with a slash
  61. ansible.builtin.fail:
  62. msg: >-
  63. matrix_client_element_container_labels_traefik_path_prefix (`{{ matrix_client_element_container_labels_traefik_path_prefix }}`) must either be `/` or not end with a slash (e.g. `/element`).
  64. when: "matrix_client_element_container_labels_traefik_path_prefix != '/' and matrix_client_element_container_labels_traefik_path_prefix[-1] == '/'"