Skip to content

Commit

Permalink
fix: Enable PostgreSQL stream selection for c9s and RHEL9
Browse files Browse the repository at this point in the history
c9s/RHEL9 provides PostgreSQL 13 as the default system version as a classic
RPM package. Alternative versions are provided as modular content.
So, it requires a different installation procedure.
  • Loading branch information
fila43 committed Jan 11, 2024
1 parent 0de9b76 commit 8457160
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions vars/CentOS_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-License-Identifier: MIT
---
# Put internal variables here with CentOS 9 specific values.

__postgresql_packages: >-
{{ ['@postgresql:' + postgresql_version +
'/server'] if postgresql_version != '13' else
['postgresql-server'] }}
8 changes: 8 additions & 0 deletions vars/RedHat_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-License-Identifier: MIT
---
# Put internal variables here with Red Hat Enterprise Linux 9 specific values.

__postgresql_packages: >-
{{ ['@postgresql:' + postgresql_version +
'/server'] if postgresql_version != '13' else
['postgresql-server'] }}

0 comments on commit 8457160

Please sign in to comment.