Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

24 linhas
991 B

  1. ---
  2. - name: Fail if Macaroon key is missing
  3. fail:
  4. msg: "You need to set a secret in the matrix_synapse_macaroon_secret_key variable"
  5. when: "matrix_synapse_macaroon_secret_key == ''"
  6. - name: Fail if Coturn Auth secret is missing
  7. fail:
  8. msg: "You need to set a secret in the matrix_coturn_turn_static_auth_secret variable"
  9. when: "matrix_coturn_turn_static_auth_secret == ''"
  10. # This sanity check is only used to detect uppercase when people override these specific variables.
  11. #
  12. # If people set `host_specific_hostname_identity` without overriding other variables (the general use-case),
  13. # we take care to lower-case it automatically and it won't cause trouble anyway.
  14. - name: Fail if uppercase domain used
  15. fail:
  16. msg: "Detected that you're using an uppercase domain name - `{{ item }}`. This will cause trouble. Please use all-lowercase!"
  17. when: "item != item|lower"
  18. with_items:
  19. - "{{ hostname_identity }}"
  20. - "{{ hostname_matrix }}"
  21. - "{{ hostname_riot }}"