From 1ce9b3ca9c2ca2b2060e39a217d2e496c9a31826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Thu, 8 Aug 2013 17:02:59 -0700 Subject: [PATCH] switch from http to https --- contrib/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/install.sh b/contrib/install.sh index e58f054685..04340e2acb 100755 --- a/contrib/install.sh +++ b/contrib/install.sh @@ -3,7 +3,7 @@ # Original version by Jeff Lindsay # Revamped by Jerome Petazzoni # -# This script canonical location is http://get.docker.io/; to update it, run: +# This script canonical location is https://get.docker.io/; to update it, run: # s3cmd put -m text/x-shellscript -P install.sh s3://get.docker.io/index echo "Ensuring basic dependencies are installed..." @@ -36,7 +36,7 @@ else fi echo "Downloading docker binary and uncompressing into /usr/local/bin..." -curl -s http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-latest.tgz | +curl -s https://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-latest.tgz | tar -C /usr/local/bin --strip-components=1 -zxf- \ docker-latest/docker