Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

30 строки
1.7 KiB

  1. # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # matrix-user-creator is a role that aims to automate initial Matrix user account creation.
  6. #
  7. # This role only supports initial user account creation and will not manage subsequent user-type changes
  8. # or password changes.
  9. #
  10. # The playbook registers various bot user accounts automatically using this role by injecting
  11. # user creation definitions into the `matrix_user_creator_users_auto` variable.
  12. #
  13. # To get started creating your own Matrix user accounts, use the `matrix_user_creator_users_additional` variable.
  14. # matrix_user_creator_users_auto holds a list of users that should be created on the Matrix homeserver.
  15. # The playbook adds some user definitions here to have them end up in `matrix_user_creator_users` (see `vars/main.yml`) and get automatically created.
  16. # This value is influenced by the playbook and will be overwritten elsewhere (`group_vars/`, etc.)
  17. # To add your own user definitions, use the `matrix_user_creator_users_additional` variable.
  18. matrix_user_creator_users_auto: []
  19. # matrix_user_creator_users_additional holds a list of users that should be created on the Matrix homeserver.
  20. # Add your own users here to have them end up in `matrix_user_creator_users` (see `vars/main.yml`) and get automatically created.
  21. # For example syntax for this variable, see the documentation for `matrix_user_creator_users` in `vars/main.yml`.
  22. matrix_user_creator_users_additional: []
  23. # matrix_user_creator_homeserver_start_wait_time_seconds specifies how long to wait after starting the homeserver service and before doing our work.
  24. matrix_user_creator_homeserver_start_wait_time_seconds: 10