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 521050a commit b7a82a6Copy full SHA for b7a82a6
cli/src/pcluster/resources/imagebuilder/parallelcluster.yaml
@@ -232,7 +232,11 @@ phases:
232
fi
233
234
yum -y update krb5-libs
235
- yum -y groupinstall development && sudo yum -y install curl wget jq
+ yum -y groupinstall development && sudo yum -y install wget jq
236
+ if [[ ${!OS} != alinux2023 ]]; then
237
+ # Do not install curl on al2023 since curl-minimal-8.5.0-1.amzn2023* is already shipped and conflicts.
238
+ yum -y install curl
239
+ fi
240
elif [[ ${!PLATFORM} == DEBIAN ]]; then
241
if [[ "${CfnParamUpdateOsAndReboot}" == "false" ]]; then
242
# disable apt-daily.timer to avoid dpkg lock
0 commit comments