From 62f5f53bd82933eb03a037dbcb7820be269dc4e2 Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Mon, 27 Feb 2017 15:05:42 +0100 Subject: Use common files to store distro related data for VIRL - use separate files to store VIRL topology file and VIRL image file version information per distro - read content of appropriate files in all affected bootstrap files Change-Id: I5297ddd610af6a719efaf5792ced12efab35fc7a Signed-off-by: Jan Gelety --- bootstrap-vpp-verify-semiweekly.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bootstrap-vpp-verify-semiweekly.sh') diff --git a/bootstrap-vpp-verify-semiweekly.sh b/bootstrap-vpp-verify-semiweekly.sh index b0402e0e3e..c3fc4e0ac6 100644 --- a/bootstrap-vpp-verify-semiweekly.sh +++ b/bootstrap-vpp-verify-semiweekly.sh @@ -107,12 +107,12 @@ VIRL_SERVER_EXPECTED_STATUS="PRODUCTION" case "$DISTRO" in CENTOS ) - VIRL_TOPOLOGY=double-ring-nested.centos7 - VIRL_RELEASE=csit-centos-7.3-1611_2017-02-14_1.3 + VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS) + VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS) ;; UBUNTU ) - VIRL_TOPOLOGY=double-ring-nested.xenial - VIRL_RELEASE=csit-ubuntu-16.04.1_2017-02-20_1.7 + VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_UBUNTU) + VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_UBUNTU) esac SSH_OPTIONS="-i ${VIRL_PKEY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o BatchMode=yes -o LogLevel=error" -- cgit 1.2.3-korg