X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=jenkins-scripts%2Fmininet.sh;h=999967828cadb1616e9c2bb9554899bb5714ce04;hb=79f6617513e70a1770ada411faad780ec8e83eef;hp=552c40315409ca32c516746ff7256b6254280f5d;hpb=61279b9e20c143633ebb2d40f40f01f8cbac2a2e;p=releng%2Fbuilder.git diff --git a/jenkins-scripts/mininet.sh b/jenkins-scripts/mininet.sh index 552c40315..999967828 100755 --- a/jenkins-scripts/mininet.sh +++ b/jenkins-scripts/mininet.sh @@ -9,12 +9,21 @@ EOF # for whatever reason netopeer & CPqD aren't installed (they weren't in # one of the yum repos we were hooked up to when the base image was # built, they are now. Make sure they're install -yum install -q -y netopeer-server-sl CPqD-ofsoftswitch13 +yum install -q -y netopeer-server-sl CPqD-ofsoftswitch13 + +# installing sshuttle to create a VPN-ish proxy to VMs that have +# docker containers on them in order to make them externally accessible +yum install -q -y sshuttle # netaddr and ipaddress libraries can be useful on this system as # some tests are starting to push pyhon scripts/tools to this VM # during CI tests -yum install -q -y python-{ipaddress,netaddr} +yum install -q -y python-{ipaddr,iptools,netaddr} + +#For executing the CSIT test cases for VTN Coordinator +yum install -q -y uuid libxslt libcurl unixODBC json-c +chown jenkins /usr/local/vtn + # the vagrant configuration for netopeer doesn't configure SSH correctly # as it uses and here document via echo and not cat fix that @@ -51,6 +60,9 @@ echo 'jenkins' | passwd -f --stdin jenkins echo 'root' | passwd -f --stdin root # make sure the firewall is stopped -service iptables stop +/bin/bash disable_firewall.sh + +# install crudini command line tool for editing config files +yum install -y crudini # vim: sw=2 ts=2 sts=2 et :