Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

23 lignes
822 B

  1. # SPDX-FileCopyrightText: 2023 Johan Swetzén
  2. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - name: Fail if required settings not defined
  7. ansible.builtin.fail:
  8. msg: >-
  9. You need to define a required configuration setting (`{{ item }}`).
  10. when: "vars[item] == ''"
  11. with_items:
  12. - "matrix_mautrix_androidsms_appservice_token"
  13. - "matrix_mautrix_androidsms_homeserver_token"
  14. - "matrix_mautrix_imessage_appservice_token"
  15. - "matrix_mautrix_imessage_homeserver_token"
  16. - "matrix_mautrix_wsproxy_homeserver_address"
  17. - "matrix_mautrix_wsproxy_syncproxy_shared_secret"
  18. - "matrix_mautrix_wsproxy_syncproxy_homeserver_url"
  19. - "matrix_mautrix_wsproxy_syncproxy_database_hostname"
  20. - "matrix_mautrix_wsproxy_syncproxy_database_password"