mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 08:14:34 +01:00
Vagrantfile: Use default rsync args
We want this to act as a mirror within the VM (i.e. delete files, too), and the default args do that.
This commit is contained in:
parent
b88c785248
commit
68fa2a2545
1 changed files with 1 additions and 1 deletions
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
|
@ -14,7 +14,7 @@ Vagrant.configure(2) do |config|
|
|||
|
||||
#set up shared and rsynced folders
|
||||
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.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: ["/output/", "vagrant_share"]
|
||||
|
||||
#this is where the VM is initialized on first setup
|
||||
config.vm.provision "shell", privileged: "true", inline: <<-SHELL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue