2df4349606
If the playbook were to run with `--tags=setup-nginx-proxy`, it wouldn't go into `setup_corporal.yml`, which meant it wouldn't perform a bunch of `set_fact` calls which override important nginx proxy configuration. We run these variable overrides on each call now (tagged with `always`) to avoid such problems in the future.
93 lines
1.4 KiB
YAML
93 lines
1.4 KiB
YAML
---
|
|
|
|
- include: tasks/setup_base.yml
|
|
tags:
|
|
- setup-all
|
|
|
|
- include: tasks/setup_main.yml
|
|
tags:
|
|
- setup-all
|
|
|
|
- include: tasks/setup_ssl.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-ssl
|
|
|
|
- include: tasks/upgrade_postgres.yml
|
|
tags:
|
|
- upgrade-postgres
|
|
|
|
- include: tasks/setup_postgres.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-postgres
|
|
|
|
- include: tasks/setup_goofys.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-goofys
|
|
|
|
- include: tasks/setup_coturn.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-coturn
|
|
|
|
- include: tasks/setup_mailer.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-mailer
|
|
|
|
- include: tasks/setup_mxisd.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-mxisd
|
|
|
|
- include: tasks/setup_corporal_overrides.yml
|
|
tags:
|
|
- always
|
|
|
|
- include: tasks/setup_corporal.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-corporal
|
|
|
|
- include: tasks/setup_synapse.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-synapse
|
|
- setup-coturn
|
|
|
|
- include: tasks/setup_riot_web.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-riot-web
|
|
|
|
- include: tasks/setup_well_known.yml
|
|
tags:
|
|
- setup-mxisd
|
|
- setup-synapse
|
|
- setup-nginx-proxy
|
|
- setup-well-known
|
|
|
|
- include: tasks/setup_nginx_proxy.yml
|
|
tags:
|
|
- setup-all
|
|
- setup-nginx-proxy
|
|
- setup-well-known
|
|
|
|
- include: tasks/start.yml
|
|
tags:
|
|
- start
|
|
|
|
- include: tasks/register_user.yml
|
|
tags:
|
|
- register-user
|
|
|
|
- include: tasks/import_sqlite_db.yml
|
|
tags:
|
|
- import-sqlite-db
|
|
|
|
- include: tasks/import_media_store.yml
|
|
tags:
|
|
- import-media-store
|