Incorporating vagrant box for gbpsfc demo
[groupbasedpolicy.git] / demos / gbpsfc-env / Vagrantfile
index fd94b9f8989759ab43ce8184aa7ae206e1493f85..66a96354e969b9d09ef8ba98469af9e5472c5368 100644 (file)
@@ -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}"