Update /etc/hosts in yardstick cloud image
[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 # Add hostname to /etc/hosts.
36 cat <<EOF >/etc/cloud/cloud.cfg.d/10_etc_hosts.cfg
37 manage_etc_hosts: True
38 EOF
39
40 apt-get update
41 apt-get install -y \
42     fio \
43     iperf3 \
44     linux-tools-common \
45     linux-tools-generic \
46     lmbench \
47     netperf \
48     rt-tests \
49     stress
50
51 # restore symlink
52 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf
53