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.
 
 

19 lignes
782 B

  1. # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2023 Nikita Chernyi
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - tags:
  7. # This role intentionally doesn't do work on a `setup-all` tag.
  8. # If it did, the initial installation (`--tags=setup-all`) would also potentially pollute the database with data,
  9. # which would make importing a database dump problematic.
  10. #
  11. # See the variable "matrix_user_creator_users_auto" on group_vars/matrix_servers for actual values of users which running these tags can create with this role by default.
  12. - ensure-matrix-users-created
  13. - ensure-users-created
  14. block:
  15. - when: matrix_user_creator_users | length > 0
  16. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup.yml"