add Ubuntu 20.04 support

This commit is contained in:
ace
2023-03-15 12:26:09 +03:00
parent 9207b91282
commit f753c5d1af
5 changed files with 35 additions and 0 deletions

View File

@ -1,4 +1,11 @@
---
- name: Create data directory
file:
path: "{{ postgresql_data_dir }}"
owner: "postgres"
group: "postgres"
state: directory
- name: Merge user options for PostgreSQL config
set_fact:
postgresql_combined_parameters: "{{ postgresql_default_parameters | combine(postgresql_custom_parameters|default({}), recursive=true) }}"