39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
---
|
|
- import_tasks: postgresql_org_repo.yml
|
|
- import_tasks: packages.yml
|
|
when: psql_postgresql_install
|
|
- import_tasks: postgis.yml
|
|
when: postgres_install_gis_extensions
|
|
- import_tasks: postgresql-config-deb.yml
|
|
when:
|
|
- psql_postgresql_install
|
|
- ansible_distribution_file_variety == "Debian"
|
|
- import_tasks: postgresql-config-el.yml
|
|
when:
|
|
- psql_postgresql_install
|
|
- ansible_distribution_file_variety == "RedHat"
|
|
- import_tasks: postgresql-ssl-config.yml
|
|
when: psql_postgresql_install
|
|
- import_tasks: psql-kernel-sharedmem.yml
|
|
when:
|
|
- psql_postgresql_install
|
|
- psql_set_shared_memory
|
|
- import_tasks: configure-access.yml
|
|
when:
|
|
- psql_postgresql_install
|
|
- psql_db_data is defined
|
|
- import_tasks: postgresql-service-status.yml
|
|
when: psql_postgresql_install
|
|
- import_tasks: manage_pg_db.yml
|
|
when:
|
|
- psql_postgresql_install
|
|
- psql_db_data is defined
|
|
- import_tasks: postgresql-streaming-replication.yml
|
|
when:
|
|
- postgresql_streaming_replication
|
|
- import_tasks: postgresql-backup.yml
|
|
when: psql_postgresql_install
|
|
- import_tasks: postgresql-letsencrypt-acmetool.yml
|
|
when:
|
|
- postgresql_letsencrypt_managed
|