courseworkrep/roles/postgresql/tasks/configure.yml

18 lines
401 B
YAML
Raw Normal View History

2024-12-08 19:11:48 +00:00
- name: Configure postgresql.conf
2024-11-10 21:17:33 +00:00
template:
src: postgresql.conf.j2
dest: /var/lib/pgsql/data/postgresql.conf
owner: postgres
group: postgres
mode: '0644'
notify: Restart PostgreSQL
2024-12-08 19:11:48 +00:00
- name: Configure pg_hba.conf
2024-11-10 21:17:33 +00:00
template:
src: pg_hba.conf.j2
dest: /var/lib/pgsql/data/pg_hba.conf
owner: postgres
group: postgres
mode: '0644'
notify: Restart PostgreSQL