mirror of
https://github.com/geerlingguy/ansible-role-postgresql.git
synced 2024-11-11 13:50:50 -05:00
16 lines
509 B
YAML
16 lines
509 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: Ensure PostgreSQL unix socket dirs exist.
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
mode: 0777
|
|
with_items: "{{ postgresql_unix_socket_directories }}"
|