Update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2013-08-09 11:53:58 -07:00
parent 3b1a314117
commit b6ec723426
2 changed files with 2 additions and 2 deletions

View File

@ -24,6 +24,8 @@ BUG FIXES:
- hosts/fedora: properly detect later CentOS versions. [GH-2008] - hosts/fedora: properly detect later CentOS versions. [GH-2008]
- provisioners/ansible: No longer report failure on every run. [GH-2007] - provisioners/ansible: No longer report failure on every run. [GH-2007]
- provisioners/ansible: Properly handle extra vars with spaces. [GH-1984] - provisioners/ansible: Properly handle extra vars with spaces. [GH-1984]
- provisioners/puppet: mount synced folders as root to avoid weirdness
with Puppet. [GH-2015]
## 1.2.7 (July 28, 2013) ## 1.2.7 (July 28, 2013)

View File

@ -34,8 +34,6 @@ module VagrantPlugins
# Share the module paths # Share the module paths
count = 0 count = 0
@module_paths.each do |from, to| @module_paths.each do |from, to|
# Sorry for the cryptic key here, but VirtualBox has a strange limit on
# maximum size for it and its something small (around 10)
root_config.vm.synced_folder(from, to, { :owner => 'root' } ) root_config.vm.synced_folder(from, to, { :owner => 'root' } )
count += 1 count += 1
end end