1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-04 09:43:08 +02:00

Use uname -m to get architecture for RHEL package in user guide.

This commit is contained in:
David Steele 2024-10-02 18:02:15 +03:00
parent d4ed1884ea
commit 9f97269678

View File

@ -397,7 +397,7 @@
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
# Install PGDG PostgreSQL repository
RUN rpm -ivh https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
RUN rpm -ivh https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-`uname -m`/pgdg-redhat-repo-latest.noarch.rpm
# Disable default PostgreSQL repository
RUN command -v dnf >/dev/null 2>&1 && dnf -qy module disable postgresql || true