2010-08-27 04:56:38 +00:00
|
|
|
en:
|
|
|
|
vagrant:
|
2010-09-20 15:43:37 +00:00
|
|
|
general:
|
2011-07-10 01:54:35 +00:00
|
|
|
moving_home_dir: "Moving old Vagrant home directory to new location: %{directory}"
|
|
|
|
home_dir_migration_failed: |-
|
|
|
|
Both an old and new Vagrant home directory exist. Only the new one will
|
|
|
|
be used. Please merge the old directory into the new directory if you'd
|
|
|
|
like to use the old data as well.
|
|
|
|
|
|
|
|
Old: %{old}
|
|
|
|
New: %{new}
|
2010-08-27 06:21:28 +00:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Translations for exception classes
|
|
|
|
#-------------------------------------------------------------------------------
|
2010-08-27 04:56:38 +00:00
|
|
|
errors:
|
|
|
|
base_vm_not_found: The base VM with the name '%{name}' was not found.
|
|
|
|
box_not_found: Box '%{name}' could not be found.
|
2012-01-11 02:53:20 +00:00
|
|
|
cli_invalid_options: |-
|
|
|
|
An invalid option was specified. The help for this command
|
|
|
|
is available below.
|
|
|
|
|
2012-01-20 23:21:54 +00:00
|
|
|
%{help}
|
|
|
|
cli_invalid_usage: |-
|
|
|
|
This command was not invoked properly. The help for this command is
|
|
|
|
available below.
|
|
|
|
|
2012-01-11 02:53:20 +00:00
|
|
|
%{help}
|
2010-09-05 17:57:33 +00:00
|
|
|
config_validation: |-
|
2010-09-06 02:33:50 +00:00
|
|
|
There was a problem with the configuration of Vagrant. The error message(s)
|
|
|
|
are printed below:
|
2010-09-05 17:57:33 +00:00
|
|
|
|
|
|
|
%{messages}
|
2011-12-22 00:25:58 +00:00
|
|
|
deprecation: |-
|
|
|
|
You are using a feature that has been removed in this version. Explanation:
|
|
|
|
|
|
|
|
%{message}
|
|
|
|
Note that this error message will not appear in the next version of Vagrant.
|
2012-03-08 06:35:40 +00:00
|
|
|
destroy_requires_force: |-
|
|
|
|
Destroy doesn't have a TTY to ask for confirmation. Please pass the
|
|
|
|
`--force` flag to force a destroy, otherwise attach a TTY so that
|
|
|
|
the destroy can be confirmed.
|
2010-10-07 01:57:39 +00:00
|
|
|
dotfile_is_directory: |-
|
|
|
|
The local file Vagrant uses to store data ".vagrant" already exists
|
|
|
|
and is a directory! If you are in your home directory, then please run
|
|
|
|
this command in another directory. If you aren't in a home directory,
|
|
|
|
then please rename ".vagrant" to something else, or configure Vagrant
|
|
|
|
to use another filename by modifying `config.vagrant.dotfile_name`.
|
2011-07-09 22:57:24 +00:00
|
|
|
environment_locked: |-
|
|
|
|
An instance of Vagrant is already running. Only one instance of Vagrant
|
|
|
|
may run at any given time to avoid problems with VirtualBox inconsistencies
|
|
|
|
occurring. Please wait for the other instance of Vagrant to end and then
|
|
|
|
try again.
|
2012-02-07 03:21:01 +00:00
|
|
|
gem_command_in_bundler: |-
|
|
|
|
You cannot run the `vagrant gem` command while in a bundler environment.
|
|
|
|
Bundler messes around quite a bit with the RubyGem load paths and gems
|
|
|
|
installed via `vagrant gem` are excluded by Bundler.
|
|
|
|
|
|
|
|
Instead, please include your Vagrant plugins in your Gemfile itself.
|
2011-12-16 04:55:16 +00:00
|
|
|
guest:
|
|
|
|
invalid_class: |-
|
2011-12-16 05:08:12 +00:00
|
|
|
The specified guest class does not inherit from `Vagrant::Guest::Base`.
|
2011-12-16 04:56:19 +00:00
|
|
|
The specified guest class must inherit from this class.
|
2011-12-16 04:55:16 +00:00
|
|
|
|
2011-12-16 04:56:19 +00:00
|
|
|
The specified guest class was: %{guest}
|
2011-12-16 04:55:16 +00:00
|
|
|
unknown_type: |-
|
2011-12-16 04:56:19 +00:00
|
|
|
The specified guest type is unknown: %{guest}. Please change this
|
2011-12-16 04:55:16 +00:00
|
|
|
to a proper value.
|
|
|
|
unspecified: |-
|
2011-12-16 04:56:19 +00:00
|
|
|
A VM guest type must be specified! This is done via the `config.vm.guest`
|
2011-12-16 04:55:16 +00:00
|
|
|
configuration value. Please read the documentation online for more information.
|
2011-12-11 01:10:02 +00:00
|
|
|
home_dir_not_accessible: |-
|
|
|
|
The home directory you specified is not accessible. The home
|
|
|
|
directory that Vagrant uses must be both readable and writable.
|
|
|
|
|
|
|
|
You specified: %{home_path}
|
2012-01-09 07:15:18 +00:00
|
|
|
interrupted: |-
|
|
|
|
Vagrant exited after cleanup due to external interrupt.
|
2012-01-08 19:54:32 +00:00
|
|
|
multi_vm_required: |-
|
|
|
|
A multi-vm environment is required for name specification to this command.
|
2011-12-27 01:59:18 +00:00
|
|
|
multi_vm_target_required: |-
|
|
|
|
This command requires a specific VM name to target in a multi-VM environment.
|
2011-12-18 21:26:15 +00:00
|
|
|
no_env: |-
|
|
|
|
A Vagrant environment is required to run this command. Run `vagrant init`
|
|
|
|
to set one up.
|
2011-12-25 17:48:49 +00:00
|
|
|
port_collision_resume: |-
|
|
|
|
This VM cannot be resumed, because the forwarded ports would collide with
|
|
|
|
another running virtual machine. Normally, Vagrant will attempt to fix this
|
|
|
|
for you but VirtualBox only allows forwarded ports to change if the VM is
|
|
|
|
powered off. Therefore, please reload your VM or halt the other running
|
|
|
|
VMs to continue.
|
2011-12-11 05:29:11 +00:00
|
|
|
scp_unavailable: |-
|
|
|
|
SSH server on the guest doesn't support SCP. Please install the necessary
|
|
|
|
software to enable SCP on your guest operating system.
|
2012-01-08 19:29:52 +00:00
|
|
|
shared_folder_create_failed: |-
|
|
|
|
Failed to create the following shared folder on the host system. This is
|
|
|
|
usually because Vagrant does not have sufficient permissions to create
|
|
|
|
the folder.
|
|
|
|
|
|
|
|
%{path}
|
|
|
|
|
|
|
|
Please create the folder manually or specify another path to share.
|
2010-08-27 07:01:27 +00:00
|
|
|
ssh_authentication_failed: |-
|
|
|
|
SSH authentication failed! This is typically caused by the public/private
|
|
|
|
keypair for the SSH user not being properly set on the guest VM. Please
|
|
|
|
verify that the guest VM is setup with the proper public key, and that
|
2010-09-06 02:33:50 +00:00
|
|
|
the private key path for Vagrant is setup properly as well.
|
2010-09-01 17:00:49 +00:00
|
|
|
ssh_bad_exit_status: |-
|
|
|
|
The following SSH command responded with a non-zero exit status.
|
|
|
|
Vagrant assumes that this means the command failed!
|
|
|
|
|
|
|
|
%{command}
|
2010-09-14 21:00:46 +00:00
|
|
|
ssh_connection_refused: |-
|
|
|
|
SSH connection was refused! This usually happens if the VM failed to
|
|
|
|
boot properly. Some steps to try to fix this: First, try reloading your
|
|
|
|
VM with `vagrant reload`, since a simple restart sometimes fixes things.
|
|
|
|
If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
|
|
|
|
followed by a `vagrant up`. If that doesn't work, contact a Vagrant
|
|
|
|
maintainer (support channels listed on the website) for more assistance.
|
2012-03-29 05:30:01 +00:00
|
|
|
ssh_connection_timeout: |-
|
|
|
|
Vagrant timed out while attempting to connect via SSH. This usually
|
|
|
|
means that the VM booted, but there are issues with the SSH configuration
|
|
|
|
or network connectivity issues. Please try to `vagrant reload` or
|
|
|
|
`vagrant up` again.
|
2010-08-27 07:05:03 +00:00
|
|
|
ssh_key_bad_permissions: |-
|
|
|
|
The private key to connect to this box via SSH has invalid permissions
|
|
|
|
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
|
|
|
|
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
|
|
|
|
permissions on the following file to 0600 and then try running this command again:
|
|
|
|
|
2010-09-02 02:17:50 +00:00
|
|
|
%{key_path}
|
2012-03-13 21:27:16 +00:00
|
|
|
ssh_key_type_not_supported: |-
|
|
|
|
The private key you're attempting to use with this Vagrant box uses
|
|
|
|
an unsupported encryption type. The SSH library Vagrant uses does not support
|
|
|
|
this key type. Please use `ssh-rsa` or `ssh-dss` instead.
|
2011-01-14 08:36:49 +00:00
|
|
|
ssh_port_not_detected: |-
|
2012-01-06 09:08:20 +00:00
|
|
|
Vagrant couldn't determine the SSH port for your VM! Vagrant attempts to
|
|
|
|
automatically find a forwarded port that matches your `config.ssh.guest_port`
|
|
|
|
(default: 22) value and uses this for SSH. Alternatively, if `config.ssh.port`
|
|
|
|
is set, it will use this.
|
|
|
|
|
|
|
|
However, in this case Vagrant was unable to find a forwarded port that matches
|
|
|
|
the guest port and `config.ssh.port` is not set!
|
|
|
|
|
|
|
|
Please make sure that you have a forwarded port that goes to the configured
|
|
|
|
guest port value, or specify an explicit SSH port with `config.ssh.port`.
|
2010-09-30 06:47:17 +00:00
|
|
|
ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
|
2010-08-27 06:51:30 +00:00
|
|
|
ssh_unavailable_windows: |-
|
2012-01-13 02:03:35 +00:00
|
|
|
`vagrant ssh` isn't available on the Windows platform. You are still able
|
|
|
|
to SSH into the virtual machine if you get a Windows SSH client (such as
|
|
|
|
PuTTY). The authentication information is shown below:
|
|
|
|
|
|
|
|
Host: %{host}
|
|
|
|
Port: %{port}
|
|
|
|
Username: %{username}
|
|
|
|
Private key: %{key_path}
|
2012-03-08 06:32:44 +00:00
|
|
|
ui_expects_tty: |-
|
|
|
|
Vagrant is attempting to interface with the UI in a way that requires
|
|
|
|
a TTY. Most actions in Vagrant that require a TTY have configuration
|
|
|
|
switches to disable this requirement. Please do that or run Vagrant
|
|
|
|
with TTY.
|
2011-12-18 05:06:00 +00:00
|
|
|
vagrantfile_exists: |-
|
|
|
|
`Vagrantfile` already exists in this directory. Remove it before
|
|
|
|
running `vagrant init`.
|
2010-09-03 21:22:34 +00:00
|
|
|
vagrantfile_syntax_error: |-
|
2010-09-04 21:33:53 +00:00
|
|
|
There is a syntax error in the following Vagrantfile. The syntax error
|
|
|
|
message is reproduced below for convenience:
|
2010-09-03 21:22:34 +00:00
|
|
|
|
|
|
|
%{file}
|
2011-12-21 23:41:14 +00:00
|
|
|
vboxmanage_error: |-
|
|
|
|
There was an error executing the following command with VBoxManage:
|
|
|
|
|
|
|
|
%{command}
|
|
|
|
|
|
|
|
For more information on the failure, enable detailed logging with
|
|
|
|
VAGRANT_LOG.
|
2010-08-27 06:21:28 +00:00
|
|
|
virtualbox_invalid_version: |-
|
2012-01-08 04:50:55 +00:00
|
|
|
Vagrant has detected that you have a version of VirtualBox installed
|
|
|
|
that is not supported. Please install one of the supported versions
|
|
|
|
listed below to use Vagrant:
|
2010-12-25 03:14:48 +00:00
|
|
|
|
2012-01-08 04:50:55 +00:00
|
|
|
%{supported_versions}
|
2012-01-25 03:30:55 +00:00
|
|
|
virtualbox_kernel_module_not_loaded: |-
|
|
|
|
VirtualBox is complaining that the kernel module is not loaded. Please
|
|
|
|
run `VBoxManage --version` to see the error message which should contain
|
|
|
|
instructions on how to fix this error.
|
2010-08-27 06:21:28 +00:00
|
|
|
virtualbox_not_detected: |-
|
|
|
|
Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
|
2011-12-22 20:49:45 +00:00
|
|
|
Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
|
|
|
|
this to be available on the PATH. If VirtualBox is installed, please find the
|
|
|
|
`VBoxManage` binary and add it to the PATH environmental variable.
|
2012-01-05 23:10:10 +00:00
|
|
|
vm_creation_required: |-
|
|
|
|
VM must be created before running this command. Run `vagrant up` first.
|
2011-08-29 03:32:22 +00:00
|
|
|
vm_inaccessible: |-
|
|
|
|
Your VM has become "inaccessible." Unfortunately, this is a critical error
|
|
|
|
with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
|
|
|
|
and clear out your inaccessible virtual machines or find a way to fix
|
|
|
|
them.
|
2011-12-27 02:12:02 +00:00
|
|
|
vm_no_match: |-
|
|
|
|
No virtual machines matched the regular expression given.
|
|
|
|
vm_not_found: |-
|
|
|
|
A VM by the name of %{name} was not found.
|
|
|
|
vm_not_running: |-
|
2012-01-05 23:09:41 +00:00
|
|
|
VM must be running to open SSH connection. Run `vagrant up`
|
|
|
|
to start the virtual machine.
|
2010-08-27 06:21:28 +00:00
|
|
|
|
2010-09-05 17:57:33 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Translations for config validation errors
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
config:
|
2010-09-05 18:26:38 +00:00
|
|
|
common:
|
2011-07-10 00:03:34 +00:00
|
|
|
error_empty: "`%{field}` must be filled in."
|
2010-09-30 08:09:36 +00:00
|
|
|
chef:
|
|
|
|
cookbooks_path_empty: "Must specify a cookbooks path for chef solo."
|
2012-01-20 03:48:57 +00:00
|
|
|
run_list_empty: "Run list must not be empty."
|
2010-09-30 08:09:36 +00:00
|
|
|
server_url_empty: "Chef server URL must be populated."
|
2012-01-20 03:48:57 +00:00
|
|
|
vagrant_as_json_key: |-
|
|
|
|
`vagrant` cannot be a JSON key, because it is used by Vagrant already.
|
2010-09-30 08:09:36 +00:00
|
|
|
validation_key_path: "Validation key path must be valid path to your chef server validation key."
|
2010-09-05 18:26:38 +00:00
|
|
|
ssh:
|
|
|
|
private_key_missing: "`private_key_path` file must exist: %{path}"
|
|
|
|
vm:
|
2010-10-08 17:44:19 +00:00
|
|
|
base_mac_invalid: "Base MAC address for eth0/NAT must be set. Contact box maintainer for more information."
|
2011-12-21 21:37:59 +00:00
|
|
|
boot_mode_invalid: "Boot mode must be one of: headless or gui"
|
2010-10-22 00:58:17 +00:00
|
|
|
box_missing: "A box must be specified."
|
|
|
|
box_not_found: "The box '%{name}' could not be found."
|
2011-12-31 01:55:37 +00:00
|
|
|
network_invalid: |-
|
|
|
|
The network type '%{type}' is not valid. Please use
|
|
|
|
'hostonly' or 'bridged'.
|
|
|
|
network_ip_required: |-
|
|
|
|
Host only networks require an IP as an argument.
|
|
|
|
network_ip_invalid: |-
|
|
|
|
The host only network IP '%{ip}' is invalid.
|
2011-07-23 06:53:19 +00:00
|
|
|
network_ip_ends_one: |-
|
|
|
|
The host only network IP '%{ip}' must not end in a 1, as this
|
|
|
|
is reserved for the host machine.
|
2010-10-08 17:44:19 +00:00
|
|
|
shared_folder_hostpath_missing: "Shared folder host path for '%{name}' doesn't exist: %{path}"
|
2011-07-06 07:07:36 +00:00
|
|
|
shared_folder_nfs_owner_group: |-
|
|
|
|
Shared folder '%{name}': NFS does not support the owner/group settings.
|
2011-01-12 05:07:12 +00:00
|
|
|
provisioner_not_found: "The provisioner '%{shortcut}' doesn't exist."
|
2011-01-12 06:13:09 +00:00
|
|
|
provisioner_invalid_class: "The provisioner '%{shortcut}' must inherit from `Vagrant::Provisioners::Base`."
|
2010-09-05 17:57:33 +00:00
|
|
|
|
2010-08-27 06:21:28 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Translations for commands. e.g. `vagrant x`
|
|
|
|
#-------------------------------------------------------------------------------
|
2010-08-27 05:39:54 +00:00
|
|
|
commands:
|
2010-08-28 04:09:50 +00:00
|
|
|
common:
|
|
|
|
vm_not_created: "VM not created. Moving on..."
|
2011-07-30 16:58:29 +00:00
|
|
|
vm_not_running: "VM is not currently running. Please bring it up to run this command."
|
2010-08-27 05:53:27 +00:00
|
|
|
box:
|
2010-08-28 04:09:50 +00:00
|
|
|
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
2012-02-08 06:54:30 +00:00
|
|
|
destroy:
|
|
|
|
confirmation: "Are you sure you want to destroy the '%{name}' VM? [Y/N] "
|
|
|
|
will_not_destroy: |-
|
|
|
|
The VM '%{name}' will not be destroyed, since the confirmation
|
|
|
|
was declined.
|
2012-02-07 03:52:34 +00:00
|
|
|
gem:
|
|
|
|
help_preamble: |-
|
|
|
|
`vagrant gem` is used to install Vagrant plugins via the RubyGems
|
|
|
|
system. In fact, `vagrant gem` is just a frontend to the actual `gem`
|
|
|
|
interface, with the difference being that Vagrant sets up a custom
|
|
|
|
directory where gems are installed so that they are isolated from your
|
|
|
|
system gems.
|
2011-12-18 05:06:00 +00:00
|
|
|
init:
|
|
|
|
success: |-
|
|
|
|
A `Vagrantfile` has been placed in this directory. You are now
|
|
|
|
ready to `vagrant up` your first virtual environment! Please read
|
|
|
|
the comments in the Vagrantfile as well as documentation on
|
|
|
|
`vagrantup.com` for more information on using Vagrant.
|
2010-08-27 05:39:54 +00:00
|
|
|
status:
|
2011-06-13 21:16:44 +00:00
|
|
|
aborted: |-
|
|
|
|
The VM is in an aborted state. This means that it was abruptly
|
|
|
|
stopped without properly closing the session. Run `vagrant up`
|
|
|
|
to resume this virtual machine. If any problems persist, you may
|
|
|
|
have to destroy and restart the virtual machine.
|
2012-02-19 04:00:08 +00:00
|
|
|
gurumeditation: |-
|
|
|
|
The VM is in the "guru meditation" state. This is a rare case which means
|
|
|
|
that an internal error in VitualBox caused the VM to fail. This is always
|
|
|
|
the sign of a bug in VirtualBox. You can try to bring your VM back online
|
|
|
|
with a `vagrant up`.
|
2011-08-29 03:17:25 +00:00
|
|
|
inaccessible: |-
|
|
|
|
The VM is inaccessible! This is a rare case which means that VirtualBox
|
|
|
|
can't find your VM configuration. This usually happens when upgrading
|
|
|
|
VirtualBox, moving to a new computer, etc. Please consult VirtualBox
|
|
|
|
for how to handle this issue.
|
2010-08-27 05:39:54 +00:00
|
|
|
output: |-
|
|
|
|
Current VM states:
|
|
|
|
|
|
|
|
%{states}
|
|
|
|
|
|
|
|
%{message}
|
|
|
|
not_created: |-
|
|
|
|
The environment has not yet been created. Run `vagrant up` to
|
|
|
|
create the environment.
|
2012-03-10 20:16:26 +00:00
|
|
|
paused: |-
|
|
|
|
The VM is paused. This VM may have been paused via the VirtualBox
|
|
|
|
GUI or the VBoxManage command line interface. To unpause, please
|
|
|
|
use the VirtualBox GUI and/or VBoxManage command line interface so
|
|
|
|
that vagrant would be able to control the VM again.
|
2011-12-19 05:41:19 +00:00
|
|
|
poweroff: |-
|
|
|
|
The VM is powered off. To restart the VM, simply run `vagrant up`
|
2010-08-27 05:39:54 +00:00
|
|
|
running: |-
|
|
|
|
The VM is running. To stop this VM, you can run `vagrant halt` to
|
|
|
|
shut it down forcefully, or you can run `vagrant suspend` to simply
|
|
|
|
suspend the virtual machine. In either case, to restart it again,
|
|
|
|
simply run `vagrant up`.
|
2011-12-19 05:41:19 +00:00
|
|
|
saved: |-
|
|
|
|
To resume this VM, simply run `vagrant up`.
|
2010-11-21 08:14:13 +00:00
|
|
|
stuck: |-
|
|
|
|
The VM is "stuck!" This is a very rare state which means that
|
|
|
|
VirtualBox is unable to recover the current state of the VM.
|
|
|
|
The only known solution to this problem is to restart your
|
|
|
|
machine, sorry.
|
2010-08-27 05:39:54 +00:00
|
|
|
listing: |-
|
|
|
|
This environment represents multiple VMs. The VMs are all listed
|
|
|
|
above with their current state. For more information about a specific
|
|
|
|
VM, run `vagrant status NAME`.
|
2010-08-28 04:09:50 +00:00
|
|
|
up:
|
2011-09-16 17:08:37 +00:00
|
|
|
vm_created: "VM already created. Booting if it's not already running..."
|
2010-08-28 04:09:50 +00:00
|
|
|
version:
|
|
|
|
output: "Vagrant version %{version}"
|
2010-08-28 02:26:33 +00:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Translations for Vagrant middleware acions
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
actions:
|
2010-09-01 21:40:35 +00:00
|
|
|
runner:
|
|
|
|
waiting_cleanup: "Waiting for cleanup before exiting..."
|
|
|
|
exit_immediately: "Exiting immediately, without cleanup!"
|
2010-08-28 02:26:33 +00:00
|
|
|
vm:
|
|
|
|
boot:
|
|
|
|
booting: Booting VM...
|
|
|
|
waiting: Waiting for VM to boot. This can take a few minutes.
|
|
|
|
ready: VM booted and ready for use!
|
|
|
|
failed: Failed to connect to VM!
|
2010-10-27 00:00:09 +00:00
|
|
|
failed_to_boot: |-
|
|
|
|
Failed to connect to VM via SSH. Please verify the VM successfully booted
|
|
|
|
by looking at the VirtualBox GUI.
|
2012-03-25 17:00:27 +00:00
|
|
|
failed_to_run: |-
|
|
|
|
The VM failed to remain in the "running" state while attempting to boot.
|
|
|
|
This is normally caused by a misconfiguration or host system incompatibilities.
|
|
|
|
Please open the VirtualBox GUI and attempt to boot the virtual machine
|
|
|
|
manually to get a more informative error message.
|
2011-12-31 19:27:37 +00:00
|
|
|
bridged_networking:
|
2012-01-01 08:05:47 +00:00
|
|
|
available: |-
|
|
|
|
Available bridged network interfaces:
|
2011-12-31 19:27:37 +00:00
|
|
|
bridging: |-
|
|
|
|
Bridging adapter #%{adapter} to '%{bridge}'
|
|
|
|
enabling: |-
|
|
|
|
Enabling bridged network...
|
|
|
|
preparing: |-
|
|
|
|
Preparing bridged networking...
|
2012-02-04 14:04:28 +00:00
|
|
|
specific_not_found: |-
|
|
|
|
Specific bridge '%{bridge}' not found. You may be asked to specify
|
|
|
|
which network to bridge to.
|
2010-08-28 02:26:33 +00:00
|
|
|
check_box:
|
|
|
|
not_found: Box %{name} was not found. Fetching box from specified URL...
|
2010-08-31 02:39:11 +00:00
|
|
|
not_specified: |-
|
|
|
|
No base box was specified! A base box is required as a staring point
|
|
|
|
for every vagrant virtual machine. Please specify one in your Vagrantfile
|
|
|
|
using `config.vm.box`
|
|
|
|
does_not_exist: |-
|
|
|
|
Specified box `%{name}` does not exist!
|
|
|
|
|
|
|
|
The box must be added through the `vagrant box add` command. Please view
|
|
|
|
the documentation associated with the command for more information.
|
2010-08-28 02:26:33 +00:00
|
|
|
check_guest_additions:
|
|
|
|
not_detected: |-
|
|
|
|
No guest additions were detected on the base box for this VM! Guest
|
|
|
|
additions are required for forwarded ports, shared folders, host only
|
|
|
|
networking, and more. If SSH fails on this machine, please install
|
|
|
|
the guest additions and repackage the box to continue.
|
|
|
|
|
|
|
|
This is not an error message; everything may continue to work properly,
|
|
|
|
in which case you may ignore this message.
|
|
|
|
version_mismatch: |-
|
|
|
|
The guest additions on this VM do not match the install version of
|
2010-09-06 02:33:50 +00:00
|
|
|
VirtualBox! This may cause things such as forwarded ports, shared
|
2010-08-28 02:26:33 +00:00
|
|
|
folders, and more to not work properly. If any of those things fail on
|
|
|
|
this machine, please update the guest additions and repackage the
|
|
|
|
box.
|
|
|
|
|
|
|
|
Guest Additions Version: %{guest_version}
|
|
|
|
VirtualBox Version: %{virtualbox_version}
|
|
|
|
clear_forward_ports:
|
|
|
|
deleting: Clearing any previously set forwarded ports...
|
2012-01-02 05:58:15 +00:00
|
|
|
clear_network_interfaces:
|
|
|
|
deleting: Clearing any previously set network interfaces...
|
2010-08-28 02:26:33 +00:00
|
|
|
clear_shared_folders:
|
2010-09-01 17:55:03 +00:00
|
|
|
deleting: Cleaning previously set shared folders...
|
2010-08-28 02:26:33 +00:00
|
|
|
customize:
|
2011-12-22 00:37:59 +00:00
|
|
|
failure: |-
|
|
|
|
A customization command failed:
|
|
|
|
|
|
|
|
%{command}
|
|
|
|
|
|
|
|
The following error was experienced:
|
|
|
|
|
|
|
|
%{error}
|
|
|
|
|
|
|
|
Please fix this customization and try again.
|
2010-08-28 02:26:33 +00:00
|
|
|
running: Running any VM customizations...
|
|
|
|
destroy:
|
|
|
|
destroying: Destroying VM and associated drives...
|
|
|
|
destroy_network:
|
|
|
|
destroying: Destroying unused networking interface...
|
|
|
|
disable_networks:
|
|
|
|
disabling: Disabling host only networks...
|
|
|
|
discard_state:
|
|
|
|
discarding: Discarding saved state of VM...
|
|
|
|
export:
|
|
|
|
create_dir: Creating temporary directory for export...
|
|
|
|
exporting: Exporting VM...
|
2010-08-31 02:39:11 +00:00
|
|
|
power_off: "The Vagrant virtual environment you are trying to package must be powered off."
|
2010-08-28 02:26:33 +00:00
|
|
|
forward_ports:
|
2010-08-31 03:07:50 +00:00
|
|
|
auto_empty: |-
|
|
|
|
Vagrant found a port collision for the specified port and virtual machine.
|
|
|
|
While this port was marked to be auto-corrected, the ports in the
|
|
|
|
auto-correction range are all also used.
|
|
|
|
|
|
|
|
VM: %{vm_name}
|
2012-01-03 18:34:35 +00:00
|
|
|
Forwarded port: %{guest_port} => %{host_port}
|
2010-08-31 03:07:50 +00:00
|
|
|
collision_error: |-
|
|
|
|
Vagrant cannot forward the specified ports on this VM, since they
|
|
|
|
would collide with another VirtualBox virtual machine's forwarded
|
2012-01-03 18:34:35 +00:00
|
|
|
ports! The forwarded port to %{host_port} is already in use on the host
|
2010-08-31 03:07:50 +00:00
|
|
|
machine.
|
|
|
|
|
|
|
|
To fix this, modify your current projects Vagrantfile to use another
|
|
|
|
port. Example, where '1234' would be replaced by a unique host port:
|
|
|
|
|
2012-01-03 18:34:35 +00:00
|
|
|
config.vm.forward_port %{guest_port}, 1234
|
2010-08-31 03:07:50 +00:00
|
|
|
|
2012-01-03 18:34:35 +00:00
|
|
|
fixed_collision: |-
|
|
|
|
Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
|
2010-08-28 02:26:33 +00:00
|
|
|
forwarding: Forwarding ports...
|
2012-01-03 18:18:10 +00:00
|
|
|
forwarding_entry: |-
|
|
|
|
-- %{guest_port} => %{host_port} (adapter %{adapter})
|
2010-08-28 02:26:33 +00:00
|
|
|
non_nat: |-
|
2012-02-04 12:59:16 +00:00
|
|
|
VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
|
|
|
|
forwards on this adapter.
|
2011-09-12 06:56:02 +00:00
|
|
|
privileged_ports: |-
|
|
|
|
You are trying to forward to privileged ports (ports <= 1024). Most
|
|
|
|
operating systems restrict this to only privileged process (typically
|
|
|
|
processes running as an administrative user). This is a warning in case
|
|
|
|
the port forwarding doesn't work. If any problems occur, please try a
|
|
|
|
port higher than 1024.
|
2010-08-28 02:26:33 +00:00
|
|
|
halt:
|
2012-01-07 19:44:53 +00:00
|
|
|
force: |-
|
|
|
|
Forcing shutdown of VM...
|
|
|
|
graceful: |-
|
|
|
|
Attempting graceful shutdown of VM...
|
2011-01-14 17:51:19 +00:00
|
|
|
host_name:
|
|
|
|
setting: "Setting host name..."
|
2010-08-28 02:26:33 +00:00
|
|
|
import:
|
|
|
|
importing: Importing base box '%{name}'...
|
2010-08-31 03:07:50 +00:00
|
|
|
failure: |-
|
|
|
|
The VM import failed! Try running `VBoxManage import` on the box file
|
|
|
|
manually for more verbose error output.
|
2010-08-28 02:26:33 +00:00
|
|
|
match_mac:
|
|
|
|
matching: Matching MAC address for NAT networking...
|
2010-10-08 17:44:19 +00:00
|
|
|
no_base_mac: |-
|
|
|
|
No base MAC address was specified. This is required for the NAT networking
|
|
|
|
to work properly (and hence port forwarding, SSH, etc.). Specifying this
|
|
|
|
MAC address is typically up to the box and box maintiner. Please contact
|
|
|
|
the relevant person to solve this issue.
|
2012-01-03 03:40:19 +00:00
|
|
|
network:
|
2012-01-03 17:34:32 +00:00
|
|
|
adapter_collision: |-
|
2012-01-03 17:37:10 +00:00
|
|
|
More than one network have been assigned to the same adapter. Please
|
|
|
|
make sure your networks you've configured in your Vagrantfile do not
|
|
|
|
overlap.
|
2012-01-03 03:40:19 +00:00
|
|
|
configuring: |-
|
|
|
|
Configuring and enabling network interfaces...
|
2012-01-09 04:28:47 +00:00
|
|
|
dhcp_already_attached: |-
|
|
|
|
A host only network interface you're attempting to configure via DHCP
|
|
|
|
already has a conflicting host only adapter with DHCP enabled. The
|
|
|
|
DHCP on this adapter is incompatible with the DHCP settings. Two
|
|
|
|
host only network interfaces are not allowed to overlap, and each
|
|
|
|
host only network interface can have only one DHCP server. Please
|
|
|
|
reconfigure your host only network or remove the virtual machine
|
|
|
|
using the other host only network.
|
2012-01-03 16:01:26 +00:00
|
|
|
no_adapters: |-
|
|
|
|
No available adapters on the virtual machine were found to accomodate
|
|
|
|
for all configured networks. VirtualBox virtual machines have 8
|
|
|
|
network interfaces available usually, so please lower the number of
|
|
|
|
networks to below 8.
|
|
|
|
preparing: |-
|
|
|
|
Preparing network interfaces based on configuration...
|
2011-12-31 19:27:37 +00:00
|
|
|
host_only_network:
|
2010-08-31 03:07:50 +00:00
|
|
|
collides: |-
|
|
|
|
The specified host network collides with a non-hostonly network!
|
|
|
|
This will cause your specified IP to be inaccessible. Please change
|
|
|
|
the IP or name of your host only network to not match that of
|
|
|
|
a bridged or non-hostonly network.
|
2010-12-22 03:52:41 +00:00
|
|
|
creating: "Creating new host only network for environment..."
|
|
|
|
enabling: "Enabling host only network..."
|
2010-08-31 03:07:50 +00:00
|
|
|
not_found: |-
|
|
|
|
The specified host network could not be found: '%{name}.'
|
|
|
|
If the name specification is removed, Vagrant will create a new
|
|
|
|
host only network for you. Alternatively, please create the
|
|
|
|
specified network manually.
|
2010-12-22 03:52:41 +00:00
|
|
|
preparing: "Preparing host only network..."
|
2010-08-28 02:26:33 +00:00
|
|
|
nfs:
|
2010-08-31 03:07:50 +00:00
|
|
|
host_required: |-
|
|
|
|
A host class is required for NFS shared folders. By default, these
|
2010-09-06 02:33:50 +00:00
|
|
|
are auto-detected, but can be overridden with `config.vagrant.host`.
|
2011-12-12 07:27:53 +00:00
|
|
|
There is currently no host class loaded.
|
2010-08-31 03:07:50 +00:00
|
|
|
no_host_network: |-
|
2012-01-13 06:19:23 +00:00
|
|
|
NFS shared folders requires that host only networking is enabled
|
|
|
|
with a static IP. Please enable host only network and assign a
|
|
|
|
static IP via `config.vm.network`.
|
2010-08-31 03:07:50 +00:00
|
|
|
not_supported: |-
|
|
|
|
The host class is reporting that NFS is not supported by this host,
|
|
|
|
or `nfsd` may not be installed. Please verify that `nfsd` is installed
|
|
|
|
on your machine, and retry.
|
2010-08-28 02:26:33 +00:00
|
|
|
exporting: Exporting NFS shared folders...
|
|
|
|
mounting: Mounting NFS shared folders...
|
|
|
|
persist:
|
2010-09-01 14:13:37 +00:00
|
|
|
dotfile_error: |-
|
|
|
|
The dotfile which Vagrant uses to store the UUID of the project's
|
|
|
|
virtual machine already exists and is not a file! The dotfile is
|
|
|
|
currently configured to be '%{dotfile_path}'
|
|
|
|
|
|
|
|
To change this value, please see `config.vagrant.dotfile_name`
|
|
|
|
|
|
|
|
Are you trying to use Vagrant from your home directory? This is the
|
|
|
|
leading cause of this error message. To resolve this, simply use a
|
|
|
|
different directory. Or, if you really want to run Vagrant from your
|
|
|
|
home directory, modify the `config.vagrant.dotfile_name` configuration
|
|
|
|
key.
|
|
|
|
persisting: "Persisting the VM UUID (%{uuid})..."
|
2010-08-28 02:26:33 +00:00
|
|
|
provision:
|
2011-01-12 06:13:09 +00:00
|
|
|
beginning: "Running provisioner: %{provisioner}..."
|
2010-08-28 02:26:33 +00:00
|
|
|
resume:
|
|
|
|
resuming: Resuming suspended VM...
|
|
|
|
share_folders:
|
|
|
|
creating: Creating shared folders metadata...
|
|
|
|
mounting: Mounting shared folders...
|
|
|
|
mounting_entry: "-- %{name}: %{guest_path}"
|
2010-12-31 08:19:18 +00:00
|
|
|
nomount_entry: "-- %{name}: Automounting disabled."
|
2010-08-28 02:26:33 +00:00
|
|
|
suspend:
|
|
|
|
suspending: Saving VM state and suspending execution...
|
2010-08-28 03:47:21 +00:00
|
|
|
|
|
|
|
box:
|
|
|
|
destroy:
|
2010-08-28 19:23:40 +00:00
|
|
|
destroying: "Deleting box '%{name}'..."
|
2010-08-28 03:47:21 +00:00
|
|
|
download:
|
2010-08-28 19:23:40 +00:00
|
|
|
with: "Downloading with %{class}..."
|
|
|
|
cleaning: "Cleaning up downloaded box..."
|
|
|
|
unknown_type: "Unknown or unsupported URI type given for box download."
|
2010-08-28 03:47:21 +00:00
|
|
|
unpackage:
|
2010-08-28 19:23:40 +00:00
|
|
|
extracting: "Extracting box..."
|
2010-08-28 19:31:55 +00:00
|
|
|
already_exists: |-
|
|
|
|
A box already exists under the name of '%{name}'. This may or may
|
|
|
|
not be the same box you are trying to add. Please use another name
|
|
|
|
or remove the previous box then try to add it again.
|
2011-12-11 05:49:00 +00:00
|
|
|
untar_failure: |-
|
|
|
|
Failed to untar the box file. This is usually because you're
|
|
|
|
attempting to add a box that isn't a valid box file. Please
|
|
|
|
double check that the box file is properly packaged.
|
2010-08-28 03:47:21 +00:00
|
|
|
verify:
|
2010-08-28 19:23:40 +00:00
|
|
|
verifying: "Verifying box..."
|
2010-08-28 19:31:55 +00:00
|
|
|
failed: |-
|
|
|
|
The box file you're attempting to add is invalid. This can be
|
|
|
|
commonly attributed to typos in the path given to the box add
|
|
|
|
command. Another common case of this is invalid packaging of the
|
|
|
|
box itself.
|
2010-08-28 03:50:27 +00:00
|
|
|
|
|
|
|
general:
|
|
|
|
package:
|
|
|
|
packaging: "Packaging additional file: %{file}"
|
2010-09-13 05:01:55 +00:00
|
|
|
compressing: "Compressing package to: %{tar_path}"
|
2010-08-28 20:54:59 +00:00
|
|
|
output_exists: |-
|
|
|
|
The specified file to save the package as already exists. Please
|
2010-09-06 02:33:50 +00:00
|
|
|
remove this file or specify a different file name for outputting.
|
2012-02-11 01:57:23 +00:00
|
|
|
output_is_directory: |-
|
|
|
|
The specified output is a directory. Please specify a path including
|
|
|
|
a filename.
|
2010-08-28 20:54:59 +00:00
|
|
|
requires_directory: |-
|
|
|
|
A directory was not specified to package. This should never happen
|
|
|
|
and is a result of an internal inconsistency.
|
|
|
|
include_file_missing: |-
|
|
|
|
Package include file doesn't exist: %{file}
|
2010-08-28 03:53:04 +00:00
|
|
|
|
2010-09-01 14:22:14 +00:00
|
|
|
downloaders:
|
|
|
|
file:
|
2010-12-31 07:44:30 +00:00
|
|
|
download: "Copying box to temporary location..."
|
2010-09-01 14:22:14 +00:00
|
|
|
file_missing: "The specified path to a file doesn't exist."
|
|
|
|
http:
|
2012-03-31 02:27:30 +00:00
|
|
|
connection_timeout: |-
|
|
|
|
Vagrant timed out while attempting to connect to the HTTP host.
|
|
|
|
Please check your internet and proxy settings and try again.
|
2010-12-31 07:44:30 +00:00
|
|
|
download: "Downloading box: %{url}"
|
2010-09-01 14:22:14 +00:00
|
|
|
socket_error: |-
|
|
|
|
An error occurred while trying to download the specified box. This most
|
|
|
|
often happens if there is no internet connection or the address is
|
|
|
|
invalid.
|
2011-07-06 05:48:02 +00:00
|
|
|
status_error: |-
|
|
|
|
Bad status code: %{status}
|
|
|
|
|
|
|
|
Please verify that the box exists and is accessible. Also verify that
|
|
|
|
this computer is properly connected to the internet.
|
2010-09-01 14:22:14 +00:00
|
|
|
|
2010-08-28 03:53:04 +00:00
|
|
|
hosts:
|
|
|
|
bsd:
|
2012-01-13 07:33:17 +00:00
|
|
|
nfs_export: |-
|
|
|
|
Preparing to edit /etc/exports. Administrator privileges will be required...
|
|
|
|
nfs_prune: |-
|
|
|
|
Pruning invalid NFS exports. Administrator privileges will be required...
|
2010-08-28 03:53:04 +00:00
|
|
|
linux:
|
2012-01-13 07:33:17 +00:00
|
|
|
nfs_export: |-
|
|
|
|
Preparing to edit /etc/exports. Administrator privileges will be required...
|
|
|
|
nfs_prune: |-
|
|
|
|
Pruning invalid NFS exports. Administrator privileges will be required...
|
2011-04-19 16:35:20 +00:00
|
|
|
arch:
|
|
|
|
nfs_export:
|
|
|
|
prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
|
2012-01-30 19:40:29 +00:00
|
|
|
freebsd:
|
|
|
|
nfs_whitespace: |-
|
|
|
|
FreeBSD hosts do not support sharing directories with whitespace in
|
|
|
|
their path. Please adjust your path accordingly.
|
2011-04-19 16:35:20 +00:00
|
|
|
|
2010-08-28 04:02:11 +00:00
|
|
|
provisioners:
|
|
|
|
chef:
|
2012-01-27 18:50:25 +00:00
|
|
|
chef_not_detected: |-
|
|
|
|
The chef binary (either `chef-solo` or `chef-client`) was not found on
|
|
|
|
the VM and is required for chef provisioning. Please verify that chef
|
|
|
|
is installed and that the binary is available on the PATH.
|
2010-08-28 04:02:11 +00:00
|
|
|
json: "Generating chef JSON and uploading..."
|
|
|
|
client_key_folder: "Creating folder to hold client key..."
|
|
|
|
upload_validation_key: "Uploading chef client validation key..."
|
2011-06-27 05:30:39 +00:00
|
|
|
upload_encrypted_data_bag_secret_key: "Uploading chef encrypted data bag secret key..."
|
2010-08-28 04:02:11 +00:00
|
|
|
running_client: "Running chef-client..."
|
2012-01-13 07:07:18 +00:00
|
|
|
running_client_again: "Running chef-client again (failed to converge)..."
|
2010-08-28 04:02:11 +00:00
|
|
|
running_solo: "Running chef-solo..."
|
2012-01-13 07:07:18 +00:00
|
|
|
running_solo_again: "Running chef-solo again (failed to converge)..."
|
2012-01-11 06:36:39 +00:00
|
|
|
invalid_provisioner: |-
|
|
|
|
Vagrant::Provisioners::Chef is not a valid provisioner! Use
|
|
|
|
ChefSolo or ChefClient instead.
|
|
|
|
missing_shared_folders: |-
|
|
|
|
Shared folders that Chef requires are missing on the virtual machine.
|
|
|
|
This is usually due to configuration changing after already booting the
|
|
|
|
machine. The fix is to run a `vagrant reload` so that the proper shared
|
|
|
|
folders will prepared and mounted on the VM.
|
2012-01-13 07:07:18 +00:00
|
|
|
no_convergence: |-
|
|
|
|
Chef never successfully completed! Any errors should be visible in the
|
|
|
|
output above. Please fix your recipes so that they properly complete.
|
2010-09-01 17:47:34 +00:00
|
|
|
not_detected: |-
|
|
|
|
The `%{binary}` binary appears to not be in the PATH of the guest. This
|
|
|
|
could be because the PATH is not properly setup or perhaps chef is not
|
|
|
|
installed on this guest. Chef provisioning can not continue without
|
|
|
|
chef properly installed.
|
2010-09-01 16:36:22 +00:00
|
|
|
server_url_required: |-
|
|
|
|
Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
|
|
|
|
URL of your chef server. Examples include "http://12.12.12.12:4000" and
|
|
|
|
"http://myserver.com:4000" (the port of course can be different, but 4000 is the default)
|
|
|
|
server_validation_key_required: |-
|
|
|
|
Chef server provisioning requires that the `config.chef.validation_key_path` configuration
|
|
|
|
be set to a path on your local machine of the validation key used to register the
|
|
|
|
VM with the chef server.
|
|
|
|
server_validation_key_doesnt_exist: |-
|
|
|
|
The validation key set for `config.chef.validation_key_path` does not exist! This
|
|
|
|
file needs to exist so it can be uploaded to the virtual machine.
|
2010-08-28 04:02:11 +00:00
|
|
|
|
2010-11-29 01:12:31 +00:00
|
|
|
puppet:
|
|
|
|
not_detected: |-
|
|
|
|
The `%{binary}` binary appears to not be in the PATH of the guest. This
|
|
|
|
could be because the PATH is not properly setup or perhaps Puppet is not
|
|
|
|
installed on this guest. Puppet provisioning can not continue without
|
|
|
|
Puppet properly installed.
|
2011-01-14 01:26:37 +00:00
|
|
|
running_puppet: "Running Puppet with %{manifest}..."
|
2012-01-11 17:48:18 +00:00
|
|
|
manifest_missing: |-
|
2012-01-11 17:56:33 +00:00
|
|
|
The configured Puppet manifest is missing. Please specify a path to an
|
|
|
|
existing manifest:
|
|
|
|
|
|
|
|
%{manifest}
|
2011-01-14 01:26:37 +00:00
|
|
|
manifests_path_missing: "The manifests path specified for Puppet does not exist: %{path}"
|
2012-01-11 17:29:30 +00:00
|
|
|
missing_shared_folders: |-
|
|
|
|
Shared folders that Puppet requires are missing on the virtual machine.
|
|
|
|
This is usually due to configuration changing after already booting the
|
|
|
|
machine. The fix is to run a `vagrant reload` so that the proper shared
|
|
|
|
folders will prepared and mounted on the VM.
|
2011-01-14 05:02:26 +00:00
|
|
|
module_path_missing: "The configured module path doesn't exist: %{path}"
|
2010-11-29 01:12:31 +00:00
|
|
|
|
2010-12-17 03:30:54 +00:00
|
|
|
puppet_server:
|
|
|
|
not_detected: |-
|
|
|
|
The `%{binary}` binary appears to not be in the PATH of the guest. This
|
2011-01-07 09:32:21 +00:00
|
|
|
could be because the PATH is not properly setup or perhaps Puppet is not
|
2010-12-17 03:30:54 +00:00
|
|
|
installed on this guest. Puppet provisioning can not continue without
|
|
|
|
Puppet properly installed.
|
|
|
|
running_puppetd: "Running Puppet agent..."
|
|
|
|
|
2011-01-23 19:52:24 +00:00
|
|
|
shell:
|
2011-08-28 07:02:42 +00:00
|
|
|
args_not_string: "Shell provisioner `args` must be a string."
|
2011-07-06 06:09:36 +00:00
|
|
|
path_and_inline_set: "Only one of `path` or `inline` may be set."
|
|
|
|
no_path_or_inline: "One of `path` or `inline` must be set."
|
2011-01-23 19:52:24 +00:00
|
|
|
path_invalid: "`path` for shell provisioner does not exist on the host system: %{path}"
|
|
|
|
upload_path_not_set: "`upload_path` must be set for the shell provisioner."
|
|
|
|
|
2011-12-16 05:07:43 +00:00
|
|
|
guest:
|
2011-01-09 21:34:37 +00:00
|
|
|
base:
|
2012-01-03 15:50:01 +00:00
|
|
|
unsupported_configure_networks: |-
|
|
|
|
Networking features require support that is dependent on the operating
|
|
|
|
system running within the guest virtual machine. Vagrant has built-in support
|
|
|
|
for many operating systems: Debian, Ubuntu, Gentoo, and RedHat. The distro
|
|
|
|
of your VM couldn't be detected or doesn't support networking features.
|
2011-12-31 19:53:04 +00:00
|
|
|
|
|
|
|
Most of the time this is simply due to the fact that no one has contributed
|
2012-01-03 15:50:01 +00:00
|
|
|
back the logic necessary to set this up. Please report a bug as well as the
|
|
|
|
box you're using.
|
2011-01-14 17:51:19 +00:00
|
|
|
unsupported_host_name: |-
|
2011-01-29 01:41:48 +00:00
|
|
|
Setting host name is currently only supported on Debian, Ubuntu and RedHat.
|
|
|
|
If you'd like your guest OS to be supported, please open a ticket on the
|
|
|
|
project.
|
2012-01-03 15:50:01 +00:00
|
|
|
unsupported_nfs: |-
|
|
|
|
Vagrant doesn't support mounting NFS shared folders for your specific
|
|
|
|
guest operating system yet, or possibly couldn't properly detect the
|
|
|
|
operating system on the VM.
|
|
|
|
|
|
|
|
Most of the time this is simply due to the fact that no one has contributed
|
|
|
|
back the logic necessary to set this up. Please report a bug as well as the
|
|
|
|
box you're using.
|
|
|
|
unsupported_halt: |-
|
|
|
|
Vagrant doesn't support graceful shutdowns for your specific
|
|
|
|
guest operating system yet, or possibly couldn't properly detect the
|
|
|
|
operating system on the VM.
|
|
|
|
|
|
|
|
Most of the time this is simply due to the fact that no one has contributed
|
|
|
|
back the logic necessary to set this up. Please report a bug as well as the
|
|
|
|
box you're using.
|
|
|
|
unsupported_shared_folder: |-
|
|
|
|
Vagrant doesn't support mounting shared folders for your specific
|
|
|
|
guest operating system yet, or possibly couldn't properly detect the
|
|
|
|
operating system on the VM.
|
|
|
|
|
|
|
|
Most of the time this is simply due to the fact that no one has contributed
|
|
|
|
back the logic necessary to set this up. Please report a bug as well as the
|
|
|
|
box you're using.
|
2010-08-28 04:02:11 +00:00
|
|
|
linux:
|
2012-01-20 04:14:05 +00:00
|
|
|
guestpath_expand_fail: |-
|
|
|
|
Vagrant failed to determine the shell expansion of the guest path
|
|
|
|
for one of your shared folders. This is an extremely rare error case
|
|
|
|
and most likely indicates an unusual configuration of the guest system.
|
|
|
|
Please report a bug with your Vagrantfile.
|
2010-09-01 17:00:49 +00:00
|
|
|
mount_fail: "Failed to mount shared folders. `vboxsf` was not available."
|
2011-01-09 20:17:46 +00:00
|
|
|
mount_nfs_fail: |-
|
|
|
|
Mounting NFS shared folders failed. This is most often caused by the NFS
|
|
|
|
client software not being installed on the guest machine. Please verify
|
|
|
|
that the NFS client software is properly installed, and consult any resources
|
|
|
|
specific to the linux distro you're using for more information on how to
|
|
|
|
do this.
|