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.
 
 

18 wiersze
619 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Fail if there's not at least 1 client
  6. ansible.builtin.fail:
  7. msg: >-
  8. You need at least 1 client in the matrix_bot_go_neb_clients block.
  9. when: matrix_bot_go_neb_clients is not defined or matrix_bot_go_neb_clients[0] is not defined
  10. - name: Fail if there's not at least 1 service
  11. ansible.builtin.fail:
  12. msg: >-
  13. You need at least 1 service in the matrix_bot_go_neb_services block.
  14. when: matrix_bot_go_neb_services is not defined or matrix_bot_go_neb_services[0] is not defined