diff options
author | Jan Gelety <jgelety@cisco.com> | 2017-04-03 09:26:22 +0200 |
---|---|---|
committer | Matej Klotton <mklotton@cisco.com> | 2017-04-04 07:30:57 +0000 |
commit | 5a04f6ddb56fefcc96452b4fe938616da309388f (patch) | |
tree | 8a8036e03a0149e82051608769423e44a5ad5219 /bootstrap-centos.sh | |
parent | ec059708c78fe3563bc89507739a2712adc062f3 (diff) |
Update of VPP_STABLE_VER_CENTOS
- use new vpp ref build: 17.07-rc0~43_g8db1de8~b2144.x86_64
- build tested by semiweekly job:
https://jenkins.fd.io/view/csit/job/csit-vpp-verify-master-centos7-semiweekly/24/
Change-Id: I6d84f139f3d513010481a7cf7d287836f779dfd4
Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'bootstrap-centos.sh')
-rwxr-xr-x | bootstrap-centos.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bootstrap-centos.sh b/bootstrap-centos.sh index 85e3dd42a6..6bec72060c 100755 --- a/bootstrap-centos.sh +++ b/bootstrap-centos.sh @@ -124,21 +124,17 @@ done echo "Selected VIRL servers: ${VIRL_SERVER[@]}" # Temporarily download VPP packages from nexus.fd.io -DPDK_STABLE_VER=$(cat ${SCRIPT_DIR}/DPDK_STABLE_VER).x86_64 VPP_REPO_URL=$(cat ${SCRIPT_DIR}/VPP_REPO_URL_CENTOS) VPP_CLASSIFIER="" if [ "${#}" -ne "0" ]; then arr=(${@}) echo ${arr[0]} - # DPDK is not part of the vpp build - wget -q "${VPP_REPO_URL}/vpp-dpdk-devel/${DPDK_STABLE_VER}/vpp-dpdk-devel-${DPDK_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit else rm -f *.rpm VPP_STABLE_VER=$(cat ${SCRIPT_DIR}/VPP_STABLE_VER_CENTOS) wget -q "${VPP_REPO_URL}/vpp/${VPP_STABLE_VER}/vpp-${VPP_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit wget -q "${VPP_REPO_URL}/vpp-debuginfo/${VPP_STABLE_VER}/vpp-debuginfo-${VPP_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit wget -q "${VPP_REPO_URL}/vpp-devel/${VPP_STABLE_VER}/vpp-devel-${VPP_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit - wget -q "${VPP_REPO_URL}/vpp-dpdk-devel/${DPDK_STABLE_VER}/vpp-dpdk-devel-${DPDK_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit wget -q "${VPP_REPO_URL}/vpp-lib/${VPP_STABLE_VER}/vpp-lib-${VPP_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit wget -q "${VPP_REPO_URL}/vpp-plugins/${VPP_STABLE_VER}/vpp-plugins-${VPP_STABLE_VER}${VPP_CLASSIFIER}.rpm" || exit fi |