Skip to content

Commit c515caf

Browse files
committed
bugfix
libssl3 package bugfix
1 parent 4410057 commit c515caf

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

debian.apache.Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,14 @@ RUN \
8181
echo ">> Applying libmemcachedutil2 → libmemcachedutil2t64 workaround"; \
8282
sed -i 's/libmemcachedutil2/libmemcachedutil2t64/g' /usr/local/bin/install-php-extensions; \
8383
else \
84-
echo ">> Workaround not needed (already fixed upstream)"; \
84+
echo ">> libmemcachedutil2 Workaround not needed (already fixed upstream)"; \
85+
fi; \
86+
if grep -q 'libssl3' /usr/local/bin/install-php-extensions && \
87+
! grep -q 'libssl3t64' /usr/local/bin/install-php-extensions; then \
88+
echo ">> Applying libssl3 → libssl3t64 workaround"; \
89+
sed -i 's/libssl3/libssl3t64/g' /usr/local/bin/install-php-extensions; \
90+
else \
91+
echo ">> libssl3 Workaround not needed (already fixed upstream)"; \
8592
fi; \
8693
fi; \
8794
install-php-extensions $PHP_EXTENSIONS_LIST ; \

debian.fpm.Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,14 @@ RUN \
8181
echo ">> Applying libmemcachedutil2 → libmemcachedutil2t64 workaround"; \
8282
sed -i 's/libmemcachedutil2/libmemcachedutil2t64/g' /usr/local/bin/install-php-extensions; \
8383
else \
84-
echo ">> Workaround not needed (already fixed upstream)"; \
84+
echo ">> libmemcachedutil2 Workaround not needed (already fixed upstream)"; \
85+
fi; \
86+
if grep -q 'libssl3' /usr/local/bin/install-php-extensions && \
87+
! grep -q 'libssl3t64' /usr/local/bin/install-php-extensions; then \
88+
echo ">> Applying libssl3 → libssl3t64 workaround"; \
89+
sed -i 's/libssl3/libssl3t64/g' /usr/local/bin/install-php-extensions; \
90+
else \
91+
echo ">> libssl3 Workaround not needed (already fixed upstream)"; \
8592
fi; \
8693
fi; \
8794
install-php-extensions $PHP_EXTENSIONS_LIST ; \

0 commit comments

Comments
 (0)