Update 'tasks/configure.yml'

This commit is contained in:
jens 2021-08-27 12:36:03 +00:00
parent 49f4ce3cbf
commit 5bd53df489
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,8 @@
state: "{{ item.state | default('present') }}"
mode: 0644
with_items: "{{ postgresql_global_config_options }}"
notify: restart postgresql
notify:
- "Restart postgresql"
- name: Configure host based authentication (if entries are configured).
template:
@ -16,7 +17,7 @@
owner: "{{ postgresql_user }}"
group: "{{ postgresql_group }}"
mode: 0600
notify: restart postgresql
notify: "Restart postgresql"
when: postgresql_hba_entries | length > 0
- name: Ensure PostgreSQL unix socket dirs exist.