Change working dir in Vagrantfile 03/66403/1
authorVictor Morales <victor.morales@intel.com>
Thu, 13 Sep 2018 08:44:51 +0000 (01:44 -0700)
committerVictor Morales <victor.morales@intel.com>
Thu, 13 Sep 2018 08:44:51 +0000 (01:44 -0700)
Given that the source code is shared to a different location is
necessary to reflect this change in the Vagrantfile

Change-Id: Iad47b49c5720d0d1a76fa9fa60c4d1ba60d0ab51
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: MULTICLOUD-301

vagrant/Vagrantfile

index 61031bb..7ff18f0 100644 (file)
@@ -109,7 +109,7 @@ Vagrant.configure("2") do |config|
     installer.vm.synced_folder '../', '/root/go/src/k8-plugin-multicloud/', type: sync_type
     installer.vm.provision 'shell' do |sh|
       sh.path =  "installer.sh"
-      sh.args = ['-p', '-v', '-w', '/vagrant']
+      sh.args = ['-p', '-v', '-w', '/root/go/src/k8-plugin-multicloud/vagrant']
     end
   end
 end