X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=blueprints%2FuCPE%2Fcommon.sh;fp=blueprints%2FuCPE%2Fcommon.sh;h=0000000000000000000000000000000000000000;hb=692eda26d4bb9aea2760f0c3d48d7a91c392afd9;hp=e2ef8254478dbb1c15c35ea7b0967d340ec32623;hpb=c19ae19ceb20a1c47d53e5d2a482f6f4fd5cfa38;p=eliot.git diff --git a/blueprints/uCPE/common.sh b/blueprints/uCPE/common.sh deleted file mode 100644 index e2ef825..0000000 --- a/blueprints/uCPE/common.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -ex - -############################################################################## -# Copyright (c) 2019 Huawei Tech and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - -# This script is to install common software for ELIOT. -# To be executed in Eliot Manager and Eliot Nodes. -# Script will install Docker software. -# Script has to be executed in Ubuntu 16.04. - -# Set Docker version -DOCKER_VERSION=18.06.1~ce~3-0~ubuntu - -sudo apt-get update && sudo apt-get install -y git - -# Install Docker as Prerequisite -curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - -sudo apt-key fingerprint 0EBFCD88 -sudo add-apt-repository \ - "deb https://download.docker.com/linux/ubuntu \ - $(lsb_release -cs) \ - stable" - -sudo apt update -sudo apt install -y docker-ce=${DOCKER_VERSION} -