Skip to content

Commit c951ffa

Browse files
committed
fix(Vagrantfile): fix vagrant sync command
The correct command is `vagrant rsync`. A reload/provision is unnecessary.
1 parent 96e0428 commit c951ffa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Vagrant.configure("2") do |config|
4646
config.vm.synced_folder ".", "/home/core/share", id: "core", :nfs => true, :mount_options => ['nolock,vers=3,udp']
4747
# FALLBACK use rsync if NFS has issues (mandatory if using Windows, or any Linux with an encrypted filesystem)
4848
# config.vm.synced_folder ".", "/home/core/share", type: "rsync"
49-
# Note that with rsync, local Deis code changes need to be re-synced to the VM by issuing a `vagrant reload --provision`
49+
# Note that with rsync, local Deis code changes need to be re-synced to the VM by issuing a `vagrant rsync`
5050

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

0 commit comments

Comments
 (0)