From af7aa485a0eb746a7d7c6a5b5dcf00ed9f4eba57 Mon Sep 17 00:00:00 2001 From: Feng Pan Date: Wed, 26 Apr 2017 08:01:15 -0400 Subject: Update VPP/ODL versions for FDIO scenarios Pin the same set of FDIO and OpenDaylight versions for all fdio scenarios. Note that fdio_netvirt-fdio still uses a customized ODL version. os-net-config-pr: 7 JIRA: APEX-451 Change-Id: Ic5ac5aeead9967fe383447e23653276cde2dfe60 Signed-off-by: Feng Pan --- build/honeycomb-jar-replace.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 build/honeycomb-jar-replace.sh (limited to 'build/honeycomb-jar-replace.sh') diff --git a/build/honeycomb-jar-replace.sh b/build/honeycomb-jar-replace.sh deleted file mode 100755 index f89ddda7..00000000 --- a/build/honeycomb-jar-replace.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash -JARS=$(find /usr/share/java/ -type f -iname 'jvpp-*.jar') -if [ -z "$JARS" ]; then - echo "ERROR: JARS to replace from vpp-api-java are empty!" - exit 1 -fi - -for JAR in $JARS; do - JAR_PREFIX=$(basename $JAR | sed -n 's/-[0-9]\+\.[0-9]\+\.jar$//p') - JAR_VERSION=$(basename $JAR | grep -Eo '[0-9]+.[0-9]+') - HC_JAR_DIR=/opt/honeycomb/lib/io/fd/vpp/${JAR_PREFIX}/${JAR_VERSION}-SNAPSHOT - if [ ! -d "$HC_JAR_DIR" ]; then - echo "ERROR: Honeycomb JAR destination directory does not exist!" - exit 1 - else - cp -f ${JAR} ${HC_JAR_DIR}/${JAR_PREFIX}-${JAR_VERSION}-SNAPSHOT.jar - echo "INFO: VPP API JAR: ${JAR} copied to ${HC_JAR_DIR}" - fi -done -- cgit 1.2.3-korg