Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

73 rindas
4.5 KiB

  1. ---
  2. - name: Fail if required Synapse settings not defined
  3. fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`) for using Synapse.
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_synapse_macaroon_secret_key"
  9. - "matrix_synapse_database_host"
  10. - "matrix_synapse_database_user"
  11. - "matrix_synapse_database_password"
  12. - "matrix_synapse_database_database"
  13. - name: Fail if asking to configure deprecaed workers (appservice, userdir)
  14. fail:
  15. msg: >-
  16. `{{ item }}` cannot be more than 0.
  17. This type of worker has been deprecated since Synapse v1.59.
  18. Please remove your `{{ item }}` configuration to solve this problem.
  19. See: https://github.com/matrix-org/synapse/blob/v1.59.0/docs/upgrade.md#deprecation-of-the-synapseappappservice-and-synapseappuser_dir-worker-application-types
  20. when: "vars[item]|int != 0"
  21. with_items:
  22. - "matrix_synapse_workers_appservice_workers_count"
  23. - "matrix_synapse_workers_user_dir_workers_count"
  24. - name: Fail if asking for more than 1 instance of single-instance workers
  25. fail:
  26. msg: >-
  27. `{{ item }}` cannot be more than 1. This is a single-instance worker.
  28. when: "vars[item]|int > 1"
  29. with_items:
  30. - "matrix_synapse_workers_pusher_workers_count"
  31. - "matrix_synapse_workers_federation_sender_workers_count"
  32. - name: (Deprecation) Catch and report renamed settings
  33. fail:
  34. msg: >-
  35. Your configuration contains a variable, which now has a different name.
  36. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  37. when: "item.old in vars"
  38. with_items:
  39. - {'old': 'matrix_synapse_email_riot_base_url', 'new': '<superseded by client_base_url>'}
  40. - {'old': 'matrix_synapse_container_expose_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  41. - {'old': 'matrix_synapse_no_tls', 'new': '<removed>'}
  42. - {'old': 'matrix_enable_room_list_search', 'new': 'matrix_synapse_enable_room_list_search'}
  43. - {'old': 'matrix_alias_creation_rules', 'new': 'matrix_synapse_alias_creation_rules'}
  44. - {'old': 'matrix_room_list_publication_rules', 'new': 'matrix_synapse_room_list_publication_rules'}
  45. - {'old': 'matrix_synapse_rc_messages_per_second', 'new': '<per_second subkey of matrix_synapse_rc_message>'}
  46. - {'old': 'matrix_synapse_rc_message_burst_count', 'new': '<burst_count subkey of matrix_synapse_rc_message>'}
  47. - {'old': 'matrix_synapse_federation_rc_window_size', 'new': '<window_size subkey of matrix_synapse_rc_federation>'}
  48. - {'old': 'matrix_synapse_federation_rc_sleep_limit', 'new': '<sleep_limit subkey of matrix_synapse_rc_federation>'}
  49. - {'old': 'matrix_synapse_federation_rc_sleep_delay', 'new': '<sleep_delay subkey of matrix_synapse_rc_federation>'}
  50. - {'old': 'matrix_synapse_federation_rc_reject_limit', 'new': '<reject_limit subkey of matrix_synapse_rc_federation>'}
  51. - {'old': 'matrix_synapse_federation_rc_concurrent', 'new': '<concurrent subkey of matrix_synapse_rc_federation>'}
  52. - {'old': 'matrix_synapse_container_expose_client_api_port', 'new': '<superseded by matrix_synapse_container_client_api_host_bind_port>'}
  53. - {'old': 'matrix_synapse_container_expose_federation_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  54. - {'old': 'matrix_synapse_container_expose_metrics_port', 'new': '<superseded by matrix_synapse_container_metrics_api_host_bind_port>'}
  55. - {'old': 'matrix_synapse_cache_factor', 'new': 'matrix_synapse_caches_global_factor'}
  56. - {'old': 'matrix_synapse_trusted_third_party_id_servers', 'new': '<deprecated in Synapse v0.99.4 and removed in Synapse v1.19.0>'}
  57. - {'old': 'matrix_synapse_use_presence', 'new': 'matrix_synapse_presence_enabled'}
  58. - {'old': 'matrix_synapse_version_arm64', 'new': '<superseded by matrix_synapse_version - see https://github.com/matrix-org/synapse/pull/11810>'}
  59. - {'old': 'matrix_synapse_enable_group_creation', 'new': '<removed in Synapse v1.61.0 - use the new Spaces feature instead>'}
  60. - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml
  61. fail:
  62. msg: >-
  63. Your matrix_synapse_configuration_extension_yaml configuration contains a variable, which now has a different name.
  64. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  65. when: "item.old in matrix_synapse_configuration_extension"
  66. with_items:
  67. - {'old': 'federation_ip_range_blacklist', 'new': 'ip_range_blacklist'}