VPP: list out preinstalled packages 32/13132/3
authorEd Kern <ejk@cisco.com>
Tue, 19 Jun 2018 20:31:50 +0000 (14:31 -0600)
committerEd Kern <ejk@cisco.com>
Tue, 19 Jun 2018 21:01:38 +0000 (15:01 -0600)
Few echos and ls to list out preinstalled or cached
deps on ubuntu images.

Change-Id: I4ea5dfdafec66c29b94ce116f25d0a23c0a6a870
Signed-off-by: Ed Kern <ejk@cisco.com>
jjb/scripts/setup_vpp_ubuntu_docker_test.sh

index 9280b7f..2e1b134 100644 (file)
@@ -21,7 +21,19 @@ grep search /etc/resolv.conf  || true
 
 if [ "${OS_ID}" == "ubuntu" ]; then
     dpkg-query -W -f='${binary:Package}\t${Version}\n' || true
+    echo "************************************************************************"
+    echo "pip list:"
     pip list || true
+    echo "************************************************************************"
+    echo "Contents of /var/cache/vpp/python/virtualenv/lib/python2.7/site-packages:"
+    ls -lth /var/cache/vpp/python/virtualenv/lib/python2.7/site-packages || true
+    echo "************************************************************************"
+    echo "Contents of br Downloads:"
+    ls -lth /w/Downloads || true
+    echo "************************************************************************"
+    echo "Contents of /w/dpdk for test folks:"
+    echo "************************************************************************"
+    ls -lth /w/dpdk || true
 elif [ "${OS_ID}" == "centos" ]; then
     yum list installed || true
     pip list || true