aboutsummaryrefslogtreecommitdiffstats
path: root/boot/mr_install.sh
diff options
context:
space:
mode:
authorMarco Platania <platania@research.att.com>2017-04-12 09:59:16 -0400
committerMarco Platania <platania@research.att.com>2017-04-14 17:38:43 +0000
commit859e7d04ad1ccc20a1bb13df09e71dc714fbfb69 (patch)
treec89c3a379ef86df6472bbfe470ab57a1c0937d94 /boot/mr_install.sh
parenta959cc2f38074e81af878b1a172ca5b84e4d4400 (diff)
move docker key instruction
Change-Id: Ia91176e98e1e578aa05745aa8f3b97995ef8bb55 Signed-off-by: Marco Platania <platania@research.att.com> (cherry picked from commit dce86012866282cf906bc4f0a62cc5b224dac199)
Diffstat (limited to 'boot/mr_install.sh')
-rw-r--r--boot/mr_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/mr_install.sh b/boot/mr_install.sh
index f5a27b2f..c01cfe2d 100644
--- a/boot/mr_install.sh
+++ b/boot/mr_install.sh
@@ -3,7 +3,6 @@
# Read configuration files
NEXUS_REPO=$(cat /opt/config/nexus_repo.txt)
ARTIFACTS_VERSION=$(cat /opt/config/artifacts_version.txt)
-DOCKER_KEY=$(cat /opt/config/docker_key.txt)
DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt)
CLOUD_ENV=$(cat /opt/config/cloud_env.txt)
GERRIT_BRANCH=$(cat /opt/config/gerrit_branch.txt)
@@ -29,6 +28,7 @@ mv /opt/mr_serv.sh /etc/init.d
update-rc.d mr_serv.sh defaults
# Download and install docker-engine and docker-compose
+DOCKER_KEY=$(cat /opt/config/docker_key.txt)
apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys $DOCKER_KEY
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
apt-get update