docs: Add usage example to provisioning/file

This commit is contained in:
anatoly techtonik 2014-07-05 16:13:20 +03:00
parent 5530f32922
commit 329b88bbb4
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ File provisioning is a simple way to, for example, replicate your local
you won't have to run `git config --global` every time you provision a you won't have to run `git config --global` every time you provision a
new VM. new VM.
Vagrant.configure("2") do |config|
# ... other configuration
config.vm.provision "file", source: "~/.gitconfig", destination: "."
end
Note that, unlike with synced folders, files that are uploaded will not Note that, unlike with synced folders, files that are uploaded will not
be kept in sync. Continuing with the example above, if you make further be kept in sync. Continuing with the example above, if you make further
changes to your local ~/.gitconfig, they will not be immediately reflected changes to your local ~/.gitconfig, they will not be immediately reflected