ansible/roles/postgresql_server/tasks/main.yml
Otthorn a625a58ddd
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
create role postgresql_server
2021-03-10 12:01:32 +01:00

41 lines
981 B
YAML

---
- name: Install postgresql
apt:
update_cache: true
name: postgresql
state: present
register: apt_result
retries: 3
until: apt_result is succeeded
- name: Ensure main postgresql directory exists
file:
path: /etc/postgresql/{{ postgresql.version }}/main/
state: directory
owner: postgres
group: postgres
mode: 0755
recurse: yes
- name: Ensure configuration directory exists
file:
path: /etc/postgresql/{{ postgresql.version }}/main/conf.d
state: directory
owner: postgres
group: postgres
mode: 0755
- name: Configuration of postgresql {{ postgresql.version }}
template:
src: postgresql/{{ item }}.j2
dest: /etc/postgresql/{{ postgresql.version }}/main/{{ item }}
mode: 0640
owner: postgres
group: postgres
loop:
- pg_hba.conf
- postgresql.conf
notify:
- restart postgresql