Browse Source

MINOR: Fix vagrant rsync exclude argument

Existing VMs will need to be re-provisioned or re-created to pick up this change.

Reference docs:
https://www.vagrantup.com/docs/synced-folders/rsync.html

Author: Magnus Edenhill <magnus@edenhill.se>

Reviewers: Jason Gustafson <jason@confluent.io>

Closes #2047 from edenhill/fix_vm_rsync_exclude
pull/2034/merge
Magnus Edenhill 8 years ago committed by Jason Gustafson
parent
commit
5cf579a7e4
  1. 2
      Vagrantfile

2
Vagrantfile vendored

@ -135,7 +135,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| @@ -135,7 +135,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
# Exclude some directories that can grow very large from syncing
override.vm.synced_folder ".", "/vagrant", type: "rsync", :rsync_excludes => ['.git', 'core/data/', 'logs/', 'tests/results/', 'results/']
override.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ['.git', 'core/data/', 'logs/', 'tests/results/', 'results/']
end
def name_node(node, name, ec2_instance_name_prefix)

Loading…
Cancel
Save