Fix the remaining var-spacing ansible-lint errors

Reference: https://ansible-lint.readthedocs.io/en/latest/default_rules/#var-spacing
This commit is contained in:
Slavi Pantaleev
2022-07-18 15:33:41 +03:00
parent cac9bf2637
commit c1849ae888
6 changed files with 15 additions and 5 deletions

View File

@ -84,6 +84,8 @@
grep -vE '{{ matrix_postgres_import_roles_ignore_regex }}' |
grep -vE '{{ matrix_postgres_import_databases_ignore_regex }}' |
psql -v ON_ERROR_STOP=1 -h matrix-postgres --dbname={{ postgres_default_import_database }}"
tags:
- skip_ansible_lint
# This is a hack.
# See: https://ansibledaily.com/print-to-standard-output-without-escaping/

View File

@ -93,6 +93,8 @@
> /out/{{ postgres_dump_name }}"
register: matrix_postgres_upgrade_postgres_dump_command_result
changed_when: matrix_postgres_upgrade_postgres_dump_command_result.rc == 0
tags:
- skip_ansible_lint
- name: Ensure matrix-postgres is stopped
ansible.builtin.service:
@ -144,6 +146,8 @@
grep -vE '{{ matrix_postgres_import_roles_ignore_regex }}' |
grep -vE '{{ matrix_postgres_import_databases_ignore_regex }}' |
psql -v ON_ERROR_STOP=1 -h matrix-postgres"
tags:
- skip_ansible_lint
# This is a hack.
# See: https://ansibledaily.com/print-to-standard-output-without-escaping/