Fix local neutron folder path in ovn/sparse/Vagrantfile

Change-Id: I688d1e83ba07b444290f35c78e4a06e1edaac428
This commit is contained in:
Federico Ressi 2020-11-03 17:02:34 +01:00
parent dc10558c0b
commit 70ef01c12f
2 changed files with 2 additions and 1 deletions

1
vagrant/ovn/sparse/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vagrant/

View File

@ -17,7 +17,7 @@ Vagrant.configure(2) do |config|
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.synced_folder File.expand_path(".."), "/vagrant"
config.vm.synced_folder File.expand_path("../.."), "/home/vagrant/neutron"
config.vm.synced_folder File.expand_path("../../.."), "/home/vagrant/neutron"
# Use the ipaddr library to calculate the netmask of a given network
net = IPAddr.new vagrant_config['provider_network']