add scenario and sample file for Unixbench.
[yardstick.git] / tools / ubuntu-server-cloudimg-modify.sh
index 6e750e0..11e6051 100755 (executable)
@@ -20,6 +20,8 @@ if [ $# -eq 1 ]; then
     # /etc/resolv.conf is a symbolic link to /run, restore at end
     rm /etc/resolv.conf
     echo "nameserver $nameserver_ip" > /etc/resolv.conf
+    echo "nameserver 8.8.8.8" >> /etc/resolv.conf
+    echo "nameserver 8.8.4.4" >> /etc/resolv.conf
 fi
 
 # iperf3 only available for trusty in backports
@@ -32,15 +34,29 @@ grep trusty /etc/apt/sources.list && \
 # Force apt to use ipv4 due to build problems on LF POD.
 echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4
 
+# Add hostname to /etc/hosts.
+cat <<EOF >/etc/cloud/cloud.cfg.d/10_etc_hosts.cfg
+manage_etc_hosts: True
+EOF
+
 apt-get update
 apt-get install -y \
     fio \
+    git \
+    gcc \
     iperf3 \
     linux-tools-common \
     linux-tools-generic \
     lmbench \
-    stress
-
+    make \
+    netperf \
+    patch \
+    perl \
+    rt-tests \
+    stress \
+    sysstat
+
+git clone https://github.com/kdlucas/byte-unixbench.git /opt/tempT
+make --directory /opt/tempT/UnixBench/
 # restore symlink
 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf
-