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

69 строки
4.3 KiB

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