Update CHANGELOG
This commit is contained in:
parent
33187e1dc8
commit
cd92d6483f
|
@ -4,6 +4,8 @@
|
|||
used, so that `vagrant provision` works. [GH-803]
|
||||
- Nicer error message if an unsupported SSH key type is used. [GH-805]
|
||||
- Gentoo guests can now have their host names changed. [GH-796]
|
||||
- Relative paths can be used for the `config.ssh.private_key_path`
|
||||
setting. [GH-808]
|
||||
|
||||
## 1.0.1 (March 11, 2012)
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ module Vagrant
|
|||
errors.add(I18n.t("vagrant.config.common.error_empty", :field => field)) if !instance_variable_get("@#{field}".to_sym)
|
||||
end
|
||||
|
||||
if private_key_path && !File.file?(File.expand_path(private_key_path))
|
||||
if private_key_path && !File.file?(File.expand_path(private_key_path, env.root_path))
|
||||
errors.add(I18n.t("vagrant.config.ssh.private_key_missing", :path => private_key_path))
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue