X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=packer%2Fprovision%2Fmininet-ovs-2.5.sh;h=5e7274335d156302acdb4c634ff6ff1575648a24;hb=a70a6aa4295a49f2fa018deed83db572e70d393e;hp=5f392cf8a15c69c97839144fa0edd6bb26d0e19b;hpb=1a1df131bf11271607bd64ae300112f32dd7a9d0;p=releng%2Fbuilder.git diff --git a/packer/provision/mininet-ovs-2.5.sh b/packer/provision/mininet-ovs-2.5.sh index 5f392cf8a..5e7274335 100644 --- a/packer/provision/mininet-ovs-2.5.sh +++ b/packer/provision/mininet-ovs-2.5.sh @@ -39,11 +39,21 @@ cp cbench /usr/local/bin/ echo '---> Installing exabgp' apt-get install exabgp -echo '---> All Python package installation should happen in virtualenv' -apt-get install python-virtualenv python-pip - # Install vlan for vlan based tests in VTN suites apt-get install vlan # Install netaddr package which is needed by some custom mininet topologies apt-get install python-netaddr + +# Check out quagga , compile and install for router functionalities +echo "Installing the Quagga..." +mkdir -p /tmp/build_quagga +cd /tmp/build_quagga +git clone https://github.com/6WIND/zrpcd.git +cd zrpcd +git checkout 20170731 +chmod a+x /tmp/build_quagga/zrpcd/pkgsrc/dev_compile_script.sh +/tmp/build_quagga/zrpcd/pkgsrc/dev_compile_script.sh -d -b -t + +# Removing the build_quagga folder +rm -rf /tmp/build_quagga/