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

96 строки
3.4 KiB

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