Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

24 wiersze
1.1 KiB

  1. ---
  2. - name: Fail if required riot-web settings not defined
  3. fail:
  4. msg: >
  5. You need to define a required configuration setting (`{{ item }}`) for using riot-web.
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_riot_web_default_hs_url"
  9. - name: (Deprecation) Catch and report renamed riot-web variables
  10. fail:
  11. msg: >-
  12. Your configuration contains a variable, which now has a different name.
  13. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  14. when: "item.old in vars"
  15. with_items:
  16. - {'old': 'matrix_riot_web_homepage_template', 'new': 'matrix_riot_web_embedded_pages_home_path'}
  17. - {'old': 'matrix_riot_web_homepage_template_general', 'new': '<removed>'}
  18. - {'old': 'matrix_riot_web_homepage_template_technical', 'new': '<removed>'}
  19. - {'old': 'matrix_riot_web_homepage_template_building', 'new': '<removed>'}
  20. - {'old': 'matrix_riot_web_homepage_template_contributing', 'new': '<removed>'}
  21. - {'old': 'matrix_riot_web_container_expose_port', 'new': '<superseded by matrix_riot_web_container_http_host_bind_port>'}