Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

26 rader
1.6 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: []
  20. # matrix_user_creator_homeserver_start_wait_time_seconds specifies how long to wait after starting the homeserver service and before doing our work.
  21. matrix_user_creator_homeserver_start_wait_time_seconds: 10