From b2da960212571fc3e287eedcdc4c8c92fed9bf83 Mon Sep 17 00:00:00 2001 From: Guo Ruijing Date: Mon, 20 Nov 2017 11:19:17 -0500 Subject: update opnfv/containter box 1. add flannel, calico, busybox, nginx and ubuntu in box, 2. use whole file instead of patch 3. deploy new box Change-Id: I937e0df264ff7b639b4d6e8b7199f9502e502340 Signed-off-by: Guo Ruijing --- ci/update.sh | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 ci/update.sh (limited to 'ci/update.sh') diff --git a/ci/update.sh b/ci/update.sh new file mode 100644 index 0000000..18752b9 --- /dev/null +++ b/ci/update.sh @@ -0,0 +1,58 @@ +#!/bin/sh -eux +export DEBIAN_FRONTEND=noninteractive + +ubuntu_version="`lsb_release -r | awk '{print $2}'`"; +ubuntu_major_version="`echo $ubuntu_version | awk -F. '{print $1}'`"; + +# Disable release-upgrades +sed -i.bak 's/^Prompt=.*$/Prompt=never/' /etc/update-manager/release-upgrades; + +# Update the package list +apt-get -y update; + +# update package index on boot +cat </etc/init/refresh-apt.conf; +description "update package index" +start on networking +task +exec /usr/bin/apt-get update +EOF + +# Disable periodic activities of apt +cat </etc/apt/apt.conf.d/10disable-periodic; +APT::Periodic::Enable "0"; +EOF + +# Upgrade all installed packages incl. kernel and kernel headers +apt-get -y dist-upgrade -o Dpkg::Options::="--force-confnew"; + +apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D +apt-key adv -k 58118E89F3A912897C070ADBF76221572C52609D +cat << EOF | tee /etc/apt/sources.list.d/docker.list +deb [arch=amd64] https://apt.dockerproject.org/repo ubuntu-xenial main +EOF + +curl -s http://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - +cat <