30 lines
857 B
YAML
30 lines
857 B
YAML
|
---
|
||
|
- name: Set PostgreSQL environment variables.
|
||
|
template:
|
||
|
src: postgres.sh.j2
|
||
|
dest: /etc/profile.d/postgres.sh
|
||
|
mode: 0644
|
||
|
notify: restart postgresql
|
||
|
|
||
|
- name: Ensure PostgreSQL data directory exists.
|
||
|
file:
|
||
|
path: "{{ postgresql_data_dir }}"
|
||
|
owner: "{{ postgresql_user }}"
|
||
|
group: "{{ postgresql_group }}"
|
||
|
state: directory
|
||
|
mode: 0700
|
||
|
|
||
|
- name: Check if PostgreSQL database is initialized.
|
||
|
stat:
|
||
|
path: "{{ postgresql_data_dir }}/PG_VERSION"
|
||
|
register: pgdata_dir_version
|
||
|
|
||
|
- name: Ensure PostgreSQL database is initialized.
|
||
|
command: "{{ postgresql_bin_path }}/initdb -D {{ postgresql_data_dir }}"
|
||
|
when: not pgdata_dir_version.stat.exists
|
||
|
become: true
|
||
|
become_user: "{{ postgresql_user }}"
|
||
|
# See: https://github.com/ansible/ansible/issues/16048#issuecomment-229012509
|
||
|
vars:
|
||
|
ansible_ssh_pipelining: true
|