You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-07 00:35:37 +02:00
Download correct key on aarch64 in the user guide.
The default key that gets installed is for amd64. This is only required for RHEL8 it seems, so something is definitely amiss.
This commit is contained in:
@ -377,7 +377,8 @@
|
||||
|
||||
# Install PGDG PostgreSQL repository
|
||||
RUN rpm --import http://yum.postgresql.org/RPM-GPG-KEY-PGDG-10 && \
|
||||
rpm -ivh https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
|
||||
rpm -ivh https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-aarch64/pgdg-redhat-repo-latest.noarch.rpm && \
|
||||
(([ `uname -m` == aarch64 ] && wget --quiet -O /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG https://download.postgresql.org/pub/repos/yum/RPM-GPG-KEY-PGDG-AARCH64) || true)
|
||||
|
||||
# Disable default PostgreSQL repository
|
||||
RUN command -v dnf >/dev/null 2>&1 && dnf -qy module disable postgresql || true
|
||||
|
Reference in New Issue
Block a user