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