From 6d4b0d13eeb9860877e72fc2dc923a1ce66760d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Tue, 24 Feb 2026 15:45:49 +0100 Subject: [PATCH] CI: Update zypper configuation within a drop-in directory Current openSUSE Tumbleweed image replaced /etc/zypp/zypp.conf file with /etc/zypp/zypp.conf.d directory and thus a CI workflow for the distrubution failed: Run sed -i /etc/zypp/zypp.conf -e "s/rpm.install.excludedocs = yes/rpm.install.excludedocs = no/" sed: can't read /etc/zypp/zypp.conf: No such file or directory This patch adapts to the change. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9993f7e5..f6ebb695 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -352,8 +352,8 @@ jobs: steps: - name: Enable docs in container run: - sed -i /etc/zypp/zypp.conf - -e "s/rpm.install.excludedocs = yes/rpm.install.excludedocs = no/" + printf '[main]\nrpm.install.excludedocs = no\n' + > /etc/zypp/zypp.conf.d/excludedocs.conf - name: Install dependencies run: