mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Abort if on an unsupported Postgres version (v9.6)
Official support ends today (2021-11-11). Synapse still supports v9.6, but we'd better force users to transition to newer versions anyway.
This commit is contained in:
parent
dc70e94a31
commit
c4d2c8394c
@ -18,6 +18,11 @@
|
|||||||
matrix_postgres_docker_image_to_use: "{{ matrix_postgres_docker_image_latest if matrix_postgres_detected_version_corresponding_docker_image == '' else matrix_postgres_detected_version_corresponding_docker_image }}"
|
matrix_postgres_docker_image_to_use: "{{ matrix_postgres_docker_image_latest if matrix_postgres_detected_version_corresponding_docker_image == '' else matrix_postgres_detected_version_corresponding_docker_image }}"
|
||||||
when: matrix_postgres_enabled|bool
|
when: matrix_postgres_enabled|bool
|
||||||
|
|
||||||
|
- name: Abort if on an unsupported Postgres version
|
||||||
|
fail:
|
||||||
|
msg: "You're on Postgres {{ matrix_postgres_detected_version }}, which is no longer supported. To upgrade, see docs/maintenance-postgres.md"
|
||||||
|
when: "matrix_postgres_enabled|bool and matrix_postgres_detected_version.startswith('9.')"
|
||||||
|
|
||||||
- name: Inject warning if on an old version of Postgres
|
- name: Inject warning if on an old version of Postgres
|
||||||
set_fact:
|
set_fact:
|
||||||
matrix_playbook_runtime_results: |
|
matrix_playbook_runtime_results: |
|
||||||
|
Loading…
Reference in New Issue
Block a user