diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-05-25 10:58:29 +0000 |
---|---|---|
committer | Deepak S <deepak.s@linux.intel.com> | 2017-07-17 01:06:35 -0700 |
commit | fd2fafde700c0b1e41292225dc7004988ad96d38 (patch) | |
tree | 00f44367b379d7fd1092125b2b7c3fc920883429 /nsb_setup.sh | |
parent | 422557ba5c56a48e14c5eea80c06efaf4e635395 (diff) |
Fix adding right deb repo based on the distro we are running on
JIRA: YARDSTICK-669
Change-Id: I0f3848b7803bc62c88effd00e850755e514893c4
Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Diffstat (limited to 'nsb_setup.sh')
-rwxr-xr-x | nsb_setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nsb_setup.sh b/nsb_setup.sh index 05d1fd6db..88027d9bd 100755 --- a/nsb_setup.sh +++ b/nsb_setup.sh @@ -40,7 +40,7 @@ install_libs() { echo "Install libs needed to build and run NSB Testing..." apt-get update > /dev/null 2>&1 - pkg=(git build-essential python-dev virtualenv python-virtualenv virtualenv linux-headers-$(uname -r) unzip python-pip libpcap-dev) + pkg=(git build-essential python-dev virtualenv python-virtualenv virtualenv linux-headers-$(uname -r) unzip python-pip libpcap-dev cmake) for i in "${pkg[@]}"; do dpkg-query -W --showformat='${Status}\n' "${i}"|grep "install ok installed" if [ "$?" -eq "1" ]; then |