From df7b44b8d067cf9dc90764dab92938e66b36d118 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 18 Sep 2024 10:13:04 +0200 Subject: [PATCH] This pull request replaces nss_wrapper with nss_wrapper-libs Less dependency and unnecessary footprint Signed-off-by: Petr "Stone" Hracek --- 2.4/Dockerfile.c10s | 2 +- 2.4/Dockerfile.c9s | 2 +- 2.4/Dockerfile.fedora | 2 +- 2.4/Dockerfile.rhel8 | 2 +- 2.4/Dockerfile.rhel9 | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/2.4/Dockerfile.c10s b/2.4/Dockerfile.c10s index 14f24228..2f21e01c 100644 --- a/2.4/Dockerfile.c10s +++ b/2.4/Dockerfile.c10s @@ -36,7 +36,7 @@ LABEL summary="$SUMMARY" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \ dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \ diff --git a/2.4/Dockerfile.c9s b/2.4/Dockerfile.c9s index e77a1f76..cfef43ca 100644 --- a/2.4/Dockerfile.c9s +++ b/2.4/Dockerfile.c9s @@ -33,7 +33,7 @@ LABEL summary="$SUMMARY" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \ diff --git a/2.4/Dockerfile.fedora b/2.4/Dockerfile.fedora index 3085594d..f1142f42 100644 --- a/2.4/Dockerfile.fedora +++ b/2.4/Dockerfile.fedora @@ -36,7 +36,7 @@ EXPOSE 8080 EXPOSE 8443 RUN dnf install -y yum-utils gettext hostname && \ - INSTALL_PKGS="nss_wrapper bind-utils httpd mod_ssl mod_ldap mod_session mod_security sscg" && \ + INSTALL_PKGS="nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security sscg" && \ dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \ diff --git a/2.4/Dockerfile.rhel8 b/2.4/Dockerfile.rhel8 index 19421885..b5be809e 100644 --- a/2.4/Dockerfile.rhel8 +++ b/2.4/Dockerfile.rhel8 @@ -34,7 +34,7 @@ EXPOSE 8080 EXPOSE 8443 RUN yum -y module enable httpd:$HTTPD_VERSION && \ - INSTALL_PKGS="gettext hostname nss_wrapper bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ + INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \ diff --git a/2.4/Dockerfile.rhel9 b/2.4/Dockerfile.rhel9 index 01a44f3e..6e78a97a 100644 --- a/2.4/Dockerfile.rhel9 +++ b/2.4/Dockerfile.rhel9 @@ -35,7 +35,7 @@ LABEL summary="$SUMMARY" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \