diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-02 19:38:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-02 19:38:33 +0000 |
commit | 7786deb79662368c80386e6eaee4e9bfe12fcd2f (patch) | |
tree | e2785477ec7dead95a0ddc33488aa6b5beb5ef7f /nsb_setup.sh | |
parent | e78324bf2672a694f460e953373f18729c476e8d (diff) | |
parent | fd2fafde700c0b1e41292225dc7004988ad96d38 (diff) |
Merge "Fix adding right deb repo based on the distro we are running on"
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 |