Merge "Add "ODL_SYSTEM_1_IP" to start cluster script"
authorVratko Polák <vrpolak@cisco.com>
Thu, 22 Oct 2015 16:56:09 +0000 (16:56 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 22 Oct 2015 16:56:09 +0000 (16:56 +0000)
vagrant/lib/lf-networking/Vagrantfile

index 41970217ba8f97cb9b1c200ea634d8548e4f0bc1..a162628e55f9c5a5c2dba2e9685b6808a3ee5c79 100644 (file)
@@ -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