Create the data directory if it is meant to be in a different place.

This commit is contained in:
Andrea Dell'Amico 2024-08-08 19:32:50 +02:00
parent 715e2b4c49
commit 2f1d9b5971
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 11 additions and 0 deletions

View File

@ -36,6 +36,17 @@
pkg: "{{ psql_el_pgdg_packages }}"
state: present
- name: postgresql-packages | Create the postgresql data directory if it is not in the default place
ansible.builtin.file:
dest: "{{ psql_el_data_dir }}"
owner: postgres
group: postgres
mode: "700"
state: directory
when:
- psql_use_alternate_data_dir
- ansible_distribution_file_variety == "RedHat"
- name: postgresql-packages | Init the db if needed on EL systems
ansible.builtin.command: /usr/pgsql-{{ psql_version }}/bin/postgresql-{{ psql_version }}-setup initdb
args: