29 lines
947 B
YAML
29 lines
947 B
YAML
|
---
|
||
|
- name: Configure global settings.
|
||
|
lineinfile:
|
||
|
dest: "{{ postgresql_config_path }}/postgresql.conf"
|
||
|
regexp: "^#?{{ item.option }}.+$"
|
||
|
line: "{{ item.option }} = '{{ item.value }}'"
|
||
|
state: "{{ item.state | default('present') }}"
|
||
|
with_items: "{{ postgresql_global_config_options }}"
|
||
|
notify: restart postgresql
|
||
|
|
||
|
- name: Configure host based authentication (if entries are configured).
|
||
|
template:
|
||
|
src: "pg_hba.conf.j2"
|
||
|
dest: "{{ postgresql_config_path }}/pg_hba.conf"
|
||
|
owner: "{{ postgresql_user }}"
|
||
|
group: "{{ postgresql_group }}"
|
||
|
mode: 0600
|
||
|
notify: restart postgresql
|
||
|
when: postgresql_hba_entries | length > 0
|
||
|
|
||
|
- name: Ensure PostgreSQL unix socket dirs exist.
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
owner: "{{ postgresql_user }}"
|
||
|
group: "{{ postgresql_group }}"
|
||
|
mode: "{{ postgresql_unix_socket_directories_mode }}"
|
||
|
with_items: "{{ postgresql_unix_socket_directories }}"
|