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

23 строки
1.4 KiB

  1. ---
  2. # matrix-user-creator is a role that aims to automate initial Matrix user account creation.
  3. #
  4. # This role only supports initial user account creation and will not manage subsequent user-type changes
  5. # or password changes.
  6. #
  7. # The playbook registers various bot user accounts automatically using this role by injecting
  8. # user creation definitions into the `matrix_user_creator_users_auto` variable.
  9. #
  10. # To get started creating your own Matrix user accounts, use the `matrix_user_creator_users_additional` variable.
  11. # matrix_user_creator_users_auto holds a list of users that should be created on the Matrix homeserver.
  12. # 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.
  13. # This value is influenced by the playbook and will be overwritten elsewhere (`group_vars/`, etc.)
  14. # To add your own user definitions, use the `matrix_user_creator_users_additional` variable.
  15. matrix_user_creator_users_auto: []
  16. # matrix_user_creator_users_additional holds a list of users that should be created on the Matrix homeserver.
  17. # Add your own users here to have them end up in `matrix_user_creator_users` (see `vars/main.yml`) and get automatically created.
  18. # For example syntax for this variable, see the documentation for `matrix_user_creator_users` in `vars/main.yml`.
  19. matrix_user_creator_users_additional: []