matrix-docker-ansible-deploy/roles/matrix-postgres
Slavi Pantaleev 09ac950d17 Fix dump importing (backup restore) into Postgres v14
In short, the problem is that older Postgres versions store passwords
hashed as md5. When you dump such a database, the dump naturally also
contains md5-hashed passwords.
Restoring from that dump used to create users and updates their passwords
with these md5 hashes.
However, Postgres v14 prefers does not like md5-hashed passwords now (by default),
which breaks connectivity. Postgres v14 prefers `scram-sha-256` for
authentication.

Our solution is to just ignore setting passwords (`ALTER ROLE ..`
statements) when restoring dumps. We don't need to set passwords as
defined in the dump anyway, because the playbook creates users
and manages their passwords by itself.

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1340
2021-10-21 16:38:56 +03:00
..
defaults Fix dump importing (backup restore) into Postgres v14 2021-10-21 16:38:56 +03:00
tasks Add support for Postgres v14 2021-10-01 11:27:40 +03:00
templates Fix invalid matrix-postgres.service when matrix_postgres_process_extra_arguments is empty 2021-02-19 16:33:23 +02:00