We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bc25b8 commit 938afb1Copy full SHA for 938afb1
cli/src/pcluster/resources/imagebuilder/parallelcluster.yaml
@@ -234,7 +234,11 @@ phases:
234
fi
235
236
yum -y update krb5-libs
237
- yum -y groupinstall development && sudo yum -y install curl wget jq
+ yum -y groupinstall development && sudo yum -y install wget jq
238
+ if [[ ${!OS} != alinux2023 ]]; then
239
+ # Do not install curl on al2023 since curl-minimal-8.5.0-1.amzn2023* is already shipped and conflicts.
240
+ yum -y install curl
241
+ fi
242
elif [[ ${!PLATFORM} == DEBIAN ]]; then
243
if [[ "${CfnParamUpdateOsAndReboot}" == "false" ]]; then
244
# disable apt-daily.timer to avoid dpkg lock
0 commit comments