From: Vratko Polák Date: Thu, 22 Oct 2015 16:56:09 +0000 (+0000) Subject: Merge "Add "ODL_SYSTEM_1_IP" to start cluster script" X-Git-Tag: release/beryllium~440 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=cb56695343248af29c897fb31319914ac4fb91cb;hp=5bb13ab686ac22e1d102f7de8a105ff02e76904d;p=releng%2Fbuilder.git Merge "Add "ODL_SYSTEM_1_IP" to start cluster script" --- diff --git a/vagrant/lib/lf-networking/Vagrantfile b/vagrant/lib/lf-networking/Vagrantfile index 41970217b..a162628e5 100644 --- a/vagrant/lib/lf-networking/Vagrantfile +++ b/vagrant/lib/lf-networking/Vagrantfile @@ -26,9 +26,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end + # explicitly configure shared folder syncs + config.vm.synced_folder '.', '/vagrant', :disabled => true + config.vm.synced_folder '..', '/vagrant/lib' + # reconfigure the network setup to support our special private setup config.vm.provision 'shell', path: 'configure_lf_infra.sh', args: ENV['RSSUBDOMAIN'] # reseal the system for imaging - config.vm.provision 'shell', path: 'system_reseal.sh' + config.vm.provision 'shell', path: '../system_reseal.sh' end