forked from linux-system-roles/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] }} |