diff options
author | Peter Mikus <pmikus@cisco.com> | 2018-07-30 17:28:16 +0000 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2018-08-10 09:16:13 +0000 |
commit | 325bf96ce5fc13780fab0731855a2e2092208a2b (patch) | |
tree | 16c8c679c890dc7e0f18ec63a7a3f6c39cbec4cd /resources/libraries/python/SetupFramework.py | |
parent | 8f5f344d59674ea4c158e8ff1528716276f5b071 (diff) |
CSIT-1193 De-duplicate bootstrap scripts into one
- DPDK and VPP bootstrap merged into one (ligato will follow).
- Added more error detections
- Added topo-cleanup.py to cleanup TB before and after test.
- Remove installation of VPP
Change-Id: I7a86117eb03cbe4ee8fde47baeed58bc86c0dfb2
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/python/SetupFramework.py')
-rw-r--r-- | resources/libraries/python/SetupFramework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index 558d5d4097..46b8597e87 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -56,7 +56,7 @@ def pack_framework_dir(): proc = Popen( split("tar --sparse --exclude-vcs --exclude=output*.xml " - "--exclude=./tmp --exclude=*.deb --exclude=*.rpm -zcf {0} ." + "--exclude=./tmp -zcf {0} ." .format(file_name)), stdout=PIPE, stderr=PIPE) (stdout, stderr) = proc.communicate() |