diff options
author | varac <varacanero@zeromail.org> | 2016-02-11 11:23:36 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-02-11 11:23:36 +0100 |
commit | dd1c1ee473364e2b298ee4fbdf11abc2894932d8 (patch) | |
tree | 0c40260b054cc578ff8858d10d00c7dfec27670b /Vagrantfile | |
parent | 8fec6c4d9b52e2562752b0ed847705e7685670fa (diff) |
Don't use rsync on windows/vagrant by default
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Vagrantfile b/Vagrantfile index 4102c424..ba925079 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -22,10 +22,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end - if /mswin|mingw/ =~ RUBY_PLATFORM - config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/" - end - config.vm.provider "libvirt" do |v, override| v.memory = 1024 override.vm.network :forwarded_port, guest: 3333, guest_ip: '127.0.0.1', host: 3333 |