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

99 строки
3.5 KiB

  1. ---
  2. - name: "Set up a Matrix server"
  3. hosts: "{{ target if target is defined else 'matrix_servers' }}"
  4. become: true
  5. vars_files:
  6. - roles/custom/matrix-synapse/vars/workers.yml
  7. roles:
  8. # Most of the roles below are not distributed with the playbook, but downloaded separately using `ansible-galaxy` via the `make roles` command (see `Makefile`).
  9. - role: galaxy/com.devture.ansible.role.playbook_help
  10. - role: galaxy/com.devture.ansible.role.systemd_docker_base
  11. - role: custom/matrix_playbook_migration
  12. - when: devture_timesync_installation_enabled | bool
  13. role: galaxy/com.devture.ansible.role.timesync
  14. tags:
  15. - setup-timesync
  16. - setup-all
  17. - custom/matrix-base
  18. - custom/matrix-dynamic-dns
  19. - custom/matrix-mailer
  20. - custom/matrix-postgres
  21. - custom/matrix-redis
  22. - custom/matrix-corporal
  23. - custom/matrix-bridge-appservice-discord
  24. - custom/matrix-bridge-appservice-slack
  25. - custom/matrix-bridge-appservice-webhooks
  26. - custom/matrix-bridge-appservice-irc
  27. - custom/matrix-bridge-appservice-kakaotalk
  28. - custom/matrix-bridge-beeper-linkedin
  29. - custom/matrix-bridge-go-skype-bridge
  30. - custom/matrix-bridge-mautrix-facebook
  31. - custom/matrix-bridge-mautrix-twitter
  32. - custom/matrix-bridge-mautrix-hangouts
  33. - custom/matrix-bridge-mautrix-googlechat
  34. - custom/matrix-bridge-mautrix-instagram
  35. - custom/matrix-bridge-mautrix-signal
  36. - custom/matrix-bridge-mautrix-telegram
  37. - custom/matrix-bridge-mautrix-whatsapp
  38. - custom/matrix-bridge-mautrix-discord
  39. - custom/matrix-bridge-mx-puppet-discord
  40. - custom/matrix-bridge-mx-puppet-groupme
  41. - custom/matrix-bridge-mx-puppet-steam
  42. - custom/matrix-bridge-mx-puppet-slack
  43. - custom/matrix-bridge-mx-puppet-twitter
  44. - custom/matrix-bridge-mx-puppet-instagram
  45. - custom/matrix-bridge-sms
  46. - custom/matrix-bridge-heisenbridge
  47. - custom/matrix-bridge-hookshot
  48. - custom/matrix-bot-matrix-reminder-bot
  49. - custom/matrix-bot-matrix-registration-bot
  50. - custom/matrix-bot-maubot
  51. - custom/matrix-bot-buscarron
  52. - custom/matrix-bot-honoroit
  53. - custom/matrix-bot-postmoogle
  54. - custom/matrix-bot-go-neb
  55. - custom/matrix-bot-mjolnir
  56. - custom/matrix-cactus-comments
  57. - custom/matrix-synapse
  58. - custom/matrix-dendrite
  59. - custom/matrix-conduit
  60. - custom/matrix-synapse-admin
  61. - custom/matrix-prometheus-node-exporter
  62. - custom/matrix-prometheus-postgres-exporter
  63. - custom/matrix-prometheus
  64. - custom/matrix-grafana
  65. - custom/matrix-registration
  66. - custom/matrix-client-element
  67. - custom/matrix-client-hydrogen
  68. - custom/matrix-client-cinny
  69. - custom/matrix-jitsi
  70. - custom/matrix-ldap-registration-proxy
  71. - custom/matrix-ma1sd
  72. - custom/matrix-dimension
  73. - custom/matrix-etherpad
  74. - custom/matrix-email2matrix
  75. - custom/matrix-sygnal
  76. - custom/matrix-ntfy
  77. - custom/matrix-nginx-proxy
  78. - custom/matrix-coturn
  79. - custom/matrix-aux
  80. - custom/matrix-postgres-backup
  81. - custom/matrix-backup-borg
  82. - custom/matrix-user-creator
  83. - custom/matrix-common-after
  84. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  85. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  86. - when: devture_playbook_state_preserver_enabled | bool
  87. role: galaxy/com.devture.ansible.role.playbook_state_preserver
  88. tags:
  89. - setup-all
  90. - role: galaxy/com.devture.ansible.role.playbook_runtime_messages