This commit is contained in:
nd 2023-03-03 23:40:05 +01:00
commit aa1ce4ea60
4 changed files with 811 additions and 8 deletions

View file

@ -5,6 +5,16 @@
- postgresql-contrib
- python3-psycopg2
- name: generate postgresql.conf
template:
src: postgresql.conf.j2
dest: "/etc/postgresql/{{ pg_version }}/main/postgresql.conf"
owner: postgres
group: postgres
mode: 0644
notify:
- restart postgres
- name: generate pg_hba
template:
src: pg_hba.conf.j2