Update CHANGELOG
This commit is contained in:
parent
3b1a314117
commit
b6ec723426
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue