aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2019-01-22 15:31:56 +0000
committerJan Gelety <jgelety@cisco.com>2019-01-24 16:50:56 +0100
commit35ae14a1a109d357bb548e0fb8aaf941ed4a85f2 (patch)
tree160143747e202d84fe592cd2b33dac5188293a3c /resources/libraries/bash
parent552491e8bcff9745b04fbdd92609351ec9597cdc (diff)
CSIT-1407 FIX vpp install after VPP changes
Change-Id: I9148f6de75c3100f827eedec48c4c0ccb343bc54 Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/bash')
-rwxr-xr-xresources/libraries/bash/dut_setup.sh4
-rw-r--r--resources/libraries/bash/function/artifacts.sh3
2 files changed, 4 insertions, 3 deletions
diff --git a/resources/libraries/bash/dut_setup.sh b/resources/libraries/bash/dut_setup.sh
index aee6386bd7..d0b2fabd8e 100755
--- a/resources/libraries/bash/dut_setup.sh
+++ b/resources/libraries/bash/dut_setup.sh
@@ -24,9 +24,9 @@ echo
echo "[Command_desc] Starting ${0}"
if [ -f "/etc/redhat-release" ]; then
- cmd 'rpm -qai vpp*'
+ cmd 'rpm -qai *vpp*'
else
- cmd 'dpkg -l vpp\*'
+ cmd 'dpkg -l | grep vpp'
fi
cmd 'ps aux | grep vpp'
diff --git a/resources/libraries/bash/function/artifacts.sh b/resources/libraries/bash/function/artifacts.sh
index 6695b4d977..b6b5bc5536 100644
--- a/resources/libraries/bash/function/artifacts.sh
+++ b/resources/libraries/bash/function/artifacts.sh
@@ -64,7 +64,8 @@ function download_ubuntu_artifacts () {
}
# If version is set we will add suffix.
artifacts=()
- vpp=(vpp vpp-dbg vpp-dev vpp-lib vpp-plugins vpp-api-python)
+ vpp=(vpp vpp-dbg vpp-dev vpp-api-python libvppinfra libvppinfra-dev
+ vpp-plugin-core vpp-plugin-dpdk)
if [ -z "${VPP_VERSION-}" ]; then
artifacts+=(${vpp[@]})
else