From 9b5b0d36e6b8bc8a66be10147bbc39f96ab3709d Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 5 Nov 2018 09:55:16 -0600 Subject: [PATCH] Vagrantfile: Add /vagrant mount point --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 1e37a219..2dbe0b51 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,7 +12,8 @@ Vagrant.configure(2) do |config| v.memory = `grep 'MemTotal' /proc/meminfo | sed -e 's/MemTotal://' -e 's/ kB//'`.to_i / 1024 / 2 end - config.vm.synced_folder ".", "/home/vagrant/proton", type: "rsync", rsync__exclude: ["/output/"], rsync__args: ["--verbose", "--archive", "-z", "--links", "--update"] + config.vm.synced_folder "./vagrant_share/", "/vagrant/", id: "share", create: true + config.vm.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: ["/output/", "vagrant_share"], rsync__args: ["--verbose", "--archive", "-z", "--links", "--update"] config.vm.provision "shell", privileged: "true", inline: <<-SHELL dpkg --add-architecture i386