From 92829c4fec010e1de553f26eb2103a9a7eaa093a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 14 Jan 2014 09:34:21 -0800 Subject: [PATCH] website/docs: update docs for new rsync commands --- website/docs/source/v2/synced-folders/rsync.html.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/website/docs/source/v2/synced-folders/rsync.html.md b/website/docs/source/v2/synced-folders/rsync.html.md index 8839df37e..e83ae475f 100644 --- a/website/docs/source/v2/synced-folders/rsync.html.md +++ b/website/docs/source/v2/synced-folders/rsync.html.md @@ -16,6 +16,11 @@ machine. The rsync synced folder does a one-time one-way sync from the machine running to the machine being started by Vagrant. +The [rsync](/v2/cli/rsync.html) and [rsync-auto](/v2/cli/rsync-auto.html) +commands can be used to force a resync and to automatically resync when +changes occur in the filesystem. Without running these commands, Vagrant +only syncs the folders on `vagrant up` or `vagrant reload`. + ## Prerequisites To use the rsync synced folder type, the machine running Vagrant must have @@ -41,9 +46,3 @@ Vagrant.configure("2") do |config| rsync__exclude: ".git/" end - -## Re-Syncing - -The rsync sync is done only during a `vagrant up` or `vagrant reload`. Vagrant -does not automatically listen for changes on the filesystem and resync them. -Resyncing can be forced with a call to [vagrant rsync](/v2/cli/rsync.html).