matrix-docker-ansible-deploy/roles/matrix-server/tasks/main.yml
Slavi Pantaleev d107ab2540 Add support for upgrading Postgres
Since cbee084ac1, this playbook supports Postgres 10.x,
but keeps existing Postgres-9.x installs on 9.x.

This playbook can now also be ran with `--tags=upgrade-postgres`
to make it upgrade from Postgres 9.x to 10.x (or other versions
in the future).
2018-05-28 20:40:42 +03:00

70 lines
1.1 KiB
YAML

---
- include: tasks/setup_base.yml
tags:
- setup-main
- include: tasks/setup_main.yml
tags:
- setup-main
- include: tasks/setup_ssl.yml
tags:
- setup-main
- setup-ssl
- include: tasks/upgrade_postgres.yml
tags:
- upgrade-postgres
- include: tasks/setup_postgres.yml
tags:
- setup-main
- setup-postgres
- include: tasks/setup_s3fs.yml
tags:
- setup-main
- setup-s3fs
- include: tasks/setup_goofys.yml
tags:
- setup-main
- setup-goofys
- include: tasks/setup_coturn.yml
tags:
- setup-main
- setup-coturn
- include: tasks/setup_synapse.yml
tags:
- setup-main
- setup-synapse
- setup-coturn
- include: tasks/setup_riot_web.yml
tags:
- setup-main
- setup-riot-web
- include: tasks/setup_nginx_proxy.yml
tags:
- setup-main
- setup-nginx-proxy
- 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