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.
 
 

22 wiersze
948 B

  1. ---
  2. - name: (Deprecation) Warn about matrix_postgres_use_external usage
  3. fail:
  4. msg: >
  5. The `matrix_postgres_use_external` variable defined in your configuration is not used by this playbook anymore!
  6. You'll need to adapt to the new way of using an external Postgres server.
  7. It's a combination of `matrix_postgres_enabled: false` and specifying Postgres connection
  8. details in a few `matrix_synapse_database_` variables.
  9. See the "Using an external PostgreSQL server (optional)" documentation page.
  10. when: "'matrix_postgres_use_external' in vars"
  11. - name: Fail if required Postgres settings not defined
  12. fail:
  13. msg: >
  14. You need to define a required configuration setting (`{{ item }}`) for using mxisd.
  15. when: "vars[item] == ''"
  16. with_items:
  17. - "matrix_postgres_connection_hostname"
  18. - "matrix_postgres_connection_username"
  19. - "matrix_postgres_connection_password"
  20. - "matrix_postgres_db_name"