|
|
|
@@ -25,9 +25,9 @@ |
|
|
|
|
|
|
|
- name: Inject warning if on an old version of Postgres |
|
|
|
ansible.builtin.set_fact: |
|
|
|
matrix_playbook_runtime_results: | |
|
|
|
devture_playbook_runtime_messages_list: | |
|
|
|
{{ |
|
|
|
matrix_playbook_runtime_results | default([]) |
|
|
|
devture_playbook_runtime_messages_list | default([]) |
|
|
|
+ |
|
|
|
[ |
|
|
|
"NOTE: Your setup is on an old Postgres version ({{ matrix_postgres_docker_image_to_use }}), while {{ matrix_postgres_docker_image_latest }} is supported. You can upgrade using --tags=upgrade-postgres" |
|
|
|
@@ -146,9 +146,9 @@ |
|
|
|
|
|
|
|
- name: Inject warning if backup data remains |
|
|
|
ansible.builtin.set_fact: |
|
|
|
matrix_playbook_runtime_results: | |
|
|
|
devture_playbook_runtime_messages_list: | |
|
|
|
{{ |
|
|
|
matrix_playbook_runtime_results | default([]) |
|
|
|
devture_playbook_runtime_messages_list | default([]) |
|
|
|
+ |
|
|
|
[ |
|
|
|
"NOTE: You have some Postgres backup data in `{{ matrix_postgres_data_path }}-auto-upgrade-backup`, which was created during the last major Postgres update you ran. If your setup works well after this upgrade, feel free to delete this whole directory." |
|
|
|
@@ -194,9 +194,9 @@ |
|
|
|
# We just want to notify the user. Deleting data is too destructive. |
|
|
|
- name: Inject warning if matrix-postgres local data remains |
|
|
|
ansible.builtin.set_fact: |
|
|
|
matrix_playbook_runtime_results: | |
|
|
|
devture_playbook_runtime_messages_list: | |
|
|
|
{{ |
|
|
|
matrix_playbook_runtime_results | default([]) |
|
|
|
devture_playbook_runtime_messages_list | default([]) |
|
|
|
+ |
|
|
|
[ |
|
|
|
"NOTE: You are not using a local PostgreSQL database, but some old data remains from before in `{{ matrix_postgres_data_path }}`. Feel free to delete it." |
|
|
|
|