From: Tomas Cechvala Date: Thu, 6 Oct 2016 12:54:18 +0000 (+0200) Subject: bug 6898 - fixed too slow build in GBPSFC demo X-Git-Tag: release/boron-sr2~1^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F54%2F46654%2F3;p=groupbasedpolicy.git bug 6898 - fixed too slow build in GBPSFC demo Speeding up building process by using a customized box with preinstalled software. Change-Id: Id581a87ece170e158a7536954ff071eae43bdd29 Signed-off-by: Tomas Cechvala --- diff --git a/demos/gbpsfc-env/Vagrantfile b/demos/gbpsfc-env/Vagrantfile index fd94b9f89..66a96354e 100644 --- a/demos/gbpsfc-env/Vagrantfile +++ b/demos/gbpsfc-env/Vagrantfile @@ -6,8 +6,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provider "virtualbox" do |vb| vb.memory = "512" end - # run our bootstrapping for the system - config.vm.provision 'shell', path: 'bootstrap.sh', :args => odl + # ubuntu/trusty64 + bootstrap.sh = tomas-c/gbpsfc-trusty64 + # config.vm.provision 'shell', path: 'bootstrap.sh', :args => odl num_nodes = (ENV['NUM_NODES'] || 1).to_i # ip configuration @@ -22,8 +22,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| vm_ip = ips[n] vm_ip_sflow = ips_sflow[n] vm_index = n+1 - compute.vm.box = "ubuntu/trusty64" - compute.vm.box_version = "20160729.0.0" + compute.vm.box = "tomas-c/gbpsfc-trusty64" + compute.vm.box_version = "1.0.0" compute.vm.hostname = "gbpsfc#{vm_index}" compute.vm.network "private_network", ip: "#{vm_ip}" compute.vm.network "private_network", ip: "#{vm_ip_sflow}"