diff options
author | Jan Gelety <jgelety@cisco.com> | 2017-02-27 15:05:42 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2017-03-01 12:42:58 +0000 |
commit | 62f5f53bd82933eb03a037dbcb7820be269dc4e2 (patch) | |
tree | 8c8ff590022f35d94339fb2c094b1f13f3cf4bd6 /bootstrap-vpp-verify-semiweekly.sh | |
parent | 933f6fd1af59ffede0f1e51ca67b6913fb9a27e8 (diff) |
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 <jgelety@cisco.com>
Diffstat (limited to 'bootstrap-vpp-verify-semiweekly.sh')
-rw-r--r-- | bootstrap-vpp-verify-semiweekly.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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" |