From d6e4b2155036ddaed8740395d88bc99bd79909ca Mon Sep 17 00:00:00 2001 From: Sebastian Engel Date: Sat, 2 Mar 2024 22:34:50 +0100 Subject: [PATCH] Ensure find command available in RHEL-based The Rocky Linux 8 container doesn't ship the package `findutils`. The missing find command resulted in failed installs for salt 3006 --- bootstrap-salt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 5cfed2a12..5153b9b41 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -4808,7 +4808,7 @@ install_centos_stable_deps() { fi fi - __PACKAGES="${__PACKAGES} procps" + __PACKAGES="${__PACKAGES} procps findutils" # shellcheck disable=SC2086 __yum_install_noinput ${__PACKAGES} || return 1 @@ -5108,7 +5108,7 @@ install_centos_onedir_deps() { __PACKAGES="yum-utils chkconfig" fi - __PACKAGES="${__PACKAGES} procps" + __PACKAGES="${__PACKAGES} procps findutils" # shellcheck disable=SC2086 __yum_install_noinput ${__PACKAGES} || return 1