6e750e097c8c74dbac0f8b6c2205b9cfea8d00ea
[yardstick.git] / tools / ubuntu-server-cloudimg-modify.sh
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 #!/bin/bash
11
12 # installs required packages
13 # must be run from inside the image (either chrooted or running)
14
15 set -ex
16
17 if [ $# -eq 1 ]; then
18     nameserver_ip=$1
19
20     # /etc/resolv.conf is a symbolic link to /run, restore at end
21     rm /etc/resolv.conf
22     echo "nameserver $nameserver_ip" > /etc/resolv.conf
23 fi
24
25 # iperf3 only available for trusty in backports
26 grep trusty /etc/apt/sources.list && \
27     echo "deb http://archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list
28
29 # Workaround for building on CentOS (apt-get is not working with http sources)
30 # sed -i 's/http/ftp/' /etc/apt/sources.list
31
32 # Force apt to use ipv4 due to build problems on LF POD.
33 echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4
34
35 apt-get update
36 apt-get install -y \
37     fio \
38     iperf3 \
39     linux-tools-common \
40     linux-tools-generic \
41     lmbench \
42     stress
43
44 # restore symlink
45 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf
46