From: Srivatsa Sangli Date: Tue, 21 Jun 2016 19:58:19 +0000 (-0700) Subject: Vagrantfile syntax error correction - requires string input instead of integer. X-Git-Tag: v16.09-rc1~258 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F89%2F1689%2F1;p=vpp.git Vagrantfile syntax error correction - requires string input instead of integer. Change-Id: Ib291662c4ea2f5bef0f2c417b16d256f5c480d5c Signed-off-by: Srivatsa Sangli --- diff --git a/build-root/vagrant/Vagrantfile b/build-root/vagrant/Vagrantfile index 9bb53b91e5d..49141e80e26 100644 --- a/build-root/vagrant/Vagrantfile +++ b/build-root/vagrant/Vagrantfile @@ -44,7 +44,7 @@ Vagrant.configure(2) do |config| end # Define some physical ports for your VMs to be used by DPDK - nics = (ENV['VPP_VAGRANT_NICS'] || 2).to_i(10) + nics = (ENV['VPP_VAGRANT_NICS'] || "2").to_i(10) for i in 1..nics config.vm.network "private_network", type: "dhcp" end