Update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2014-05-17 12:21:12 -07:00
parent b1f3ac0783
commit 72de106c8f
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@ BUG FIXES:
- core: Provider plugins more easily are compatible with global-status
and should show less stale data. [GH-3808]
- core: When setting a synced folder, it will assume it is not disabled
unless explicitly specified. [GH-3783]
- commands/package: Package with `--base` for VirtualBox doesn't
crash. [GH-3827]
- providers/docker: Never do graceful shutdown, always use

View File

@ -186,7 +186,7 @@ module VagrantPlugins
options ||= {}
options[:guestpath] = guestpath.to_s.gsub(/\/$/, '')
options[:hostpath] = hostpath
options[:disabled] = options[:disabled] || false
options[:disabled] = false if !options.has_key?(:disabled)
options = (@__synced_folders[options[:guestpath]] || {}).
merge(options.dup)