X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=install.sh;h=1dbf64ddfe60fcbbb487552262bb6ec3cdb64aca;hb=e345f4757abda2e7e734d86d89024d7af6e17de9;hp=4ca72a757a2aa942c4db0c2d93bff160ba0c3697;hpb=4d36bbf0990fc6ddb59092dd8bd7f985392907cb;p=yardstick.git diff --git a/install.sh b/install.sh index 4ca72a757..1dbf64ddf 100755 --- a/install.sh +++ b/install.sh @@ -16,6 +16,7 @@ UBUNTU_ARCHIVE_URL="http://archive.ubuntu.com/ubuntu/" source /etc/os-release source_file=/etc/apt/sources.list +NSB_DIR="/opt/nsb_bin" if [[ "${DOCKER_ARCH}" == "aarch64" ]]; then sed -i -e 's/^deb \([^/[]\)/deb [arch=arm64] \1/g' "${source_file}" @@ -59,6 +60,7 @@ echo "vm.mmap_min_addr = 0" > /etc/sysctl.d/mmap_min_addr.conf # install tools apt-get update && apt-get install -y \ qemu-user-static/xenial \ + bonnie++ \ wget \ expect \ curl \ @@ -78,7 +80,11 @@ apt-get update && apt-get install -y \ uwsgi-plugin-python \ supervisor \ python-pip \ - vim + vim \ + libxft-dev \ + libxss-dev \ + sudo \ + iputils-ping if [[ "${DOCKER_ARCH}" != "aarch64" ]]; then apt-get install -y libc6:arm64 @@ -90,7 +96,7 @@ git config --global http.sslVerify false # install yardstick + dependencies -easy_install -U pip +easy_install -U pip==9.0.1 pip install -r requirements.txt pip install -e . @@ -100,5 +106,11 @@ cd "${PWD}/gui" && /bin/bash gui.sh mkdir -p /etc/nginx/yardstick mv dist /etc/nginx/yardstick/gui +mkdir -p ${NSB_DIR} + +wget -P ${NSB_DIR}/ http://artifacts.opnfv.org/yardstick/third-party/trex_client.tar.gz +tar xvf ${NSB_DIR}/trex_client.tar.gz -C ${NSB_DIR} +rm -f ${NSB_DIR}/trex_client.tar.gz + service nginx restart uwsgi -i /etc/yardstick/yardstick.ini