You've already forked matrix-docker-ansible-deploy
mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-08-10 21:52:20 +02:00
docs
examples
group_vars
inventory
roles
matrix-base
matrix-common-after
matrix-corporal
matrix-coturn
matrix-mailer
matrix-mxisd
matrix-nginx-proxy
matrix-postgres
defaults
tasks
util
detect_existing_postgres_version.yml
import_postgres.yml
import_sqlite_db.yml
init.yml
main.yml
migrate_postgres_data_directory.yml
setup_postgres.yml
upgrade_postgres.yml
validate_config.yml
templates
matrix-riot-web
matrix-synapse
.gitignore
CHANGELOG.md
LICENSE
README.md
ansible.cfg
setup.yml
46 lines
2.0 KiB
YAML
46 lines
2.0 KiB
YAML
![]() |
---
|
||
|
|
||
|
# This utility aims to determine if there is some existing Postgres version in use or not.
|
||
|
# If there is, it also tries to detect the Docker image that corresponds to that version.
|
||
|
|
||
|
- name: Initialize Postgres version determination variables (default to empty)
|
||
|
set_fact:
|
||
|
matrix_postgres_detection_pg_version_path: "{{ matrix_postgres_data_path }}/PG_VERSION"
|
||
|
matrix_postgres_detected_existing: false
|
||
|
matrix_postgres_detected_version: ""
|
||
|
matrix_postgres_detected_version_corresponding_docker_image: ""
|
||
|
|
||
|
- name: Determine existing Postgres version (check PG_VERSION file)
|
||
|
stat:
|
||
|
path: "{{ matrix_postgres_detection_pg_version_path }}"
|
||
|
register: result_pg_version_stat
|
||
|
|
||
|
- set_fact:
|
||
|
matrix_postgres_detected_existing: true
|
||
|
when: "result_pg_version_stat.stat.exists"
|
||
|
|
||
|
- name: Determine existing Postgres version (read PG_VERSION file)
|
||
|
slurp:
|
||
|
src: "{{ matrix_postgres_detection_pg_version_path }}"
|
||
|
register: result_pg_version
|
||
|
when: "matrix_postgres_detected_existing"
|
||
|
|
||
|
- name: Determine existing Postgres version (make sense of PG_VERSION file)
|
||
|
set_fact:
|
||
|
matrix_postgres_detected_version: "{{ result_pg_version['content']|b64decode|replace('\n', '') }}"
|
||
|
when: "matrix_postgres_detected_existing"
|
||
|
|
||
|
- name: Determine corresponding Docker image to detected version (assume default of latest)
|
||
|
set_fact:
|
||
|
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_latest }}"
|
||
|
when: "matrix_postgres_detected_version != ''"
|
||
|
|
||
|
- name: Determine corresponding Docker image to detected version (use 9.x, if detected)
|
||
|
set_fact:
|
||
|
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v9 }}"
|
||
|
when: "matrix_postgres_detected_version.startswith('9.')"
|
||
|
|
||
|
- name: Determine corresponding Docker image to detected version (use 10.x, if detected)
|
||
|
set_fact:
|
||
|
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v10 }}"
|
||
|
when: "matrix_postgres_detected_version == '10' or matrix_postgres_detected_version.startswith('10.')"
|