Fix some lint warnings.
This commit is contained in:
parent
d69716bb8a
commit
a6f71dda75
tasks
|
@ -1,38 +1,51 @@
|
|||
---
|
||||
- import_tasks: postgresql_org_repo.yml
|
||||
- import_tasks: packages.yml
|
||||
- name: Postgresql external repository
|
||||
ansible.builtin.import_tasks: postgresql_org_repo.yml
|
||||
- name: Manage the postgresql packages
|
||||
ansible.builtin.import_tasks: packages.yml
|
||||
when: psql_postgresql_install
|
||||
- import_tasks: postgis.yml
|
||||
- name: Manage the postgis packages
|
||||
ansible.builtin.import_tasks: postgis.yml
|
||||
when: postgres_install_gis_extensions
|
||||
- import_tasks: postgresql-config-deb.yml
|
||||
- name: PostgreSQL configuration of deb systems
|
||||
ansible.builtin.import_tasks: postgresql-config-deb.yml
|
||||
when:
|
||||
- psql_postgresql_install
|
||||
- ansible_distribution_file_variety == "Debian"
|
||||
- import_tasks: postgresql-config-el.yml
|
||||
- name: PostgreSQL configuration of EL systems
|
||||
ansible.builtin.import_tasks: postgresql-config-el.yml
|
||||
when:
|
||||
- psql_postgresql_install
|
||||
- ansible_distribution_file_variety == "RedHat"
|
||||
- import_tasks: postgresql-ssl-config.yml
|
||||
- name: TLS setup
|
||||
ansible.builtin.import_tasks: postgresql-ssl-config.yml
|
||||
when: psql_postgresql_install
|
||||
- import_tasks: psql-kernel-sharedmem.yml
|
||||
- name: Kernel sysctl parameters
|
||||
ansible.builtin.import_tasks: psql-kernel-sharedmem.yml
|
||||
when:
|
||||
- psql_postgresql_install
|
||||
- psql_set_shared_memory
|
||||
- import_tasks: configure-access.yml
|
||||
- name: Configure access to the databases
|
||||
ansible.builtin.import_tasks: configure-access.yml
|
||||
when:
|
||||
- psql_postgresql_install
|
||||
- psql_db_data is defined
|
||||
- import_tasks: postgresql-service-status.yml
|
||||
- name: Service management
|
||||
ansible.builtin.import_tasks: postgresql-service-status.yml
|
||||
when: psql_postgresql_install
|
||||
- import_tasks: manage_pg_db.yml
|
||||
- name: Manage the databases
|
||||
ansible.builtin.import_tasks: manage_pg_db.yml
|
||||
when:
|
||||
- psql_postgresql_install
|
||||
- psql_db_data is defined
|
||||
- import_tasks: postgresql-streaming-replication.yml
|
||||
- name: Streaming replication setup
|
||||
ansible.builtin.import_tasks: postgresql-streaming-replication.yml
|
||||
when:
|
||||
- postgresql_streaming_replication
|
||||
- import_tasks: postgresql-backup.yml
|
||||
- name: Local backups
|
||||
ansible.builtin.import_tasks: postgresql-backup.yml
|
||||
when: psql_postgresql_install
|
||||
- import_tasks: postgresql-letsencrypt-acmetool.yml
|
||||
- name: Letsencrypt hook
|
||||
ansible.builtin.import_tasks: postgresql-letsencrypt-acmetool.yml
|
||||
when:
|
||||
- postgresql_letsencrypt_managed
|
||||
|
|
Loading…
Reference in New Issue