ansible-role-postgresql/tasks/main.yml

27 lines
659 B
YAML
Raw Normal View History

2020-09-06 18:50:02 +00:00
---
2023-10-31 19:10:51 +00:00
- name: Variable configuration.
include_tasks: variables.yml
2020-09-06 18:50:02 +00:00
2023-10-31 19:10:51 +00:00
- name: Setup/install tasks.
include_tasks: setup-RedHat.yml
2020-09-06 18:50:02 +00:00
when: ansible_os_family == 'RedHat'
- include_tasks: setup-Debian.yml
when: ansible_os_family == 'Debian'
- include_tasks: setup-Arch.yml
when: ansible_os_family == 'Archlinux'
- include_tasks: initialize.yml
- include_tasks: configure.yml
- name: Ensure PostgreSQL is started and enabled on boot.
service:
name: "{{ postgresql_daemon }}"
state: "{{ postgresql_service_state }}"
enabled: "{{ postgresql_service_enabled }}"
# Configure PostgreSQL.
- import_tasks: users.yml
- import_tasks: databases.yml