From patchwork Thu May 22 18:40:11 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: WXbet@proton.me X-Patchwork-Id: 63548 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id B2163C54E65 for ; Thu, 22 May 2025 18:42:01 +0000 (UTC) Subject: ca-certificates: postinst shift count out of range error To: openembedded-core@lists.openembedded.org From: WXbet@proton.me X-Originating-Location: Brechen, Hesse, DE (94.31.119.11) X-Originating-Platform: Windows Chrome 135 User-Agent: GROUPS.IO Web Poster MIME-Version: 1.0 Date: Thu, 22 May 2025 11:40:11 -0700 Message-ID: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 22 May 2025 18:42:01 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/217144 We see the following error maybe introduced with commit ca-certificates: submit sysroot patch upstream, drop default-sysroot.… · openembedded/openembedded-core@90d9f0b ( https://github.com/openembedded/openembedded-core/commit/90d9f0ba674d4fe8e9291f0513c13dff3775c545#diff-fea5ef51cd53e027c02d43f853be31c492bdbe8de48cfbe268bb6b1bcad5f162 ) Configuring ca-certificates. /usr/sbin/update-ca-certificates: line 75: shift: shift count out of range error: pkg_run_script: package "ca-certificates" postinst script returned status 1. error: opkg_configure: ca-certificates.postinst returned 1. The postinst part in ipkg looks like: set -e $D/usr/sbin/update-ca-certificates --sysroot $D Created from: https://github.com/openembedded/openembedded-core/commit/90d9f0ba674d4fe8e9291f0513c13dff3775c545#diff-d521676128cddb868864b5c8355a22f3245674db0e721c3458f7c35681ebd712R64-R65 Parameter $D is empty and so the shift-command fails. Looks like there is a missing slash at the end of `$D${sbindir}/update-ca-certificates --sysroot $D` or the shift error in update-ca-certificates could be avoided with a patch like this: diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates index 91d8024..0122c99 100755 --- a/sbin/update-ca-certificates +++ b/sbin/update-ca-certificates @@ -71,7 +71,7 @@ do echo "$0: [--verbose] [--fresh]" exit;; esac -  shift +  [ $# -gt 0 ] && shift done if [ ! -s "$CERTSCONF" ]