From 7e7f845a326d85e19f5cd7682158cfcf45a37a6e Mon Sep 17 00:00:00 2001 From: Andrew Kenworthy <1712947+adwk67@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:25:59 +0100 Subject: [PATCH] release: 24.11.1-rc2 (#956) * release 24.11.1-rc2 Signed-off-by: Andrew Kenworthy * feat (tools): Add the package util-linux-core (#952) --------- Signed-off-by: Andrew Kenworthy Co-authored-by: Siegfried Weber --- CHANGELOG.md | 10 ++++++++++ tools/Dockerfile | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b3e54d40..7126e36ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [24.11.1-rc2] - 2024-12-12 + +### Added + +- tools: Add the package util-linux-core ([#952]). + util-linux-core contains a basic set of Linux utilities, including the + command logger which allows to enter messages into the system log. + +[#952]: https://github.com/stackabletech/docker-images/pull/952 + ## [24.11.1-rc1] - 2024-12-05 ## [24.11.0] - 2024-11-18 diff --git a/tools/Dockerfile b/tools/Dockerfile index 22ef5aa5c..a7cf10b1b 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -26,6 +26,12 @@ RUN microdnf update && \ iputils \ openssl \ tar \ + # util-linux-core contains a basic set of Linux utilities, including + # the command logger which allows to enter messages into the system + # log. + # cpe:2.3:a:kernel:util-linux:*:*:*:*:*:*:*:* + # https://nvd.nist.gov/vuln/search/results?isCpeNameSearch=true&query=cpe%3A2.3%3Aa%3Akernel%3Autil-linux%3A*%3A*%3A*%3A*%3A*%3A*%3A*%3A + util-linux-core \ zip && \ microdnf clean all && \ rm -rf /var/cache/yum