Merge pull request #188 from oxzi/bullseye

Support Debian Bullseye aka Debian 11
This commit is contained in:
Jeff Geerling 2021-11-25 17:08:41 -06:00 committed by GitHub
commit 1f7de9f49d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

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

View File

@ -30,6 +30,7 @@ galaxy_info:
- jessie
- stretch
- buster
- bullseye
galaxy_tags:
- database
- postgresql

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

@ -0,0 +1,11 @@
---
__postgresql_version: "13"
__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