Skip to content

Commit 0fbaf93

Browse files
committed
Add generated files
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 91d2b42 commit 0fbaf93

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

12/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:12 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

13/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:13 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

13/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:13 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

13/Dockerfile.rhel9

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN { yum -y module enable postgresql:13 || :; } && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:15 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:15 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.rhel9

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN { yum -y module enable postgresql:15 || :; } && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

16/Dockerfile.c10s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4141
# This image must forever use UID 26 for postgres user so our volumes are
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
44-
RUN INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib glibc-locale-source" && \
44+
RUN INSTALL_PKGS="rsync tar gettext-envsubst bind-utils nss_wrapper-libs postgresql-server postgresql-contrib glibc-locale-source" && \
4545
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4646
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4747
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

16/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:16 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

16/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:16 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

0 commit comments

Comments
 (0)