Make this error message more useful
This commit is contained in:
parent
11ee39fc5a
commit
31ec5c540f
|
@ -19,6 +19,7 @@ module VagrantPlugins
|
|||
clean_machine_folder(machine_folder)
|
||||
rescue Errno::EPERM
|
||||
raise Vagrant::Errors::MachineFolderNotAccessible,
|
||||
name: env[:machine].name,
|
||||
path: machine_folder
|
||||
end
|
||||
|
||||
|
|
|
@ -965,14 +965,14 @@ en:
|
|||
listing for any "ruby" or "vagrant" processes and kill them. Then
|
||||
try again.
|
||||
machine_folder_not_accessible: |-
|
||||
Vagrant is not permitted to access the machine folder by the host
|
||||
operating system. The machine folder is located at the following
|
||||
path:
|
||||
Vagrant attempted to clean the machine folder for the machine '%{name}'
|
||||
but does not have permission to read the following path:
|
||||
|
||||
%{path}
|
||||
|
||||
Note that this may be a restriction on the terminal emulator running
|
||||
Vagrant, or it may be a restriction on Vagrant itself.
|
||||
Please ensure that Vagrant has the proper permissions to access the path
|
||||
above. You may need to grant this permission to the terminal emulator
|
||||
running Vagrant as well.
|
||||
machine_guest_not_ready: |-
|
||||
Guest-specific operations were attempted on a machine that is not
|
||||
ready for guest communication. This should not happen and a bug
|
||||
|
|
Loading…
Reference in New Issue