Fix some ansible-lint-reported errors

This commit is contained in:
Slavi Pantaleev
2022-11-02 07:00:45 +02:00
parent e531b7aefd
commit 8a609e5cf2
4 changed files with 7 additions and 7 deletions

View File

@ -51,8 +51,8 @@
daemon_reload: true
register: matrix_postgres_import_start_result
- when: matrix_postgres_import_start_result.changed | bool
name: Wait a bit, so that Postgres can start
- name: Wait a bit, so that Postgres can start
when: matrix_postgres_import_start_result.changed | bool
ansible.builtin.wait_for:
timeout: "{{ postgres_start_wait_time }}"
delegate_to: 127.0.0.1

View File

@ -30,8 +30,8 @@
daemon_reload: true
register: matrix_postgres_vacuum_start_result
- when: matrix_postgres_vacuum_start_result.changed | bool
name: Wait a bit, so that Postgres can start
- name: Wait a bit, so that Postgres can start
when: matrix_postgres_vacuum_start_result.changed | bool
ansible.builtin.wait_for:
timeout: "{{ postgres_start_wait_time }}"
delegate_to: 127.0.0.1