Skip to content

Commit 96a3674

Browse files
committed
Install jq as a prerequisite package
Signed-off-by: Luca Carrogu <[email protected]>
1 parent c4af070 commit 96a3674

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudformation/aws-parallelcluster.cfn.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3790,10 +3790,10 @@
37903790
" which yum 2>/dev/null; yum=$?\n",
37913791
" which apt-get 2>/dev/null; apt=$?\n",
37923792
" if [ \"${yum}\" == \"0\" ]; then\n",
3793-
" yum -y groupinstall development && yum -y install curl wget\n",
3793+
" yum -y groupinstall development && yum -y install curl wget jq\n",
37943794
" fi\n",
37953795
" if [ \"${apt}\" == \"0\" ]; then\n",
3796-
" apt-cache search build-essential; apt-get clean; apt-get update; apt-get -y install build-essential curl wget\n",
3796+
" apt-cache search build-essential; apt-get clean; apt-get update; apt-get -y install build-essential curl wget jq\n",
37973797
" fi\n",
37983798
" which cfn-init 2>/dev/null || ( curl -s -L -o /tmp/aws-cfn-bootstrap-latest.tar.gz https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz; easy_install -U /tmp/aws-cfn-bootstrap-latest.tar.gz)\n",
37993799
" mkdir -p /etc/chef && chown -R root:root /etc/chef\n",

0 commit comments

Comments
 (0)