2023-02-07 23:13:12 +00:00
|
|
|
- name: Make sure handlers are flushed immediately
|
|
|
|
meta: flush_handlers
|
|
|
|
|
|
|
|
- name: Load a variable file based on the OS type
|
|
|
|
include_vars: "{{ lookup('first_found', params) }}"
|
|
|
|
vars:
|
|
|
|
params:
|
|
|
|
files:
|
2023-02-09 21:49:13 +00:00
|
|
|
- "{{ ansible_facts['distribution'] }}-{{ ansible_facts['distribution_major_version'] }}.yaml"
|
|
|
|
- "{{ ansible_facts['os_family'] }}-{{ ansible_facts['distribution_major_version'] }}.yaml"
|
2023-02-07 23:13:12 +00:00
|
|
|
paths:
|
|
|
|
- "vars"
|
|
|
|
tags: postgresql_vars
|
|
|
|
|
2023-02-09 21:49:13 +00:00
|
|
|
- name: "Set locale for PostgreSQL"
|
|
|
|
include_tasks: locale.yaml
|
|
|
|
tags: postgresql_locale
|
|
|
|
|
2023-02-07 23:13:12 +00:00
|
|
|
- name: "Install PostgreSQL for {{ ansible_facts['os_family'] }}"
|
|
|
|
include_tasks: "{{ ansible_facts['os_family'] }}/main.yaml"
|
|
|
|
tags: postgresql_setup
|
|
|
|
|
2023-02-09 21:49:13 +00:00
|
|
|
- name: "Manage TLS/SSL certificates"
|
|
|
|
include_tasks: cacert.yaml
|
|
|
|
when: postgresql_ssl
|
2023-02-07 23:13:12 +00:00
|
|
|
|
|
|
|
- name: Enable and start PostgreSQL
|
|
|
|
systemd:
|
|
|
|
daemon_reload: true
|
2023-02-09 21:49:13 +00:00
|
|
|
name: "{{ postgresql_unit_name }}"
|
2023-02-07 23:13:12 +00:00
|
|
|
enabled: true
|
|
|
|
state: started
|
|
|
|
masked: no
|
|
|
|
register: postgresql_enable_and_start
|
|
|
|
tags: postgresql, postgresql_start
|
|
|
|
|
|
|
|
- name: "Configure PostgreSQL"
|
|
|
|
include_tasks: user.yaml
|
|
|
|
tags: postgresql_postgres_user
|