2018-10-16 18:53:36 +00:00
|
|
|
---
|
|
|
|
- block:
|
|
|
|
- name: Setup global config file
|
|
|
|
template:
|
|
|
|
src: postgresql/data/postgresql.conf.j2
|
|
|
|
dest: "{{ __postgres_config_path }}/postgresql.conf"
|
|
|
|
mode: 0600
|
|
|
|
notify: __postgres_restart
|
2018-10-17 20:26:30 +00:00
|
|
|
|
2018-10-17 20:19:04 +00:00
|
|
|
- name: Setup client authentication
|
|
|
|
template:
|
2018-10-17 20:26:30 +00:00
|
|
|
src: postgresql/data/pg_hba.conf.j2
|
2018-10-17 20:19:04 +00:00
|
|
|
dest: "{{ __postgres_config_path }}/pg_hba.conf"
|
|
|
|
mode: 0600
|
2018-10-17 20:26:30 +00:00
|
|
|
notify: __postgres_restart
|
2018-10-16 18:53:36 +00:00
|
|
|
become: True
|
|
|
|
become_user: root
|