aboutsummaryrefslogtreecommitdiff
path: root/src/common-utils
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-12-27 21:35:13 +0300
committerSamruddhi Khandale <skhandale@microsoft.com>2022-12-27 21:35:13 +0300
commit29babe4245e35bbdfca1f0279f6cf0f6530282ca (patch)
treecf2960966986024d6aabe431d6d6a55a02d8df4a /src/common-utils
parentf9de0e43f8a9d2f590ad1d733772d4c25179db07 (diff)
fix test
Diffstat (limited to 'src/common-utils')
-rw-r--r--src/common-utils/main.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common-utils/main.sh b/src/common-utils/main.sh
index 6b1df8a..b6793d6 100644
--- a/src/common-utils/main.sh
+++ b/src/common-utils/main.sh
@@ -153,7 +153,6 @@ install_redhat_packages() {
lsof \
net-tools \
psmisc \
- curl \
wget \
ca-certificates \
rsync \
@@ -174,6 +173,12 @@ install_redhat_packages() {
man-db \
strace"
+ # rockylinux:9 installs 'curl-minimal' which clashes with 'curl'
+ # Install 'curl' for every OS except this rockylinux:9
+ if [[ "${ID}" = "rocky" ]] && [[ "${VERSION}" != *"9."* ]]; then
+ package_list="${package_list} curl"
+ fi
+
# Install OpenSSL 1.0 compat if needed
if ${install_cmd} -q list compat-openssl10 >/dev/null 2>&1; then
package_list="${package_list} compat-openssl10"