mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
Vagrantfile: Add /vagrant mount point
This commit is contained in:
parent
49ed1889a6
commit
9b5b0d36e6
1 changed files with 2 additions and 1 deletions
3
Vagrantfile
vendored
3
Vagrantfile
vendored
|
|
@ -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
|
v.memory = `grep 'MemTotal' /proc/meminfo | sed -e 's/MemTotal://' -e 's/ kB//'`.to_i / 1024 / 2
|
||||||
end
|
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
|
config.vm.provision "shell", privileged: "true", inline: <<-SHELL
|
||||||
dpkg --add-architecture i386
|
dpkg --add-architecture i386
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue