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.
 
 

23 linhas
763 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Fail if required settings not defined
  6. ansible.builtin.fail:
  7. msg: >-
  8. You need to define a required configuration setting (`{{ item }}`).
  9. when: "vars[item] == ''"
  10. with_items:
  11. - "matrix_bot_matrix_registration_bot_bot_password"
  12. - "matrix_bot_matrix_registration_bot_matrix_homeserver_url"
  13. - name: (Deprecation) Catch and report old settings
  14. ansible.builtin.fail:
  15. msg: >-
  16. Your configuration contains a variable, which is deprecated - Please check the documentation on how to configure the matrix-registration-bot.
  17. when: "item in vars"
  18. with_items:
  19. - "matrix_bot_matrix_registration_bot_bot_access_token"