From 175987a956e4b14d8a3c8f40b85f6d558091a56d Mon Sep 17 00:00:00 2001 From: Bren Briggs Date: Wed, 29 Mar 2017 21:42:10 -0400 Subject: [PATCH] Add --quiet option to wget to prevent crashing when running remote-exec --- terraform/shared/scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/shared/scripts/install.sh b/terraform/shared/scripts/install.sh index 9566cfed1..8d57ee85a 100644 --- a/terraform/shared/scripts/install.sh +++ b/terraform/shared/scripts/install.sh @@ -14,7 +14,7 @@ fi echo "Fetching Consul..." CONSUL=0.7.0 cd /tmp -wget https://releases.hashicorp.com/consul/${CONSUL}/consul_${CONSUL}_linux_amd64.zip -O consul.zip +wget https://releases.hashicorp.com/consul/${CONSUL}/consul_${CONSUL}_linux_amd64.zip -O consul.zip --quiet echo "Installing Consul..." unzip consul.zip >/dev/null