Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

59 line
3.6 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 for more than 1 instance of single-instance workers
  14. fail:
  15. msg: >-
  16. `{{ item }}` cannot be more than 1. This is a single-instance worker.
  17. when: "vars[item]|int > 1"
  18. with_items:
  19. - "matrix_synapse_workers_appservice_workers_count"
  20. - "matrix_synapse_workers_pusher_workers_count"
  21. - "matrix_synapse_workers_federation_sender_workers_count"
  22. - name: (Deprecation) Catch and report renamed settings
  23. fail:
  24. msg: >-
  25. Your configuration contains a variable, which now has a different name.
  26. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  27. when: "item.old in vars"
  28. with_items:
  29. - {'old': 'matrix_synapse_email_riot_base_url', 'new': '<superseded by client_base_url>'}
  30. - {'old': 'matrix_synapse_container_expose_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  31. - {'old': 'matrix_synapse_no_tls', 'new': '<removed>'}
  32. - {'old': 'matrix_enable_room_list_search', 'new': 'matrix_synapse_enable_room_list_search'}
  33. - {'old': 'matrix_alias_creation_rules', 'new': 'matrix_synapse_alias_creation_rules'}
  34. - {'old': 'matrix_room_list_publication_rules', 'new': 'matrix_synapse_room_list_publication_rules'}
  35. - {'old': 'matrix_synapse_rc_messages_per_second', 'new': '<per_second subkey of matrix_synapse_rc_message>'}
  36. - {'old': 'matrix_synapse_rc_message_burst_count', 'new': '<burst_count subkey of matrix_synapse_rc_message>'}
  37. - {'old': 'matrix_synapse_federation_rc_window_size', 'new': '<window_size subkey of matrix_synapse_rc_federation>'}
  38. - {'old': 'matrix_synapse_federation_rc_sleep_limit', 'new': '<sleep_limit subkey of matrix_synapse_rc_federation>'}
  39. - {'old': 'matrix_synapse_federation_rc_sleep_delay', 'new': '<sleep_delay subkey of matrix_synapse_rc_federation>'}
  40. - {'old': 'matrix_synapse_federation_rc_reject_limit', 'new': '<reject_limit subkey of matrix_synapse_rc_federation>'}
  41. - {'old': 'matrix_synapse_federation_rc_concurrent', 'new': '<concurrent subkey of matrix_synapse_rc_federation>'}
  42. - {'old': 'matrix_synapse_container_expose_client_api_port', 'new': '<superseded by matrix_synapse_container_client_api_host_bind_port>'}
  43. - {'old': 'matrix_synapse_container_expose_federation_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  44. - {'old': 'matrix_synapse_container_expose_metrics_port', 'new': '<superseded by matrix_synapse_container_metrics_api_host_bind_port>'}
  45. - {'old': 'matrix_synapse_cache_factor', 'new': 'matrix_synapse_caches_global_factor'}
  46. - {'old': 'matrix_synapse_trusted_third_party_id_servers', 'new': '<deprecated in Synapse v0.99.4 and removed in Synapse v1.19.0>'}
  47. - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml
  48. fail:
  49. msg: >-
  50. Your matrix_synapse_configuration_extension_yaml configuration contains a variable, which now has a different name.
  51. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  52. when: "item.old in matrix_synapse_configuration_extension"
  53. with_items:
  54. - {'old': 'federation_ip_range_blacklist', 'new': 'ip_range_blacklist'}