From e2d6f8d897f1c5fd367b643863107a95a0191300 Mon Sep 17 00:00:00 2001 From: Rishi Date: Fri, 17 Apr 2020 01:37:07 +0530 Subject: [PATCH] Update packet.md (#5963) The Terraform installation part states that is for CentOS 7, but the echo command refers to OS X binary. Updated the echo command to use the Linux version. --- docs/packet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/packet.md b/docs/packet.md index 7b535cf3f..0d9fb4561 100644 --- a/docs/packet.md +++ b/docs/packet.md @@ -38,7 +38,7 @@ Terraform is required to deploy the bare metal infrastructure. The steps below a Grab the latest version of Terraform and install it. ```bash -echo "https://releases.hashicorp.com/terraform/$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')/terraform_$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')_darwin_amd64.zip" +echo "https://releases.hashicorp.com/terraform/$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')/terraform_$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')_linux_amd64.zip" sudo yum install unzip sudo unzip terraform_0.12.24_linux_amd64.zip -d /usr/local/bin/ ```