Use fixed image tags for prodrigestivill/postgres-backup-local

At some point, we can drop v9.6 support and use a single variable
that holds this value.

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2191
This commit is contained in:
Slavi Pantaleev
2022-10-27 06:45:37 +03:00
parent fb2327f899
commit e5e5ee4f72
2 changed files with 19 additions and 8 deletions

View File

@ -16,3 +16,14 @@
- "matrix_postgres_backup_keep_months"
- "matrix_postgres_backup_path"
- "matrix_postgres_backup_databases"
- name: (Deprecation) Catch and report renamed settings
ansible.builtin.fail:
msg: >-
Your configuration contains a variable, which now has a different name.
Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
when: "item.old in vars"
with_items:
- {'old': 'matrix_postgres_backup_docker_image_suffix', 'new': 'matrix_postgres_backup_docker_image_distro'}