aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/Yardstick-TC014-1456496016450
diff options
context:
space:
mode:
authoruser <user@TRAFCLASS-PACKET1.fuel.local>2016-03-18 14:15:09 -0400
committerJörgen Karlsson <jorgen.w.karlsson@ericsson.com>2016-03-23 13:34:59 +0000
commitcd5baa32609687c3ae8acd4b19dbb10cd0bd47ff (patch)
tree262072f2e7078f86efd3fe0e800bcce0bb7ea9cd /dashboard/Yardstick-TC014-1456496016450
parent3780f6898ddb91928d4a7c15b8bd032da17822f3 (diff)
Fix configuration files according to the last working configuration in Montreal testbed
Change-Id: Icd4d56de8bd60b2b4333459ce8669363ba54a33b Signed-off-by: user <user@TRAFCLASS-PACKET1.fuel.local>
Diffstat (limited to 'dashboard/Yardstick-TC014-1456496016450')
0 files changed, 0 insertions, 0 deletions
egex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# install tools
apt-get update && apt-get install -y \
    wget \
    expect \
    curl \
    git \
    sshpass \
    qemu-utils \
    kpartx \
    libffi-dev \
    libssl-dev \
    python \
    python-dev \
    libxml2-dev \
    libxslt1-dev \
    nginx \
    uwsgi \
    uwsgi-plugin-python \
    supervisor \
    python-setuptools && \
    easy_install -U setuptools

apt-get -y autoremove && apt-get clean


# fit for arm64
source_file=/etc/apt/sources.list
sed -i -e 's/^deb \([^/[]\)/deb [arch=amd64] \1/g' "${source_file}"
sed -i -e 's/^deb-src /# deb-src /g' "${source_file}"

sub_source_file=/etc/apt/sources.list.d/yardstick.list
touch "${sub_source_file}"
echo -e "deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty main universe multiverse restricted
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-updates main universe multiverse restricted
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-security main universe multiverse restricted
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-proposed main universe multiverse restricted" > "${sub_source_file}"
echo "vm.mmap_min_addr = 0" > /etc/sysctl.d/mmap_min_addr.conf
dpkg --add-architecture arm64
apt-get install -y qemu-user-static libc6:arm64

# install yardstick + dependencies
easy_install -U pip
pip install -r requirements.txt
pip install .