From 7ff315810e1d2c5871c4e87049687852b2cee7ee Mon Sep 17 00:00:00 2001 From: "Austin S. Hemmelgarn" Date: Wed, 15 Jul 2020 21:38:52 -0400 Subject: Fix SHA256 handling in eBPF bundling code. (#9546) This makes it compatible both with busybox and older GNU userspaces. --- packaging/bundle-ebpf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packaging/bundle-ebpf.sh') diff --git a/packaging/bundle-ebpf.sh b/packaging/bundle-ebpf.sh index 5792490878..ecc365ea44 100755 --- a/packaging/bundle-ebpf.sh +++ b/packaging/bundle-ebpf.sh @@ -8,7 +8,7 @@ EBPF_TARBALL="netdata-kernel-collector-glibc-${EBPF_VERSION}.tar.xz" mkdir -p "${SRCDIR}/tmp/ebpf" curl -sSL --connect-timeout 10 --retry 3 "https://github.com/netdata/kernel-collector/releases/download/${EBPF_VERSION}/${EBPF_TARBALL}" > "${EBPF_TARBALL}" || exit 1 -sha256sum -c --ignore-missing "${SRCDIR}/packaging/ebpf.checksums" || exit 1 +grep "${EBPF_TARBALL}" "${SRCDIR}/packaging/ebpf.checksums" | sha256sum -c - || exit 1 tar -xaf "${EBPF_TARBALL}" -C "${SRCDIR}/tmp/ebpf" || exit 1 # shellcheck disable=SC2046 cp -a $(find "${SRCDIR}/tmp/ebpf" -mindepth 1 -maxdepth 1) "${PLUGINDIR}" -- cgit v1.2.3