From 07b50a90a8e7380b781d75dda3773eb23cafb131 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 10 Jan 2014 10:20:31 -0700 Subject: [PATCH] Inline the test.docker.io fingerprint in the install.sh script as well As long as we're doing it, we ought to do it for all the "official" Docker properties at least Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) Docker-DCO-1.1-Signed-off-by: Tianon Gravi (github: crosbymichael) --- hack/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/install.sh b/hack/install.sh index 1f37018a7b..02d812f388 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -110,6 +110,8 @@ case "$lsb_dist" in set -x if [ "https://get.docker.io/" = "$url" ]; then $sh_c "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9" + elif [ "https://test.docker.io/" = "$url" ]; then + $sh_c "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 740B314AE3941731B942C66ADF4FD13717AAD7D6" else $sh_c "$curl ${url}gpg | apt-key add -" fi