From af0d4015a02a26084b3c190574b90ac0ccfd2c31 Mon Sep 17 00:00:00 2001 From: Tomas Cechvala Date: Thu, 6 Oct 2016 14:54:18 +0200 Subject: [PATCH] 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 --- demos/gbpsfc-env/Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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}" -- 2.36.6