Skip to content

Commit

Permalink
Merge r1923479 from trunk:
Browse files Browse the repository at this point in the history
CI: Try to cope with CentOS Stream containers being out-of-sync with
the yum repos when building the slapd container. 



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1923480 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
notroj committed Jan 31, 2025
1 parent 1d76de0 commit 347d7b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/travis_Dockerfile_slapd.centos
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM quay.io/centos/centos:stream9
RUN dnf install -y epel-release && \
dnf install -y openldap openldap-clients openldap-servers openldap-devel && \
dnf -y clean all --enablerepo='*'
RUN rpm -q openldap-servers || (dnf install --refresh -y epel-release && \
dnf install --nobest -y openldap-clients openldap-servers openldap-devel && \
dnf -y clean all --enablerepo='*')
CMD /usr/sbin/slapd -u ldap -d1 '-h ldap:// ldapi:///'

0 comments on commit 347d7b3

Please sign in to comment.