File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,15 @@ RUN useradd osg \
4444# Pull HTCondor from the proper repo. For "release" we need to use
4545# osg-upcoming-testing to meet the patch tuesday requirements.
4646RUN if [[ $BASE_YUM_REPO = release ]]; then \
47- yum -y --enablerepo=osg-upcoming-testing install condor; \
47+ yum -y --enablerepo=osg-upcoming-testing install condor && \
48+ if /usr/local/bin/pkg-cmp-gt.sh condor 23.10.26; then \
49+ yum -y --enablerepo=osg-upcoming-testing swap pelican pelican-debug; \
50+ fi; \
4851 else \
49- yum -y install condor; \
52+ yum -y install condor && \
53+ if /usr/local/bin/pkg-cmp-gt.sh condor 23.10.26; then \
54+ yum -y swap pelican pelican-debug; \
55+ fi; \
5056 fi
5157
5258# Install an alternate back-version of apptainer with support for registry mirrors,
You can’t perform that action at this time.
0 commit comments