Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

27 Zeilen
794 B

  1. # SPDX-FileCopyrightText: 2021 Yannick Goossens
  2. # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
  3. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - tags:
  8. - setup-all
  9. - setup-bot-go-neb
  10. - install-all
  11. - install-bot-go-neb
  12. block:
  13. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  14. when: "run_setup | bool and matrix_bot_go_neb_enabled | bool"
  15. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  16. when: "run_setup | bool and matrix_bot_go_neb_enabled | bool"
  17. - tags:
  18. - setup-all
  19. - setup-bot-go-neb
  20. block:
  21. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
  22. when: "run_setup | bool and not matrix_bot_go_neb_enabled | bool"