Merge pull request #3786 from treyhyde/master

hosts/freebsd: Unbreak rsync provisioning for FreeBSD by properly registering the rsync_pre capability
This commit is contained in:
Mitchell Hashimoto 2014-05-13 18:13:17 -07:00
commit 8c1615eec1
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ BUG FIXES:
- provisioners/puppet: Fix setting facter vars with Windows
guests. [GH-3776]
- guests/freebsd: Properly register the rsync_pre capability
## 1.6.2 (May 12, 2014)

View File

@ -56,7 +56,7 @@ module VagrantPlugins
Cap::RSync
end
guest_capability("linux", "rsync_pre") do
guest_capability("freebsd", "rsync_pre") do
require_relative "cap/rsync"
Cap::RSync
end