diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77123df..83322e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,7 @@ jobs: - ubuntu2204 - debian11 - debian12 + - debian13 steps: - name: Check out the codebase. diff --git a/meta/main.yml b/meta/main.yml index e10e712..0de1066 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -30,6 +30,7 @@ galaxy_info: - buster - bullseye - bookworm + - trixie galaxy_tags: - database - postgresql diff --git a/vars/Debian-13.yml b/vars/Debian-13.yml new file mode 100644 index 0000000..198fdb1 --- /dev/null +++ b/vars/Debian-13.yml @@ -0,0 +1,11 @@ +--- +__postgresql_version: "17" +__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