From f46fc2e28f929fecc9f0c8ef8c1f3f78e28d1484 Mon Sep 17 00:00:00 2001 From: Corey Hemminger Date: Tue, 17 Dec 2024 23:27:49 -0600 Subject: [PATCH] [fix] add libxcrypt pkg (#133) # Description Fixes missing libcrypt.so.2 library for chef-client 19.6.2 ## Issues Resolved https://github.com/chef/chef/issues/14760 ## Type of Change Our release process assumes you are using [Conventional Commit messages](https://www.conventionalcommits.org/en/v1.0.0/). The most important prefixes you should have in mind are: - `_fix_`: which represents bug fixes, and correlates to a SemVer patch. - `_feat_`: which represents a new feature, and correlates to a SemVer minor. - `_feat!_`:, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the !) and will result in a major version change. If you have not included a conventional commit message this can be fixed on merge. ## Check List - [ ] New functionality includes tests - [ ] All tests pass - [ ] Commit message includes a [Conventional Commit Message](https://www.conventionalcommits.org/en/v1.0.0) Signed-off-by: Corey Hemminger --- almalinux-9/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/almalinux-9/Dockerfile b/almalinux-9/Dockerfile index 9636a7c..d8657bb 100644 --- a/almalinux-9/Dockerfile +++ b/almalinux-9/Dockerfile @@ -55,6 +55,7 @@ RUN dnf -y install \ vim-minimal \ time \ wget \ + libxcrypt \ libxcrypt-compat \ which && \ dnf upgrade -y && \