-
-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dan Webb <[email protected]>
- Loading branch information
Showing
6 changed files
with
57 additions
and
27 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
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
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
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
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
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 |
---|---|---|
@@ -1,20 +1,11 @@ | ||
# STDERR: Importing GPG key 0x08B40D20: | ||
# Userid : "PostgreSQL RPM Repository <[email protected]>" | ||
# Fingerprint: D4BF 08AE 67A0 B4C7 A1DB CCD2 40BC A2B4 08B4 0D20 | ||
# From : /etc/pki/rpm-gpg/PGDG-RPM-GPG-KEY | ||
# Public key for postgresql17-17.0-2PGDG.rhel9.aarch64.rpm is not installed. Failing package is: postgresql17-17.0-2PGDG.rhel9.aarch64 | ||
# GPG Keys are configured as: file:///etc/pki/rpm-gpg/PGDG-RPM-GPG-KEY | ||
# Public key for postgresql17-libs-17.0-2PGDG.rhel9.aarch64.rpm is not installed. Failing package is: postgresql17-libs-17.0-2PGDG.rhel9.aarch64 | ||
# GPG Keys are configured as: file:///etc/pki/rpm-gpg/PGDG-RPM-GPG-KEY | ||
# Error: GPG check FAILED | ||
# ---- End output of ["dnf", "-y", "install", "postgresql17-0:17.0-2PGDG.rhel9.aarch64"] ---- | ||
# Ran ["dnf", "-y", "install", "postgresql17-0:17.0-2PGDG.rhel9.aarch64"] returned 1 | ||
|
||
postgresql_install 'postgresql' do | ||
source :os | ||
version '15' | ||
action %i(install init_server) | ||
end | ||
|
||
package 'libpq-devel' if platform_family?('amazon') | ||
|
||
postgresql_config 'postgresql-server' do | ||
server_config({ | ||
'max_connections' => 110, | ||
|