From f43a362f33f8a0ed172b22a99ce781dd3b008c21 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Tue, 31 Jul 2018 14:41:01 -0700 Subject: Made docker install agnostic to ubuntu version This is the first step toward gracefully upgrading all VMs to ubuntu 16.04. Change-Id: If2b7c57b43165bd99984e76eba5f29fd8bfc6df0 Issue-ID: INT-606 Signed-off-by: Gary Wu --- boot/robot_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot/robot_install.sh') diff --git a/boot/robot_install.sh b/boot/robot_install.sh index 827b2ce4..a41cf886 100644 --- a/boot/robot_install.sh +++ b/boot/robot_install.sh @@ -82,7 +82,7 @@ cp /opt/robot_serv.sh /etc/init.d update-rc.d robot_serv.sh defaults # Download and install docker-engine -echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list +echo "deb https://apt.dockerproject.org/repo ubuntu-$(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/docker.list apt-get update apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual apt-get install -y --allow-unauthenticated docker-engine -- cgit 1.2.3-korg