mirror of
https://gitea.0xace.cc/ansible-galaxy/postgresql.git
synced 2024-11-25 00:06:42 +00:00
15 lines
737 B
YAML
15 lines
737 B
YAML
|
postgresql_repo_package: "https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm"
|
||
|
|
||
|
postgresql_package_name: "postgresql"
|
||
|
postgresql_package: "{{ postgresql_package_name }}{{ postgresql_major_version }}-server-{{ postgresql_version }}"
|
||
|
postgresql_base_dir: "/var/lib/pgsql"
|
||
|
postgresql_data_dir: "{{ postgresql_base_dir }}/{{ postgresql_major_version }}/data"
|
||
|
postgresql_ssl_path: "{{ postgresql_base_dir }}/{{ postgresql_major_version }}"
|
||
|
|
||
|
postgresql_ssl_update_ca_command: "update-ca-trust extract"
|
||
|
postgresql_ssl_ca_trust_dir: "/etc/pki/ca-trust/source/anchors"
|
||
|
postgresql_unit_name: "postgresql-{{ postgresql_major_version }}"
|
||
|
postgresql_deps_packages:
|
||
|
- python39
|
||
|
- python39-psycopg2
|