Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

41 řádky
1.1 KiB

  1. # SPDX-FileCopyrightText: 2019 - 2024 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2019 Dan Arnfield
  3. # SPDX-FileCopyrightText: 2020 MDAD project contributors
  4. # SPDX-FileCopyrightText: 2020 Marcel Partap
  5. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  6. # SPDX-FileCopyrightText: 2022 Warren Bailey
  7. # SPDX-FileCopyrightText: 2026 Chiu Ki Sit
  8. #
  9. # SPDX-License-Identifier: AGPL-3.0-or-later
  10. ---
  11. - tags:
  12. - setup-all
  13. - install-all
  14. block:
  15. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  16. # This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
  17. # which are required by many other roles.
  18. - tags:
  19. - always
  20. - setup-system-user
  21. - common
  22. block:
  23. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
  24. - tags:
  25. - setup-all
  26. - install-all
  27. block:
  28. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_synology_prerequisites.yml"
  29. when: matrix_synoinfo_conf_stat.stat.exists | bool
  30. - tags:
  31. - setup-all
  32. - install-all
  33. - common
  34. block:
  35. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"