Change the print_psql_db_data boolean behaviour.

This commit is contained in:
Andrea Dell'Amico 2024-03-25 13:45:42 +01:00
parent 15459c625e
commit a0fdcaa9e5
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
---
- name: Optionally print the psql_db_data contents
ansible.builtin.import_tasks: print_psql_db_data.yml
when: psql_db_data is defined
# when: psql_db_data is defined
- import_tasks: configure-access.yml
when: psql_db_data is defined
- import_tasks: manage_dbs.yml

View File

@ -6,4 +6,4 @@
- name: print_psql_db_data | Print the psql_db_data values
ansible.builtin.debug:
var: psql_db_data
no_log: "{{ pgsql_show_db_data }}"
no_log: not "{{ pgsql_show_db_data }}"