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

65 строки
4.0 KiB

  1. ---
  2. - name: Fail if required schildichat settings not defined
  3. ansible.builtin.fail:
  4. msg: >
  5. You need to define a required configuration setting (`{{ item }}`) for using schildichat.
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_client_schildichat_default_hs_url"
  9. - name: Fail if schildichat location sharing enabled, but no tile server defined
  10. ansible.builtin.fail:
  11. msg: >-
  12. You need to define at least one map tile server in matrix_client_schildichat_location_sharing_map_style_content_sources_localsource_tiles list
  13. when:
  14. - matrix_client_schildichat_location_sharing_enabled | bool
  15. - matrix_client_schildichat_location_sharing_map_style_content_sources_localsource_tiles | length == 0
  16. - name: (Deprecation) Catch and report riot-web variables
  17. ansible.builtin.fail:
  18. msg: >-
  19. Riot has been renamed to schildichat (https://schildichat.io/blog/welcome-to-schildichat/).
  20. The playbook will migrate your existing configuration and data automatically, but you need to adjust variable names.
  21. Please change your configuration (vars.yml) to rename all riot-web variables (`{{ item.old }}` -> `{{ item.new }}`).
  22. Also note that DNS configuration changes may be necessary.
  23. when: "vars | dict2items | selectattr('key', 'match', item.old) | list | items2dict"
  24. with_items:
  25. - {'old': 'matrix_riot_web_.*', 'new': 'matrix_client_schildichat_.*'}
  26. - name: (Deprecation) Catch and report renamed schildichat-web settings
  27. ansible.builtin.fail:
  28. msg: >-
  29. Your configuration contains a variable, which now has a different name.
  30. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  31. when: "item.old in vars"
  32. with_items:
  33. - {'old': 'matrix_client_schildichat_showLabsSettings', 'new': 'matrix_client_schildichat_show_lab_settings'}
  34. - {'old': 'matrix_client_schildichat_permalinkPrefix', 'new': 'matrix_client_schildichat_permalink_prefix'}
  35. - {'old': 'matrix_client_schildichat_roomdir_servers', 'new': 'matrix_client_schildichat_room_directory_servers'}
  36. - {'old': 'matrix_client_schildichat_settingDefaults_custom_themes', 'new': 'matrix_client_schildichat_setting_defaults_custom_themes'}
  37. - {'old': 'matrix_client_schildichat_branding_authFooterLinks', 'new': 'matrix_client_schildichat_branding_auth_footer_links'}
  38. - {'old': 'matrix_client_schildichat_branding_authHeaderLogoUrl', 'new': 'matrix_client_schildichat_branding_auth_header_logo_url'}
  39. - {'old': 'matrix_client_schildichat_branding_welcomeBackgroundUrl', 'new': 'matrix_client_schildichat_branding_welcome_background_url'}
  40. - {'old': 'matrix_client_schildichat_jitsi_preferredDomain', 'new': 'matrix_client_schildichat_jitsi_preferred_domain'}
  41. - when: matrix_client_schildichat_container_labels_traefik_enabled | bool
  42. block:
  43. - name: Fail if required matrix-client-schildichat Traefik settings not defined
  44. ansible.builtin.fail:
  45. msg: >-
  46. You need to define a required configuration setting (`{{ item }}`).
  47. when: "vars[item] == ''"
  48. with_items:
  49. - matrix_client_schildichat_container_labels_traefik_hostname
  50. - matrix_client_schildichat_container_labels_traefik_path_prefix
  51. # We ensure it doesn't end with a slash, because we handle both (slash and no-slash).
  52. # Knowing that `matrix_client_schildichat_container_labels_traefik_path_prefix` does not end with a slash
  53. # ensures we know how to set these routes up without having to do "does it end with a slash" checks elsewhere.
  54. - name: Fail if matrix_client_schildichat_container_labels_traefik_path_prefix ends with a slash
  55. ansible.builtin.fail:
  56. msg: >-
  57. matrix_client_schildichat_container_labels_traefik_path_prefix (`{{ matrix_client_schildichat_container_labels_traefik_path_prefix }}`) must either be `/` or not end with a slash (e.g. `/schildichat`).
  58. when: "matrix_client_schildichat_container_labels_traefik_path_prefix != '/' and matrix_client_schildichat_container_labels_traefik_path_prefix[-1] == '/'"