Merge "Fix mdsal distribution-check neon clone branch"
[releng/builder.git] / jenkins-scripts / mininet-ubuntu.sh
index 55cb2cd091d39269554f2cad9a3c411f3f7bf89e..7f0cd569ef76c7f4bed431f669c4d8b37ca3a4f6 100755 (executable)
@@ -9,11 +9,8 @@ EOF
 # disable the firewall
 /bin/bash ./disable_firewall.sh
 
-# Make sure apt-get database is up-to-date
-apt-get update -y --force-yes -qq
-
-# Install vlan for vlan based tests in VTN suites
-apt-get install -y --force-yes -qq vlan
-
-# Install netaddr package which is needed by some custom mininet topologies
-apt-get install -y --force-yes -qq python-netaddr
+# Add 'hostname' into /etc/hosts during node spinup time to avoid sudo returning
+# an 'unable to resolve host' message or some Java API's returning an unknown
+# host exception. The workaround on adding "myhostname" into /etc/nss-switch.conf
+# does not work on Ubuntu flavours.
+sed -i "/127.0.0.1/s/$/\t$(hostname)/" /etc/hosts