X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tools%2Fubuntu-server-cloudimg-modify.sh;h=11e6051cda44319926252e402e253809c1e3b10d;hb=d09c1cf0ed3a1af45546129ecd8d648ce703f650;hp=9e1b40cacff4c79162598586a35277ab473b5dfd;hpb=c9f8bbe529efe6843437d1810e51e8767f18535c;p=yardstick.git diff --git a/tools/ubuntu-server-cloudimg-modify.sh b/tools/ubuntu-server-cloudimg-modify.sh index 9e1b40cac..11e6051cd 100755 --- a/tools/ubuntu-server-cloudimg-modify.sh +++ b/tools/ubuntu-server-cloudimg-modify.sh @@ -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 @@ -40,14 +42,21 @@ EOF apt-get update apt-get install -y \ fio \ + git \ + gcc \ iperf3 \ linux-tools-common \ linux-tools-generic \ lmbench \ + 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