From 914dcc112777cc7a3d02ab664791a31506cc23cc Mon Sep 17 00:00:00 2001 From: Joel Rebello Date: Wed, 14 Feb 2024 17:33:07 +0100 Subject: [PATCH] Fixes ipmitool init error Failed to initialize the OEM info dictionary https://github.com/ipmitool/ipmitool/issues/377 Please enter the commit message for your changes. Lines starting --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7a1df2c..001749b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,14 @@ RUN apk add --update --upgrade --no-cache --virtual build-deps \ && git clone -b master ${IPMITOOL_REPO} WORKDIR /tmp/ipmitool + +# +# cherry-pick'ed 1edb0e27e44196d1ebe449aba0b9be22d376bcb6 +# to fix https://github.com/ipmitool/ipmitool/issues/377 +# RUN git checkout ${IPMITOOL_COMMIT} \ + && git config --global user.email "github.ci@doesnot.existorg" \ + && git cherry-pick 1edb0e27e44196d1ebe449aba0b9be22d376bcb6 \ && ./bootstrap \ && ./configure \ --prefix=/usr/local \