Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

25 řádky
1015 B

  1. - name: Fail if required Dimension settings not defined
  2. fail:
  3. msg: >-
  4. You need to define a required configuration setting (`{{ item }}`) for using Dimension.
  5. with_items:
  6. - "matrix_dimension_access_token"
  7. when: "matrix_dimension_enabled and vars[item] == ''"
  8. - name: Fail if Matrix Federation is disabled
  9. fail:
  10. msg: >-
  11. You need to enable Matrix Federation to use Dimension. Set `{{ item }}` to 'true'.
  12. with_items:
  13. - "matrix_synapse_federation_enabled"
  14. when: "matrix_dimension_enabled|bool and not matrix_synapse_federation_enabled|bool"
  15. - name: (Deprecation) Catch and report renamed Dimension variables
  16. fail:
  17. msg: >-
  18. Your configuration contains a variable, which now has a different name.
  19. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  20. when: "item.old in vars"
  21. with_items:
  22. - {'old': 'matrix_dimension_container_expose_port', 'new': '<superseded by matrix_dimension_container_http_host_bind_port>'}