ansible/roles/postgresql_server/tasks/main.yml
Otthorn dbbaf0d26d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
remove tailling whitespaces
2021-03-10 12:11:02 +01:00

39 lines
885 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: true
- 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