Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

27 строки
1.3 KiB

  1. ---
  2. - name: Fail if required matrix-ldap-registration-proxy settings not defined
  3. ansible.builtin.fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`).
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_ldap_registration_proxy_hostname"
  9. - "matrix_ldap_registration_proxy_ldap_uri"
  10. - "matrix_ldap_registration_proxy_ldap_base_dn"
  11. - "matrix_ldap_registration_proxy_ldap_user"
  12. - "matrix_ldap_registration_proxy_ldap_password"
  13. - "matrix_ldap_registration_proxy_container_network"
  14. - name: (Deprecation) Catch and report renamed matrix-ldap-registration-proxy settings
  15. ansible.builtin.fail:
  16. msg: >-
  17. Your configuration contains a variable, which now has a different name.
  18. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  19. when: "item.old in vars"
  20. with_items:
  21. - {'old': 'matrix_ldap_registration_proxy_registration_addr_with_container', 'new': '<removed>'}
  22. - {'old': 'matrix_ldap_registration_proxy_registration_addr_sans_container', 'new': '<removed>'}
  23. - {'old': 'matrix_ldap_registration_proxy_container_port', 'new': 'matrix_ldap_registration_listen_port'}
  24. - {'old': 'matrix_ldap_registration_proxy_registration_endpoint', 'new': 'matrix_ldap_registration_proxy_container_labels_registration_endpoint_path'}