summaryrefslogtreecommitdiffstats
path: root/packer/provision/basebuild.sh
diff options
context:
space:
mode:
authorVanessa Rene Valderrama <vvalderrama@linuxfoundation.org>2016-10-13 13:54:18 -0500
committerVanessa Rene Valderrama <vvalderrama@linuxfoundation.org>2016-12-16 13:22:36 -0600
commita63e80093c52d4893e5709860919d0f27cd8c122 (patch)
tree101476228aea7e7acc21dbbda2c1b9203a0f022b /packer/provision/basebuild.sh
parent2a36c43a61bf8698491db42031121d0ef5d6f31f (diff)
Convert Vagrant to Packer
This converts all of the in use Vagrant definitions to Packer and allows us to build images and allow automated testing of images. Change-Id: Ic87cce4aa674146952efad325a42b095086426d0 Signed-off-by: Vanessa Rene Valderrama <vvalderrama@linuxfoundation.org>
Diffstat (limited to 'packer/provision/basebuild.sh')
-rw-r--r--packer/provision/basebuild.sh190
1 files changed, 190 insertions, 0 deletions
diff --git a/packer/provision/basebuild.sh b/packer/provision/basebuild.sh
new file mode 100644
index 000000000..f43f3857d
--- /dev/null
+++ b/packer/provision/basebuild.sh
@@ -0,0 +1,190 @@
+#!/bin/bash
+
+# vim: ts=4 sw=4 sts=4 et tw=72 :
+
+rh_systems() {
+
+ # RH Install build tools
+ echo "---> Installing RH build tools $(date +'%Y%m%dT%H%M%S')"
+ RH_TOOLS_PKGS="@development redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils openssl-devel apr-devel indent"
+ yum install -y ${RH_TOOLS_PKGS}
+
+ # Memory leakage checks
+ yum install -y valgrind
+
+ # RH Install Python dependencies
+ ###REMOVED mysql-devel
+ echo "---> Installing RH Python dependencies $(date +'%Y%m%dT%H%M%S')"
+ RH_PYTHON_PKGS="python-devel python-virtualenv python-setuptools python-pip openssl-devel"
+ yum install -y ${RH_PYTHON_PKGS}
+
+ # RH Install Documentation packages
+ ###Removed python-pyparsing
+ echo "---> Installing RH documentation packages $(date +'%Y%m%dT%H%M%S')"
+ RH_DOC_PKGS="doxygen graphviz python-jinja2 asciidoc dblatex source-highlight python-sphinx"
+ yum install -y install ${RH_DOC_PKGS}
+
+ # RH Install GCC packages
+ echo "---> Installing RH GCC packages $(date +'%Y%m%dT%H%M%S')"
+ RH_GCC_PKGS="cpp gcc c++ cmake"
+ yum install -y ${RH_GCC_PKGS}
+
+ # RH Install components to build Ganglia modules
+ echo "---> Installing RH components $(date +'%Y%m%dT%H%M%S')"
+ RH_GANGLIA_MODS="libconfuse-devel ganglia-devel mock"
+ yum install -y --enablerepo=epel ${RH_GANGLIA_MODS}
+
+ # RH Install module for VPP project
+ echo uio_pci_generic >> /etc/modules
+
+ # RH Install VPP packages to shorten build times
+ echo "---> Installing VPP dependencies $(date +'%Y%m%dT%H%M%S')"
+ RH_VPP_PKGS="curl autoconf automake bison ccache dkms git libtool libconfuse-dev git-review cscope"
+ yum install -y ${RH_VPP_PKGS}
+
+ yum groupinstall "Development Tools"
+ # RH Install TLDK dependencies
+ RH_TLKD_PKGS="libpcap-devel libcap-devel"
+ yum install -y ${RH_TLKD_PKGS}
+
+ # RH Install debuginfo packages
+ #echo "---> Installing debug packages $(date +'%Y%m%dT%H%M%S')"
+ #RH_DEBUG_PKGS="glibc openssl-libs zlib"
+ #debuginfo-install -y ${RH_DEBUG_PKGS}
+
+ # # RH Packer builds happen from the centos flavor images
+ # PACKERDIR=$(mktemp -d)
+ # # disable double quote checking
+ # # shellcheck disable=SC2086
+ # cd $PACKERDIR
+ # wget https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip
+ # unzip packer_0.10.1_linux_amd64.zip -d /usr/local/bin/
+ # # rename packer to avoid conflicts with cracklib
+ # mv /usr/local/bin/packer /usr/local/bin/packer.io
+
+ # # cleanup from the installation
+ # # disable double quote checking
+ # # shellcheck disable=SC2086
+ # rm -rf $PACKERDIR
+ # # cleanup from previous install process
+ # if [ -d /tmp/packer ]
+ # then
+ # rm -rf /tmp/packer
+ # fi
+}
+
+ubuntu_systems() {
+
+ # DEB cloud packages
+ echo "---> Installing cloud packages $(date +'%Y%m%dT%H%M%S')"
+ CLOUD_PKGS="cloud-initramfs-dyn-netconf cloud-initramfs-growroot cloud-initramfs-rescuevol"
+ apt install -y ${CLOUD_PKGS}
+
+ # DEB Install Python dependencies
+ echo "---> Installing Python dependencies $(date +'%Y%m%dT%H%M%S')"
+ PYTHON_PKGS="python-dev python-virtualenv python-setuptools python-pip libssl-dev libmysqlclient-dev python2.7"
+ apt install -y ${PYTHON_PKGS}
+
+ # Memory leakage checks
+ apt install -y valgrind
+
+ # DEB Install Documentation packages
+ echo "---> Installing documentation packages $(date +'%Y%m%dT%H%M%S')"
+ DOC_PKGS="doxygen graphviz python-pyparsing python-jinja2 asciidoc dblatex source-highlight"
+ apt install -y ${DOC_PKGS}
+
+ # DEB Install the correct version of toolchain packages
+ echo "---> Installing latest toolchain packages from PPA $(date +'%Y%m%dT%H%M%S')"
+
+ # DEB Install PPA packages
+ echo "---> Adding '$1' PPA $(date +'%Y%m%dT%H%M%S')"
+ dpkg -l software-properties-common > /dev/null 2>&1 || software-properties-common
+
+ listfile=$(perl -e "print(q{$1} =~ m{^ppa:(.+)/ppa})")-ppa-${CODENAME}.list
+ if [ ! -f /etc/apt/sources.list.d/${listfile} ]
+ then
+ do_retry sudo apt-add-repository -y $1
+ fi
+
+ #Retry to prevent timeout failure
+ echo "---> Updating package index $(date +'%Y%m%dT%H%M%S')"
+ do_retry sudo apt-get update
+ echo "<--- Updating package index $(date +'%Y%m%dT%H%M%S')"
+ echo "<--- Adding '$1' PPA $(date +'%Y%m%dT%H%M%S')"
+
+ # DEB Install GCC packages
+ echo "---> Installing GCC-5 packages $(date +'%Y%m%dT%H%M%S')"
+ GCC_PKGS="cpp gcc g++ cmake"
+ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
+ sudo apt-get update
+ apt install -y ${GCC_PKGS}
+
+ # DEB Install VPP packages to shorten build times
+ echo "---> Installing VPP DEB_DEPENDS packages $(date +'%Y%m%dT%H%M%S')"
+ VPP_PKGS="curl build-essential autoconf automake bison libssl-dev ccache debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd libconfuse-dev git-review exuberant-ctags cscope indent"
+ apt install -y ${VPP_PKGS}
+
+ # DEB Install latest kernel and uio
+ echo "---> Installing kernel image and header packages $(date +'%Y%m%dT%H%M%S')"
+ DEB_PKGS="linux-image-extra-virtual linux-headers-virtual linux-headers-`uname -r`"
+ apt install -y ${DEB_PKGS}
+
+ #Configuring thirdparty Nexus repo
+ echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/thirdparty ./" > /etc/apt/sources.list.d/FD.io.thirdparty.list
+ apt-get update
+
+ # DEB Install deb_dpdk packages to shorten build times
+ ###REMOVED sphinx-rtd-theme
+ echo "---> Installing deb_dpdk packages $(date +'%Y%m%dT%H%M%S')"
+ DEB_DPDK_PKGS="google-mock lsb-release dpkg-dev debian-xcontrol devscripts pristine-tar dh-python python-sphinx libpcap0.8-dev libstdc++5 python-scapy inkscape libxen-dev libxenstore3.0 python-sphinx-rtd-theme"
+ apt install -y ${DEB_DPDK_PKGS}
+
+ sudo apt install -y libcap-dev libpcap-dev
+
+ TEXLIVE_PKGS="texlive-fonts-recommended tex-common texlive-base texlive-binaries texlive-pictures texlive-latex-recommended preview-latex-style texlive-latex-extra"
+ apt install -y ${TEXLIVE_PKGS}
+ echo "<--- Installing deb_dpdk packages $(date +'%Y%m%dT%H%M%S')"
+
+ # DEB Manipulation tools, edits debugger, and LSB
+ echo "---> Installing tools packages $(date +'%Y%m%dT%H%M%S')"
+ TOOL_PKGS="iproute2 ethtool vlan bridge-utils vim gdb lsb-release"
+ apt install -y ${TOOL_PKGS}
+
+ # DEB Clean up packages for a smaller image
+ apt-get update
+
+ # DEB Updating CA certificates
+ echo "---> Forcing CA certificate update $(date +'%Y%m%dT%H%M%S')"
+ sudo update-ca-certificates -f > /dev/null 2>&1
+ echo "<--- Forcing CA certificate update $(date +'%Y%m%dT%H%M%S')"
+}
+
+all_systems() {
+
+ echo 'Configure keep alive to prevent timeout during testing'
+ local SSH_CFG=/etc/ssh/ssh_config
+ echo "TCPKeepAlive true" | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
+ echo "ServerAliveCountMax 30" | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
+ echo "ServerAliveInterval 10" | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
+
+}
+
+echo "---> Detecting OS"
+ORIGIN=$(facter operatingsystem | tr '[:upper:]' '[:lower:]')
+
+case "${ORIGIN}" in
+ fedora|centos|redhat)
+ echo "---> RH type system detected"
+ rh_systems
+ ;;
+ ubuntu)
+ echo "---> Ubuntu system detected"
+ ubuntu_systems
+ ;;
+ *)
+ echo "---> Unknown operating system"
+ ;;
+esac
+
+# execute steps for all systems
+all_systems