Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

21 satır
904 B

  1. ---
  2. - name: Fail if required Element settings not defined
  3. fail:
  4. msg: >
  5. You need to define a required configuration setting (`{{ item }}`) for using Element.
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_client_element_default_hs_url"
  9. - name: (Deprecation) Catch and report riot-web variables
  10. fail:
  11. msg: >-
  12. Riot has been renamed to Element (https://element.io/blog/welcome-to-element/).
  13. The playbook will migrate your existing configuration and data automatically, but you need to adjust variable names.
  14. Please change your configuration (vars.yml) to rename all riot-web variables (`{{ item.old }}` -> `{{ item.new }}`).
  15. Also note that DNS configuration changes may be necessary.
  16. when: "vars | dict2items | selectattr('key', 'match', item.old) | list | items2dict"
  17. with_items:
  18. - {'old': 'matrix_riot_web_.*', 'new': 'matrix_client_element_.*'}