Fix install.sh of get.docker.com for debian-sudo

repair sudo call on key-add for install / https://get.docker.com/

fix #32424

Signed-off-by: Tabakhase <github@tabakhase.com>
Upstream-commit: a704d06d581e880b81189567919642ae36442bd0
Component: engine
This commit is contained in:
Tabakhase
2017-04-07 05:07:22 +02:00
committed by Tabakhase
parent be0fe36691
commit 9908272490
+1 -1
View File
@@ -482,7 +482,7 @@ do_install() {
(
set -x
echo "$docker_key" | apt-key add -
echo "$docker_key" | $sh_c 'apt-key add -'
$sh_c "mkdir -p /etc/apt/sources.list.d"
$sh_c "echo deb \[arch=$(dpkg --print-architecture)\] ${apt_url}/repo ${lsb_dist}-${dist_version} ${repo} > /etc/apt/sources.list.d/docker.list"
$sh_c 'sleep 3; apt-get update; apt-get install -y -q docker-engine'