Skip to content

Commit 5d60551

Browse files
author
Matthew Fisher
committed
feat(vagrant): make rsync as default
fixes #957, #752
1 parent c8965d9 commit 5d60551

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Vagrantfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ Vagrant.configure("2") do |config|
4242
ip = "172.17.8.#{i+99}"
4343
config.vm.network :private_network, ip: ip
4444

45-
# Enable NFS for sharing the host machine into the coreos-vagrant VM.
46-
config.vm.synced_folder ".", "/home/core/share", id: "core", :nfs => true, :mount_options => ['nolock,vers=3,udp']
47-
# FALLBACK use rsync if NFS has issues (mandatory if using Windows, or any Linux with an encrypted filesystem)
48-
# config.vm.synced_folder ".", "/home/core/share", type: "rsync"
45+
# FALLBACK Enable NFS for sharing the host machine into the coreos-vagrant VM.
46+
# config.vm.synced_folder ".", "/home/core/share", id: "core", :nfs => true, :mount_options => ['nolock,vers=3,udp']
4947
# Note that with rsync, local Deis code changes need to be re-synced to the VM by issuing a `vagrant rsync`
48+
config.vm.synced_folder ".", "/home/core/share", type: "rsync"
5049

5150
# user-data bootstrapping
5251
config.vm.provision :file, :source => "contrib/coreos/user-data", :destination => "/tmp/vagrantfile-user-data"

0 commit comments

Comments
 (0)