Ansible-Roles/roles/postgresql/tasks/configure.yml
2026-05-08 22:25:29 +03:00

30 lines
1,010 B
YAML

---
- name: Configure global settings.
ansible.builtin.lineinfile:
dest: "{{ postgresql_config_path }}/postgresql.conf"
regexp: ^#?{{ item.option }}.+$
line: "{{ item.option }} = '{{ item.value }}'"
state: "{{ item.state | default('present') }}"
mode: "0644"
with_items: "{{ postgresql_global_config_options }}"
notify: restart postgresql
- name: Configure host based authentication (if entries are configured).
ansible.builtin.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.
ansible.builtin.file:
path: "{{ item }}"
state: directory
owner: "{{ postgresql_user }}"
group: "{{ postgresql_group }}"
mode: "{{ postgresql_unix_socket_directories_mode }}"
with_items: "{{ postgresql_unix_socket_directories }}"