Merge pull request #216 from cbugk/master

Added support for Ubuntu 22.04
This commit is contained in:
Jeff Geerling 2022-07-11 09:28:03 -05:00 committed by GitHub
commit 01517d25fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

@ -45,6 +45,7 @@ jobs:
- rockylinux8
- centos7
- fedora36
- ubuntu2204
- ubuntu2004
- ubuntu1804
- debian10

View File

@ -27,6 +27,7 @@ galaxy_info:
- xenial
- bionic
- focal
- jammy
- name: Debian
versions:
- wheezy

11
vars/Ubuntu-22.yml Normal file
View File

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