add support for debian 12

This commit is contained in:
jkress 2023-06-12 14:36:40 +02:00
parent 8861048695
commit 7d7e2a26d8
3 changed files with 13 additions and 0 deletions

View File

@ -50,6 +50,7 @@ jobs:
- ubuntu1804
- debian10
- debian11
- debian12
steps:
- name: Check out the codebase.

View File

@ -39,6 +39,7 @@ galaxy_info:
- stretch
- buster
- bullseye
- bookworm
galaxy_tags:
- database
- postgresql

11
vars/Debian-12.yml Normal file
View File

@ -0,0 +1,11 @@
---
__postgresql_version: "15"
__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_version }}-main"
__postgresql_packages:
- postgresql
- postgresql-contrib
- libpq-dev
postgresql_python_library: python3-psycopg2