Update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2014-08-29 09:49:38 -07:00
parent 417c2b7c7b
commit 22438a481c
2 changed files with 4 additions and 2 deletions

View File

@ -41,6 +41,8 @@ BUG FIXES:
- core: VM names may no longer contain brackets, since they cause
issues with some providers. [GH-4319]
- core: Use "-f" to `rm` files in case pty is true. [GH-4410]
- core: SSH key doesn't have to be owned by our user if we're running
as root. [GH-4387]
- commands/package: base package won't crash with exception [GH-4017]
- commands/rsync-auto: Destroyed machines won't raise exceptions. [GH-4031]
- communicators/ssh: Nicer error if remote unexpectedly disconects. [GH-4038]

View File

@ -33,8 +33,8 @@ module Vagrant
LOGGER.debug("Checking key permissions: #{key_path}")
stat = key_path.stat
if !(stat.owned? || (Process.uid == 0))
# The SSH key must be owned by ourselves
if !stat.owned? && Process.uid != 0
# The SSH key must be owned by ourselves, unless we're root
raise Errors::SSHKeyBadOwner, key_path: key_path
end