mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 12:47:39 +01:00
cc5cf0d725
If we load it at runtime, during matrix-synapse role execution, it's good enough for matrix-synapse and all roles after that, but.. it breaks when someone uses `--tags=setup-nginx-proxy` alone. The downside of including this vars file like this in `setup.yml` is that the variables contained in it cannot be overriden by the user (in their inventory's `vars.yml`). ... but it's not like overriding these variables was possible anyway when including them at runtime.
45 lines
1.2 KiB
YAML
Executable File
45 lines
1.2 KiB
YAML
Executable File
---
|
|
- name: "Set up a Matrix server"
|
|
hosts: "{{ target if target is defined else 'matrix_servers' }}"
|
|
become: true
|
|
|
|
vars_files:
|
|
- roles/matrix-synapse/vars/workers.yml
|
|
|
|
roles:
|
|
- matrix-base
|
|
- matrix-dynamic-dns
|
|
- matrix-mailer
|
|
- matrix-postgres
|
|
- matrix-redis
|
|
- matrix-corporal
|
|
- matrix-bridge-appservice-discord
|
|
- matrix-bridge-appservice-slack
|
|
- matrix-bridge-appservice-webhooks
|
|
- matrix-bridge-appservice-irc
|
|
- matrix-bridge-mautrix-facebook
|
|
- matrix-bridge-mautrix-hangouts
|
|
- matrix-bridge-mautrix-signal
|
|
- matrix-bridge-mautrix-telegram
|
|
- matrix-bridge-mautrix-whatsapp
|
|
- matrix-bridge-mx-puppet-discord
|
|
- matrix-bridge-mx-puppet-steam
|
|
- matrix-bridge-mx-puppet-skype
|
|
- matrix-bridge-mx-puppet-slack
|
|
- matrix-bridge-mx-puppet-twitter
|
|
- matrix-bridge-mx-puppet-instagram
|
|
- matrix-bridge-sms
|
|
- matrix-bot-matrix-reminder-bot
|
|
- matrix-synapse
|
|
- matrix-synapse-admin
|
|
- matrix-registration
|
|
- matrix-client-element
|
|
- matrix-jitsi
|
|
- matrix-ma1sd
|
|
- matrix-dimension
|
|
- matrix-email2matrix
|
|
- matrix-nginx-proxy
|
|
- matrix-coturn
|
|
- matrix-aux
|
|
- matrix-common-after
|