From 1ad44cb67c70370f15d1981621824d1256a10041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Mon, 21 Oct 2024 12:39:55 +0200 Subject: [PATCH] rpm/update-config-files: zstd:chunked not enabled in Fedora yet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See: https://fedoraproject.org/wiki/Changes/zstd:chunked See: https://pagure.io/fesco/issue/3252 See: https://github.com/containers/common/pull/2048 See: https://src.fedoraproject.org/rpms/containers-common/c/9f4dd38589309fbc189eac94367f520c105c3c1c?branch=f41 Signed-off-by: Timothée Ravier --- rpm/update-config-files.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rpm/update-config-files.sh b/rpm/update-config-files.sh index a85340fcd..9d38c0664 100755 --- a/rpm/update-config-files.sh +++ b/rpm/update-config-files.sh @@ -48,9 +48,8 @@ if [[ -n "$FEDORA" ]] || [[ "$RHEL" -ge 10 ]]; then sed -i -e '/^additionalimagestores\ =\ \[/a "\/usr\/lib\/containers\/storage",' storage.conf fi -# Set these on Fedora 41+ and RHEL 10+ -# regardless of distro -if [[ "$FEDORA" -gt 40 ]] || [[ "$RHEL" -ge 10 ]]; then +# Set these on RHEL 10+ +if [[ "$RHEL" -ge 10 ]]; then ensure pkg/config/containers.conf compression_format \"zstd:chunked\" # Leave composefs disabled ensure storage.conf use_composefs \"false\"