1
0
Fork 0
mirror of https://github.com/geerlingguy/ansible-role-postgresql.git synced 2024-10-13 05:16:01 -04:00

Add vars file for Ubuntu-24

This commit is contained in:
fap 2024-05-13 11:09:03 +02:00
parent 6e339edaff
commit 86bdcf2400

11
vars/Ubuntu-24.yml Normal file
View file

@ -0,0 +1,11 @@
---
__postgresql_version: "16"
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
__postgresql_daemon: postgresql
__postgresql_packages:
- postgresql
- postgresql-contrib
- libpq-dev
postgresql_python_library: python3-psycopg2