Skip to content

Commit 8457160

Browse files
committed
fix: Enable PostgreSQL stream selection for c9s and RHEL9
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.
1 parent 0de9b76 commit 8457160

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

vars/CentOS_9.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-License-Identifier: MIT
2+
---
3+
# Put internal variables here with CentOS 9 specific values.
4+
5+
__postgresql_packages: >-
6+
{{ ['@postgresql:' + postgresql_version +
7+
'/server'] if postgresql_version != '13' else
8+
['postgresql-server'] }}

vars/RedHat_9.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-License-Identifier: MIT
2+
---
3+
# Put internal variables here with Red Hat Enterprise Linux 9 specific values.
4+
5+
__postgresql_packages: >-
6+
{{ ['@postgresql:' + postgresql_version +
7+
'/server'] if postgresql_version != '13' else
8+
['postgresql-server'] }}

0 commit comments

Comments
 (0)