vagrantup 1.0.7 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +91 -0
- data/LICENSE +2 -2
- data/README.md +11 -13
- data/bin/vagrant +29 -5
- data/config/default.rb +14 -9
- data/contrib/bash/completion.sh +3 -0
- data/keys/README.md +3 -3
- data/lib/vagrant.rb +156 -102
- data/lib/vagrant/action.rb +26 -47
- data/lib/vagrant/action/builder.rb +49 -23
- data/lib/vagrant/action/builtin/box_add.rb +85 -0
- data/lib/vagrant/action/builtin/call.rb +67 -0
- data/lib/vagrant/action/builtin/config_validate.rb +30 -0
- data/lib/vagrant/action/builtin/confirm.rb +38 -0
- data/lib/vagrant/action/builtin/env_set.rb +24 -0
- data/lib/vagrant/action/builtin/graceful_halt.rb +73 -0
- data/lib/vagrant/action/builtin/handle_box_url.rb +43 -0
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +117 -0
- data/lib/vagrant/action/builtin/lock.rb +57 -0
- data/lib/vagrant/action/builtin/nfs.rb +117 -0
- data/lib/vagrant/action/builtin/provision.rb +70 -0
- data/lib/vagrant/action/builtin/set_hostname.rb +27 -0
- data/lib/vagrant/action/builtin/ssh_exec.rb +42 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +43 -0
- data/lib/vagrant/action/general/package.rb +19 -18
- data/lib/vagrant/action/hook.rb +103 -0
- data/lib/vagrant/action/runner.rb +21 -5
- data/lib/vagrant/action/warden.rb +20 -9
- data/lib/vagrant/box.rb +75 -26
- data/lib/vagrant/box_collection.rb +301 -35
- data/lib/vagrant/cli.rb +20 -14
- data/lib/vagrant/config.rb +23 -9
- data/lib/vagrant/config/loader.rb +131 -36
- data/lib/vagrant/config/v1.rb +9 -0
- data/lib/vagrant/config/v1/dummy_config.rb +13 -0
- data/lib/vagrant/config/v1/loader.rb +105 -0
- data/lib/vagrant/config/v1/root.rb +60 -0
- data/lib/vagrant/config/v2.rb +9 -0
- data/lib/vagrant/config/v2/dummy_config.rb +13 -0
- data/lib/vagrant/config/v2/loader.rb +141 -0
- data/lib/vagrant/config/v2/root.rb +105 -0
- data/lib/vagrant/config/v2/util.rb +21 -0
- data/lib/vagrant/config/version_base.rb +80 -0
- data/lib/vagrant/downloaders/base.rb +0 -3
- data/lib/vagrant/downloaders/file.rb +10 -4
- data/lib/vagrant/downloaders/http.rb +29 -10
- data/lib/vagrant/environment.rb +447 -240
- data/lib/vagrant/errors.rb +138 -97
- data/lib/vagrant/hosts.rb +3 -12
- data/lib/vagrant/machine.rb +325 -0
- data/lib/vagrant/machine_state.rb +45 -0
- data/lib/vagrant/plugin.rb +3 -78
- data/lib/vagrant/plugin/v1.rb +19 -0
- data/lib/vagrant/plugin/v1/command.rb +169 -0
- data/lib/vagrant/plugin/v1/communicator.rb +98 -0
- data/lib/vagrant/plugin/v1/config.rb +112 -0
- data/lib/vagrant/plugin/v1/errors.rb +15 -0
- data/lib/vagrant/plugin/v1/guest.rb +92 -0
- data/lib/vagrant/plugin/v1/host.rb +66 -0
- data/lib/vagrant/plugin/v1/manager.rb +131 -0
- data/lib/vagrant/plugin/v1/plugin.rb +229 -0
- data/lib/vagrant/plugin/v1/provider.rb +68 -0
- data/lib/vagrant/plugin/v1/provisioner.rb +50 -0
- data/lib/vagrant/plugin/v2.rb +22 -0
- data/lib/vagrant/plugin/v2/command.rb +234 -0
- data/lib/vagrant/plugin/v2/communicator.rb +98 -0
- data/lib/vagrant/plugin/v2/components.rb +29 -0
- data/lib/vagrant/plugin/v2/config.rb +101 -0
- data/lib/vagrant/plugin/v2/errors.rb +15 -0
- data/lib/vagrant/plugin/v2/guest.rb +92 -0
- data/lib/vagrant/plugin/v2/host.rb +66 -0
- data/lib/vagrant/plugin/v2/manager.rb +158 -0
- data/lib/vagrant/plugin/v2/plugin.rb +217 -0
- data/lib/vagrant/plugin/v2/provider.rb +69 -0
- data/lib/vagrant/plugin/v2/provisioner.rb +47 -0
- data/lib/vagrant/registry.rb +43 -17
- data/lib/vagrant/ssh.rb +15 -9
- data/lib/vagrant/ui.rb +7 -5
- data/lib/vagrant/util/is_port_open.rb +1 -1
- data/lib/vagrant/util/platform.rb +19 -0
- data/lib/vagrant/util/retryable.rb +8 -2
- data/lib/vagrant/util/safe_exec.rb +2 -2
- data/lib/vagrant/util/scoped_hash_override.rb +45 -0
- data/lib/vagrant/util/ssh.rb +126 -0
- data/lib/vagrant/util/string_block_editor.rb +75 -0
- data/lib/vagrant/util/subprocess.rb +33 -10
- data/lib/vagrant/util/which.rb +43 -0
- data/lib/vagrant/version.rb +1 -1
- data/plugins/README.md +5 -0
- data/plugins/commands/box/command/add.rb +46 -0
- data/plugins/commands/box/command/list.rb +41 -0
- data/plugins/commands/box/command/remove.rb +37 -0
- data/plugins/commands/box/command/repackage.rb +43 -0
- data/plugins/commands/box/command/root.rb +75 -0
- data/plugins/commands/box/plugin.rb +15 -0
- data/plugins/commands/destroy/command.rb +31 -0
- data/plugins/commands/destroy/plugin.rb +18 -0
- data/plugins/commands/halt/command.rb +33 -0
- data/plugins/commands/halt/plugin.rb +18 -0
- data/{lib/vagrant/command/init.rb → plugins/commands/init/command.rb} +4 -4
- data/plugins/commands/init/plugin.rb +18 -0
- data/plugins/commands/package/command.rb +83 -0
- data/plugins/commands/package/plugin.rb +18 -0
- data/plugins/commands/plugin/action.rb +52 -0
- data/plugins/commands/plugin/action/bundler_check.rb +25 -0
- data/plugins/commands/plugin/action/install_gem.rb +70 -0
- data/plugins/commands/plugin/action/license_plugin.rb +54 -0
- data/plugins/commands/plugin/action/list_plugins.rb +54 -0
- data/plugins/commands/plugin/action/prune_gems.rb +149 -0
- data/plugins/commands/plugin/action/uninstall_plugin.rb +23 -0
- data/plugins/commands/plugin/command/base.rb +22 -0
- data/plugins/commands/plugin/command/install.rb +39 -0
- data/plugins/commands/plugin/command/license.rb +31 -0
- data/plugins/commands/plugin/command/list.rb +28 -0
- data/plugins/commands/plugin/command/root.rb +75 -0
- data/plugins/commands/plugin/command/uninstall.rb +28 -0
- data/plugins/commands/plugin/gem_helper.rb +74 -0
- data/plugins/commands/plugin/plugin.rb +22 -0
- data/plugins/commands/plugin/state_file.rb +57 -0
- data/plugins/commands/provision/command.rb +34 -0
- data/plugins/commands/provision/plugin.rb +18 -0
- data/plugins/commands/reload/command.rb +37 -0
- data/plugins/commands/reload/plugin.rb +18 -0
- data/plugins/commands/resume/command.rb +25 -0
- data/plugins/commands/resume/plugin.rb +17 -0
- data/{lib/vagrant/command/ssh.rb → plugins/commands/ssh/command.rb} +17 -41
- data/plugins/commands/ssh/plugin.rb +17 -0
- data/{lib/vagrant/command/ssh_config.rb → plugins/commands/ssh_config/command.rb} +14 -16
- data/plugins/commands/ssh_config/plugin.rb +18 -0
- data/plugins/commands/status/command.rb +39 -0
- data/plugins/commands/status/plugin.rb +18 -0
- data/plugins/commands/suspend/command.rb +25 -0
- data/plugins/commands/suspend/plugin.rb +18 -0
- data/plugins/commands/up/command.rb +45 -0
- data/plugins/commands/up/plugin.rb +17 -0
- data/{lib/vagrant/command → plugins/commands/up}/start_mixins.rb +6 -6
- data/{lib/vagrant/communication/ssh.rb → plugins/communicators/ssh/communicator.rb} +139 -52
- data/plugins/communicators/ssh/plugin.rb +19 -0
- data/plugins/guests/arch/guest.rb +41 -0
- data/plugins/guests/arch/plugin.rb +15 -0
- data/{lib/vagrant/guest/debian.rb → plugins/guests/debian/guest.rb} +21 -13
- data/plugins/guests/debian/plugin.rb +15 -0
- data/{lib/vagrant/guest/fedora.rb → plugins/guests/fedora/guest.rb} +19 -14
- data/plugins/guests/fedora/plugin.rb +15 -0
- data/plugins/guests/freebsd/config.rb +13 -0
- data/plugins/guests/freebsd/guest.rb +70 -0
- data/plugins/guests/freebsd/plugin.rb +20 -0
- data/plugins/guests/gentoo/guest.rb +51 -0
- data/plugins/guests/gentoo/plugin.rb +15 -0
- data/plugins/guests/linux/config.rb +13 -0
- data/{lib/vagrant/guest/linux.rb → plugins/guests/linux/guest.rb} +35 -34
- data/plugins/guests/linux/plugin.rb +20 -0
- data/plugins/guests/openbsd/guest.rb +13 -0
- data/plugins/guests/openbsd/plugin.rb +15 -0
- data/{lib/vagrant/guest/redhat.rb → plugins/guests/redhat/guest.rb} +22 -15
- data/plugins/guests/redhat/plugin.rb +15 -0
- data/plugins/guests/solaris/config.rb +18 -0
- data/plugins/guests/solaris/guest.rb +73 -0
- data/plugins/guests/solaris/plugin.rb +20 -0
- data/plugins/guests/suse/guest.rb +24 -0
- data/plugins/guests/suse/plugin.rb +15 -0
- data/plugins/guests/ubuntu/guest.rb +44 -0
- data/plugins/guests/ubuntu/plugin.rb +15 -0
- data/{lib/vagrant/hosts/arch.rb → plugins/hosts/arch/host.rb} +18 -5
- data/plugins/hosts/arch/plugin.rb +15 -0
- data/{lib/vagrant/hosts/bsd.rb → plugins/hosts/bsd/host.rb} +16 -11
- data/plugins/hosts/bsd/plugin.rb +15 -0
- data/{lib/vagrant/hosts/fedora.rb → plugins/hosts/fedora/host.rb} +8 -4
- data/plugins/hosts/fedora/plugin.rb +15 -0
- data/{lib/vagrant/hosts/freebsd.rb → plugins/hosts/freebsd/host.rb} +10 -8
- data/plugins/hosts/freebsd/plugin.rb +15 -0
- data/{lib/vagrant/hosts/gentoo.rb → plugins/hosts/gentoo/host.rb} +7 -3
- data/plugins/hosts/gentoo/plugin.rb +15 -0
- data/{lib/vagrant/hosts/linux.rb → plugins/hosts/linux/host.rb} +12 -11
- data/plugins/hosts/linux/plugin.rb +15 -0
- data/{lib/vagrant/hosts/opensuse.rb → plugins/hosts/opensuse/host.rb} +8 -4
- data/plugins/hosts/opensuse/plugin.rb +15 -0
- data/{lib/vagrant/hosts/windows.rb → plugins/hosts/windows/host.rb} +5 -4
- data/plugins/hosts/windows/plugin.rb +15 -0
- data/plugins/kernel_v1/config/nfs.rb +20 -0
- data/plugins/kernel_v1/config/package.rb +17 -0
- data/plugins/kernel_v1/config/ssh.rb +46 -0
- data/plugins/kernel_v1/config/vagrant.rb +31 -0
- data/plugins/kernel_v1/config/vm.rb +184 -0
- data/plugins/kernel_v1/plugin.rb +44 -0
- data/plugins/kernel_v2/config/nfs.rb +10 -0
- data/plugins/kernel_v2/config/package.rb +9 -0
- data/plugins/kernel_v2/config/ssh.rb +35 -0
- data/plugins/kernel_v2/config/vagrant.rb +9 -0
- data/plugins/kernel_v2/config/vm.rb +314 -0
- data/plugins/kernel_v2/config/vm_provisioner.rb +40 -0
- data/plugins/kernel_v2/config/vm_subvm.rb +30 -0
- data/plugins/kernel_v2/plugin.rb +44 -0
- data/plugins/providers/virtualbox/action.rb +308 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/boot.rb +12 -16
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/check_accessible.rb +5 -5
- data/plugins/providers/virtualbox/action/check_created.rb +21 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/check_guest_additions.rb +18 -11
- data/plugins/providers/virtualbox/action/check_running.rb +21 -0
- data/plugins/providers/virtualbox/action/check_virtualbox.rb +22 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/clean_machine_folder.rb +5 -5
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/clear_forwarded_ports.rb +4 -4
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/clear_network_interfaces.rb +4 -4
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/clear_shared_folders.rb +4 -5
- data/plugins/providers/virtualbox/action/created.rb +20 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/customize.rb +7 -7
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/destroy.rb +5 -5
- data/plugins/providers/virtualbox/action/destroy_confirm.rb +17 -0
- data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +16 -0
- data/plugins/providers/virtualbox/action/discard_state.rb +20 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/export.rb +7 -7
- data/plugins/providers/virtualbox/action/forced_halt.rb +25 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/forward_ports.rb +29 -42
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/import.rb +15 -12
- data/plugins/providers/virtualbox/action/is_paused.rb +20 -0
- data/plugins/providers/virtualbox/action/is_running.rb +20 -0
- data/plugins/providers/virtualbox/action/is_saved.rb +20 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/match_mac_address.rb +5 -5
- data/plugins/providers/virtualbox/action/message_not_created.rb +16 -0
- data/plugins/providers/virtualbox/action/message_not_running.rb +16 -0
- data/plugins/providers/virtualbox/action/message_will_not_destroy.rb +17 -0
- data/plugins/providers/virtualbox/action/network.rb +366 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/package.rb +4 -7
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/package_vagrantfile.rb +5 -8
- data/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +35 -0
- data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +51 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/prune_nfs_exports.rb +5 -5
- data/plugins/providers/virtualbox/action/resume.rb +25 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/sane_defaults.rb +41 -32
- data/plugins/providers/virtualbox/action/set_name.rb +40 -0
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/setup_package_files.rb +5 -8
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/share_folders.rb +24 -25
- data/{lib/vagrant/action/vm → plugins/providers/virtualbox/action}/suspend.rb +5 -5
- data/plugins/providers/virtualbox/config.rb +82 -0
- data/plugins/providers/virtualbox/driver/base.rb +344 -0
- data/plugins/providers/virtualbox/driver/meta.rb +142 -0
- data/plugins/providers/virtualbox/driver/version_4_0.rb +485 -0
- data/plugins/providers/virtualbox/driver/version_4_1.rb +485 -0
- data/plugins/providers/virtualbox/driver/version_4_2.rb +475 -0
- data/plugins/providers/virtualbox/model/forwarded_port.rb +58 -0
- data/plugins/providers/virtualbox/plugin.rb +42 -0
- data/plugins/providers/virtualbox/provider.rb +92 -0
- data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +31 -0
- data/plugins/provisioners/chef/config/base.rb +65 -0
- data/plugins/provisioners/chef/config/chef_client.rb +39 -0
- data/plugins/provisioners/chef/config/chef_solo.rb +87 -0
- data/plugins/provisioners/chef/plugin.rb +33 -0
- data/plugins/provisioners/chef/provisioner/base.rb +91 -0
- data/plugins/provisioners/chef/provisioner/chef_client.rb +103 -0
- data/plugins/provisioners/chef/provisioner/chef_solo.rb +182 -0
- data/plugins/provisioners/puppet/config/puppet.rb +70 -0
- data/plugins/provisioners/puppet/config/puppet_server.rb +16 -0
- data/plugins/provisioners/puppet/plugin.rb +33 -0
- data/plugins/provisioners/puppet/provisioner/puppet.rb +110 -0
- data/plugins/provisioners/puppet/provisioner/puppet_server.rb +67 -0
- data/plugins/provisioners/shell/config.rb +46 -0
- data/plugins/provisioners/shell/plugin.rb +23 -0
- data/plugins/provisioners/shell/provisioner.rb +66 -0
- data/templates/commands/init/Vagrantfile.erb +33 -21
- data/templates/commands/ssh_config/config.erb +1 -0
- data/templates/config/messages.erb +14 -0
- data/templates/config/validation_failed.erb +3 -3
- data/templates/guests/arch/network_dhcp.erb +4 -7
- data/templates/guests/arch/network_static.erb +6 -7
- data/templates/guests/debian/network_dhcp.erb +5 -0
- data/templates/locales/en.yml +336 -100
- data/templates/rgloader.rb +9 -0
- data/test/acceptance/support/isolated_environment.rb +3 -2
- data/test/support/tempdir.rb +13 -4
- data/test/unit/base.rb +6 -0
- data/test/unit/support/dummy_provider.rb +16 -0
- data/test/unit/support/isolated_environment.rb +132 -0
- data/test/unit/support/shared/base_context.rb +74 -0
- data/test/unit/vagrant/action/builder_test.rb +88 -48
- data/test/unit/vagrant/action/builtin/call_test.rb +145 -0
- data/test/unit/vagrant/action/builtin/confirm_test.rb +36 -0
- data/test/unit/vagrant/action/builtin/env_set_test.rb +20 -0
- data/test/unit/vagrant/action/builtin/graceful_halt_test.rb +61 -0
- data/test/unit/vagrant/action/builtin/lock_test.rb +98 -0
- data/test/unit/vagrant/action/builtin/ssh_exec_test.rb +57 -0
- data/test/unit/vagrant/action/hook_test.rb +101 -0
- data/test/unit/vagrant/action/runner_test.rb +15 -9
- data/test/unit/vagrant/box_collection_test.rb +219 -38
- data/test/unit/vagrant/box_test.rb +94 -19
- data/test/unit/vagrant/cli_test.rb +27 -0
- data/test/unit/vagrant/config/loader_test.rb +154 -49
- data/test/unit/vagrant/config/v1/dummy_config_test.rb +24 -0
- data/test/unit/vagrant/config/v1/loader_test.rb +145 -0
- data/test/unit/vagrant/config/v1/root_test.rb +40 -0
- data/test/unit/vagrant/config/v2/dummy_config_test.rb +24 -0
- data/test/unit/vagrant/config/v2/loader_test.rb +151 -0
- data/test/unit/vagrant/config/v2/root_test.rb +97 -0
- data/test/unit/vagrant/config/v2/util_test.rb +21 -0
- data/test/unit/vagrant/config_test.rb +40 -1
- data/test/unit/vagrant/downloaders/base_test.rb +0 -4
- data/test/unit/vagrant/downloaders/file_test.rb +21 -9
- data/test/unit/vagrant/downloaders/http_test.rb +4 -0
- data/test/unit/vagrant/environment_test.rb +414 -63
- data/test/unit/vagrant/hosts_test.rb +10 -9
- data/test/unit/vagrant/machine_state_test.rb +26 -0
- data/test/unit/vagrant/machine_test.rb +418 -0
- data/test/unit/vagrant/{command/base_test.rb → plugin/v1/command_test.rb} +2 -9
- data/test/unit/vagrant/plugin/v1/communicator_test.rb +9 -0
- data/test/unit/vagrant/plugin/v1/config_test.rb +50 -0
- data/test/unit/vagrant/plugin/v1/host_test.rb +5 -0
- data/test/unit/vagrant/plugin/v1/manager_test.rb +114 -0
- data/test/unit/vagrant/plugin/v1/plugin_test.rb +267 -0
- data/test/unit/vagrant/plugin/v1/provider_test.rb +18 -0
- data/test/unit/vagrant/plugin/v2/command_test.rb +238 -0
- data/test/unit/vagrant/plugin/v2/communicator_test.rb +9 -0
- data/test/unit/vagrant/plugin/v2/components_test.rb +17 -0
- data/test/unit/vagrant/plugin/v2/config_test.rb +60 -0
- data/test/unit/vagrant/plugin/v2/host_test.rb +5 -0
- data/test/unit/vagrant/plugin/v2/manager_test.rb +157 -0
- data/test/unit/vagrant/plugin/v2/plugin_test.rb +287 -0
- data/test/unit/vagrant/plugin/v2/provider_test.rb +18 -0
- data/test/unit/vagrant/registry_test.rb +59 -5
- data/test/unit/vagrant/util/scoped_hash_override_test.rb +48 -0
- data/test/unit/vagrant/util/ssh_test.rb +30 -0
- data/test/unit/vagrant/util/string_block_editor_test.rb +98 -0
- data/test/unit/vagrant/util/which_test.rb +43 -0
- data/test/unit/vagrant_test.rb +42 -13
- data/vagrant.gemspec +6 -7
- data/vagrant.gemspecbak +6 -7
- metadata +273 -358
- data/lib/vagrant/action/box/destroy.rb +0 -25
- data/lib/vagrant/action/box/download.rb +0 -84
- data/lib/vagrant/action/box/package.rb +0 -19
- data/lib/vagrant/action/box/unpackage.rb +0 -61
- data/lib/vagrant/action/box/verify.rb +0 -23
- data/lib/vagrant/action/builtin.rb +0 -171
- data/lib/vagrant/action/env/set.rb +0 -21
- data/lib/vagrant/action/environment.rb +0 -12
- data/lib/vagrant/action/general/check_virtualbox.rb +0 -28
- data/lib/vagrant/action/general/validate.rb +0 -18
- data/lib/vagrant/action/vm/check_box.rb +0 -33
- data/lib/vagrant/action/vm/check_port_collisions.rb +0 -89
- data/lib/vagrant/action/vm/default_name.rb +0 -22
- data/lib/vagrant/action/vm/destroy_unused_network_interfaces.rb +0 -20
- data/lib/vagrant/action/vm/discard_state.rb +0 -22
- data/lib/vagrant/action/vm/halt.rb +0 -32
- data/lib/vagrant/action/vm/host_name.rb +0 -21
- data/lib/vagrant/action/vm/network.rb +0 -403
- data/lib/vagrant/action/vm/nfs.rb +0 -196
- data/lib/vagrant/action/vm/provision.rb +0 -61
- data/lib/vagrant/action/vm/provisioner_cleanup.rb +0 -26
- data/lib/vagrant/action/vm/resume.rb +0 -20
- data/lib/vagrant/command.rb +0 -24
- data/lib/vagrant/command/base.rb +0 -167
- data/lib/vagrant/command/box.rb +0 -58
- data/lib/vagrant/command/box_add.rb +0 -37
- data/lib/vagrant/command/box_list.rb +0 -28
- data/lib/vagrant/command/box_remove.rb +0 -27
- data/lib/vagrant/command/box_repackage.rb +0 -27
- data/lib/vagrant/command/destroy.rb +0 -64
- data/lib/vagrant/command/gem.rb +0 -39
- data/lib/vagrant/command/halt.rb +0 -39
- data/lib/vagrant/command/package.rb +0 -75
- data/lib/vagrant/command/provision.rb +0 -40
- data/lib/vagrant/command/reload.rb +0 -39
- data/lib/vagrant/command/resume.rb +0 -33
- data/lib/vagrant/command/status.rb +0 -36
- data/lib/vagrant/command/suspend.rb +0 -33
- data/lib/vagrant/command/up.rb +0 -40
- data/lib/vagrant/communication.rb +0 -7
- data/lib/vagrant/communication/base.rb +0 -56
- data/lib/vagrant/config/base.rb +0 -82
- data/lib/vagrant/config/error_recorder.rb +0 -19
- data/lib/vagrant/config/nfs.rb +0 -8
- data/lib/vagrant/config/package.rb +0 -7
- data/lib/vagrant/config/ssh.rb +0 -27
- data/lib/vagrant/config/top.rb +0 -72
- data/lib/vagrant/config/vagrant.rb +0 -14
- data/lib/vagrant/config/vm.rb +0 -168
- data/lib/vagrant/config/vm/provisioner.rb +0 -52
- data/lib/vagrant/config/vm/sub_vm.rb +0 -17
- data/lib/vagrant/data_store.rb +0 -92
- data/lib/vagrant/driver.rb +0 -8
- data/lib/vagrant/driver/virtualbox.rb +0 -134
- data/lib/vagrant/driver/virtualbox_4_0.rb +0 -459
- data/lib/vagrant/driver/virtualbox_4_1.rb +0 -459
- data/lib/vagrant/driver/virtualbox_4_2.rb +0 -606
- data/lib/vagrant/driver/virtualbox_base.rb +0 -326
- data/lib/vagrant/guest.rb +0 -18
- data/lib/vagrant/guest/arch.rb +0 -56
- data/lib/vagrant/guest/base.rb +0 -99
- data/lib/vagrant/guest/freebsd.rb +0 -86
- data/lib/vagrant/guest/gentoo.rb +0 -46
- data/lib/vagrant/guest/linux/config.rb +0 -19
- data/lib/vagrant/guest/linux/error.rb +0 -9
- data/lib/vagrant/guest/openbsd.rb +0 -20
- data/lib/vagrant/guest/solaris.rb +0 -118
- data/lib/vagrant/guest/suse.rb +0 -17
- data/lib/vagrant/guest/ubuntu.rb +0 -23
- data/lib/vagrant/hosts/base.rb +0 -66
- data/lib/vagrant/provisioners.rb +0 -12
- data/lib/vagrant/provisioners/base.rb +0 -44
- data/lib/vagrant/provisioners/chef.rb +0 -168
- data/lib/vagrant/provisioners/chef_client.rb +0 -132
- data/lib/vagrant/provisioners/chef_solo.rb +0 -234
- data/lib/vagrant/provisioners/puppet.rb +0 -176
- data/lib/vagrant/provisioners/puppet_server.rb +0 -78
- data/lib/vagrant/provisioners/shell.rb +0 -103
- data/lib/vagrant/vm.rb +0 -195
- data/test/buildbot/README.md +0 -72
- data/test/buildbot/buildbot_config/__init__.py +0 -0
- data/test/buildbot/buildbot_config/config/__init__.py +0 -0
- data/test/buildbot/buildbot_config/config/loader.py +0 -24
- data/test/buildbot/buildbot_config/config/master.py +0 -24
- data/test/buildbot/buildbot_config/config/slave.py +0 -22
- data/test/buildbot/buildbot_config/master/__init__.py +0 -6
- data/test/buildbot/buildbot_config/master/builders.py +0 -78
- data/test/buildbot/buildbot_config/master/buildsteps.py +0 -100
- data/test/buildbot/buildbot_config/master/change_sources.py +0 -8
- data/test/buildbot/buildbot_config/master/schedulers.py +0 -32
- data/test/buildbot/buildbot_config/master/slaves.py +0 -60
- data/test/buildbot/buildbot_config/master/status.py +0 -52
- data/test/buildbot/master/Makefile.sample +0 -28
- data/test/buildbot/master/buildbot.tac +0 -36
- data/test/buildbot/master/master.cfg +0 -67
- data/test/buildbot/master/public_html/bg_gradient.jpg +0 -0
- data/test/buildbot/master/public_html/default.css +0 -545
- data/test/buildbot/master/public_html/favicon.ico +0 -0
- data/test/buildbot/master/public_html/robots.txt +0 -10
- data/test/buildbot/master/public_html/static/css/bootstrap-1.4.0.min.css +0 -356
- data/test/buildbot/master/public_html/static/css/prettify.css +0 -97
- data/test/buildbot/master/public_html/static/css/syntax.css +0 -60
- data/test/buildbot/master/public_html/static/css/vagrant.base.css +0 -205
- data/test/buildbot/master/public_html/static/images/base_box_mac.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/getting-started/success.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/icons/error.png +0 -0
- data/test/buildbot/master/public_html/static/images/vagrant_chilling.png +0 -0
- data/test/buildbot/master/public_html/static/images/vagrant_holding.png +0 -0
- data/test/buildbot/master/public_html/static/images/vagrant_looking.png +0 -0
- data/test/buildbot/master/public_html/static/images/windows/alter_path.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/edit_path.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/environment_variables_button.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/port_and_ppk_path.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/ppk_selection.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/putty_first_screen.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/save_result.jpg +0 -0
- data/test/buildbot/master/public_html/static/images/windows/vbox_manage_default_location.jpg +0 -0
- data/test/buildbot/master/public_html/static/js/bootstrap-tabs.js +0 -80
- data/test/buildbot/master/public_html/static/js/jquery-1.7.min.js +0 -4
- data/test/buildbot/master/templates/authfail.html +0 -9
- data/test/buildbot/master/templates/build.html +0 -205
- data/test/buildbot/master/templates/builder.html +0 -118
- data/test/buildbot/master/templates/builders.html +0 -33
- data/test/buildbot/master/templates/buildslave.html +0 -72
- data/test/buildbot/master/templates/buildslaves.html +0 -70
- data/test/buildbot/master/templates/change.html +0 -15
- data/test/buildbot/master/templates/layouts/base.html +0 -58
- data/test/buildbot/master/templates/macros/box.html +0 -37
- data/test/buildbot/master/templates/macros/build_line.html +0 -50
- data/test/buildbot/master/templates/macros/change.html +0 -81
- data/test/buildbot/master/templates/macros/forms.html +0 -300
- data/test/buildbot/master/templates/root.html +0 -42
- data/test/buildbot/master/templates/waterfall.html +0 -53
- data/test/buildbot/requirements.txt +0 -4
- data/test/buildbot/scripts/deploy.sh +0 -38
- data/test/buildbot/scripts/setup.sh +0 -107
- data/test/buildbot/slave/buildbot.tac +0 -43
- data/test/buildbot/slave/info/admin +0 -1
- data/test/buildbot/slave/info/host +0 -1
- data/test/buildbot/tests/__init__.py +0 -0
- data/test/buildbot/tests/master/__init__.py +0 -0
- data/test/buildbot/tests/master/test_slaves.py +0 -41
- data/test/buildbot/vendor/choices-0.4.0.tar.gz +0 -0
- data/test/unit/vagrant/action/environment_test.rb +0 -16
- data/test/unit/vagrant/config/base_test.rb +0 -48
- data/test/unit/vagrant/config/ssh_test.rb +0 -17
- data/test/unit/vagrant/config/top_test.rb +0 -69
- data/test/unit/vagrant/config/vm_test.rb +0 -71
- data/test/unit/vagrant/data_store_test.rb +0 -79
- data/test/unit_legacy/locales/en.yml +0 -8
- data/test/unit_legacy/test_helper.rb +0 -32
- data/test/unit_legacy/vagrant/action/box/destroy_test.rb +0 -18
- data/test/unit_legacy/vagrant/action/box/download_test.rb +0 -125
- data/test/unit_legacy/vagrant/action/box/package_test.rb +0 -25
- data/test/unit_legacy/vagrant/action/box/unpackage_test.rb +0 -84
- data/test/unit_legacy/vagrant/action/box/verify_test.rb +0 -30
- data/test/unit_legacy/vagrant/action/env/set_test.rb +0 -24
- data/test/unit_legacy/vagrant/action/general/package_test.rb +0 -268
- data/test/unit_legacy/vagrant/action/general/validate_test.rb +0 -31
- data/test/unit_legacy/vagrant/action/vm/boot_test.rb +0 -66
- data/test/unit_legacy/vagrant/action/vm/check_accessible_test.rb +0 -61
- data/test/unit_legacy/vagrant/action/vm/check_box_test.rb +0 -61
- data/test/unit_legacy/vagrant/action/vm/check_guest_additions_test.rb +0 -9
- data/test/unit_legacy/vagrant/action/vm/clean_machine_folder_test.rb +0 -84
- data/test/unit_legacy/vagrant/action/vm/clear_forwarded_ports_test.rb +0 -52
- data/test/unit_legacy/vagrant/action/vm/clear_nfs_exports_test.rb +0 -22
- data/test/unit_legacy/vagrant/action/vm/clear_shared_folders_test.rb +0 -40
- data/test/unit_legacy/vagrant/action/vm/customize_test.rb +0 -37
- data/test/unit_legacy/vagrant/action/vm/destroy_test.rb +0 -25
- data/test/unit_legacy/vagrant/action/vm/destroy_unused_network_interfaces_test.rb +0 -49
- data/test/unit_legacy/vagrant/action/vm/discard_state_test.rb +0 -45
- data/test/unit_legacy/vagrant/action/vm/export_test.rb +0 -107
- data/test/unit_legacy/vagrant/action/vm/forward_ports_helpers_test.rb +0 -77
- data/test/unit_legacy/vagrant/action/vm/forward_ports_test.rb +0 -197
- data/test/unit_legacy/vagrant/action/vm/halt_test.rb +0 -79
- data/test/unit_legacy/vagrant/action/vm/host_name_test.rb +0 -36
- data/test/unit_legacy/vagrant/action/vm/import_test.rb +0 -66
- data/test/unit_legacy/vagrant/action/vm/match_mac_address_test.rb +0 -40
- data/test/unit_legacy/vagrant/action/vm/modify_test.rb +0 -38
- data/test/unit_legacy/vagrant/action/vm/network_test.rb +0 -286
- data/test/unit_legacy/vagrant/action/vm/nfs_helpers_test.rb +0 -26
- data/test/unit_legacy/vagrant/action/vm/nfs_test.rb +0 -260
- data/test/unit_legacy/vagrant/action/vm/package_test.rb +0 -25
- data/test/unit_legacy/vagrant/action/vm/package_vagrantfile_test.rb +0 -46
- data/test/unit_legacy/vagrant/action/vm/provision_test.rb +0 -65
- data/test/unit_legacy/vagrant/action/vm/provisioner_cleanup_test.rb +0 -56
- data/test/unit_legacy/vagrant/action/vm/resume_test.rb +0 -35
- data/test/unit_legacy/vagrant/action/vm/share_folders_test.rb +0 -144
- data/test/unit_legacy/vagrant/action/vm/suspend_test.rb +0 -35
- data/test/unit_legacy/vagrant/action_test.rb +0 -89
- data/test/unit_legacy/vagrant/box_collection_test.rb +0 -45
- data/test/unit_legacy/vagrant/box_test.rb +0 -74
- data/test/unit_legacy/vagrant/cli_test.rb +0 -35
- data/test/unit_legacy/vagrant/command/base_test.rb +0 -23
- data/test/unit_legacy/vagrant/command/group_base_test.rb +0 -15
- data/test/unit_legacy/vagrant/command/helpers_test.rb +0 -88
- data/test/unit_legacy/vagrant/command/init_test.rb +0 -10
- data/test/unit_legacy/vagrant/command/package_test.rb +0 -27
- data/test/unit_legacy/vagrant/config/base_test.rb +0 -52
- data/test/unit_legacy/vagrant/config/error_recorder_test.rb +0 -18
- data/test/unit_legacy/vagrant/config/ssh_test.rb +0 -12
- data/test/unit_legacy/vagrant/config/vagrant_test.rb +0 -35
- data/test/unit_legacy/vagrant/config/vm/provisioner_test.rb +0 -92
- data/test/unit_legacy/vagrant/config/vm_test.rb +0 -47
- data/test/unit_legacy/vagrant/config_test.rb +0 -148
- data/test/unit_legacy/vagrant/downloaders/http_test.rb +0 -93
- data/test/unit_legacy/vagrant/environment_test.rb +0 -539
- data/test/unit_legacy/vagrant/errors_test.rb +0 -42
- data/test/unit_legacy/vagrant/hosts/base_test.rb +0 -46
- data/test/unit_legacy/vagrant/hosts/bsd_test.rb +0 -53
- data/test/unit_legacy/vagrant/hosts/linux_test.rb +0 -54
- data/test/unit_legacy/vagrant/plugin_test.rb +0 -9
- data/test/unit_legacy/vagrant/provisioners/base_test.rb +0 -63
- data/test/unit_legacy/vagrant/provisioners/chef_client_test.rb +0 -190
- data/test/unit_legacy/vagrant/provisioners/chef_solo_test.rb +0 -115
- data/test/unit_legacy/vagrant/provisioners/chef_test.rb +0 -209
- data/test/unit_legacy/vagrant/provisioners/puppet_server_test.rb +0 -68
- data/test/unit_legacy/vagrant/provisioners/puppet_test.rb +0 -182
- data/test/unit_legacy/vagrant/provisioners/shell_test.rb +0 -79
- data/test/unit_legacy/vagrant/ssh/session_test.rb +0 -40
- data/test/unit_legacy/vagrant/ssh_test.rb +0 -304
- data/test/unit_legacy/vagrant/systems/base_test.rb +0 -18
- data/test/unit_legacy/vagrant/systems/linux_test.rb +0 -104
- data/test/unit_legacy/vagrant/util/busy_test.rb +0 -106
- data/test/unit_legacy/vagrant/util/counter_test.rb +0 -29
- data/test/unit_legacy/vagrant/util/platform_test.rb +0 -18
- data/test/unit_legacy/vagrant/util/stacked_proc_runner_test.rb +0 -43
- data/test/unit_legacy/vagrant/util/template_renderer_test.rb +0 -145
- data/test/unit_legacy/vagrant/vm_test.rb +0 -300
- data/vagrant-1.1.4.gem +0 -0
- data/vagrantup-0.1.0.gem +0 -0
- data/vagrantup-0.1.1.gem +0 -0
- data/vagrantup-0.1.2.gem +0 -0
- data/vagrantup-0.1.3.gem +0 -0
- data/vagrantup-0.1.4.gem +0 -0
- data/vagrantup-0.2.0.gem +0 -0
- data/vagrantup-0.3.0.gem +0 -0
- data/vagrantup-0.3.1.gem +0 -0
- data/vagrantup-0.3.2.gem +0 -0
- data/vagrantup-0.3.3.gem +0 -0
- data/vagrantup-0.3.4.gem +0 -0
- data/vagrantup-0.4.0.gem +0 -0
- data/vagrantup-0.4.1.gem +0 -0
- data/vagrantup-0.4.3.dev.gem +0 -0
- data/vagrantup-0.5.0.gem +0 -0
- data/vagrantup-0.5.1.gem +0 -0
- data/vagrantup-0.5.2.gem +0 -0
- data/vagrantup-0.5.3.gem +0 -0
- data/vagrantup-0.5.4.gem +0 -0
- data/vagrantup-0.6.0.gem +0 -0
- data/vagrantup-0.6.1.gem +0 -0
- data/vagrantup-0.6.2.gem +0 -0
- data/vagrantup-0.6.3.gem +0 -0
- data/vagrantup-0.6.4.gem +0 -0
- data/vagrantup-0.6.5.gem +0 -0
- data/vagrantup-0.6.6.gem +0 -0
- data/vagrantup-0.6.7.gem +0 -0
- data/vagrantup-0.6.8.gem +0 -0
- data/vagrantup-0.6.9.gem +0 -0
- data/vagrantup-0.7.0.gem +0 -0
- data/vagrantup-0.7.1.gem +0 -0
- data/vagrantup-0.7.2.gem +0 -0
- data/vagrantup-0.7.3.gem +0 -0
- data/vagrantup-0.7.4.gem +0 -0
- data/vagrantup-0.7.5.gem +0 -0
- data/vagrantup-0.7.6.gem +0 -0
- data/vagrantup-0.7.7.gem +0 -0
- data/vagrantup-0.7.8.gem +0 -0
- data/vagrantup-0.8.0.gem +0 -0
- data/vagrantup-0.8.1.gem +0 -0
- data/vagrantup-0.8.10.gem +0 -0
- data/vagrantup-0.8.2.gem +0 -0
- data/vagrantup-0.8.3.gem +0 -0
- data/vagrantup-0.8.4.gem +0 -0
- data/vagrantup-0.8.5.gem +0 -0
- data/vagrantup-0.8.6.gem +0 -0
- data/vagrantup-0.8.7.gem +0 -0
- data/vagrantup-0.8.8.gem +0 -0
- data/vagrantup-0.8.9.gem +0 -0
- data/vagrantup-0.9.0.gem +0 -0
- data/vagrantup-0.9.1.gem +0 -0
- data/vagrantup-0.9.2.gem +0 -0
- data/vagrantup-0.9.3.gem +0 -0
- data/vagrantup-0.9.4.gem +0 -0
- data/vagrantup-0.9.5.gem +0 -0
- data/vagrantup-0.9.6.gem +0 -0
- data/vagrantup-0.9.7.gem +0 -0
- data/vagrantup-0.9.99.1.gem +0 -0
- data/vagrantup-0.9.99.2.gem +0 -0
- data/vagrantup-1.0.0.gem +0 -0
- data/vagrantup-1.0.1.gem +0 -0
- data/vagrantup-1.0.2.gem +0 -0
- data/vagrantup-1.0.3.gem +0 -0
- data/vagrantup-1.0.4.gem +0 -0
- data/vagrantup-1.0.5.gem +0 -0
- data/vagrantup-1.0.6.gem +0 -0
- data/vagrantup-1.1.4.gem +0 -0
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
netmask=
|
|
6
|
-
gateway=
|
|
7
|
-
#VAGRANT-END
|
|
1
|
+
CONNECTION='ethernet'
|
|
2
|
+
DESCRIPTION='A basic dhcp ethernet connection'
|
|
3
|
+
INTERFACE='eth<%= options[:interface] %>'
|
|
4
|
+
IP='dhcp'
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
#VAGRANT-END
|
|
1
|
+
CONNECTION='ethernet'
|
|
2
|
+
DESCRIPTION='A basic static ethernet connection'
|
|
3
|
+
INTERFACE='eth<%= options[:interface] %>'
|
|
4
|
+
IP='static'
|
|
5
|
+
ADDR='<%= options[:ip]%>'
|
|
6
|
+
NETMASK='<%= options[:netmask] %>'
|
|
@@ -2,5 +2,10 @@
|
|
|
2
2
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
|
3
3
|
auto eth<%= options[:interface] %>
|
|
4
4
|
iface eth<%= options[:interface] %> inet dhcp
|
|
5
|
+
<% if !options[:use_dhcp_assigned_default_route] %>
|
|
5
6
|
post-up route del default dev $IFACE
|
|
7
|
+
<% else %>
|
|
8
|
+
# needed as some newer distribution do not properly load routes, ubuntu 12.04
|
|
9
|
+
post-up dhclient $IFACE
|
|
10
|
+
<% end %>
|
|
6
11
|
#VAGRANT-END
|
data/templates/locales/en.yml
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
en:
|
|
2
2
|
vagrant:
|
|
3
3
|
general:
|
|
4
|
+
config_upgrade_messages: |-
|
|
5
|
+
There were warnings and/or errors while loading your Vagrantfile.
|
|
6
|
+
Your Vagrantfile was written for an earlier version of Vagrant,
|
|
7
|
+
and while Vagrant does the best it can to remain backwards
|
|
8
|
+
compatible, there are some cases where things have changed
|
|
9
|
+
significantly enough to warrant a message. These messages are
|
|
10
|
+
shown below.
|
|
11
|
+
|
|
12
|
+
%{output}
|
|
4
13
|
moving_home_dir: "Moving old Vagrant home directory to new location: %{directory}"
|
|
5
14
|
home_dir_migration_failed: |-
|
|
6
15
|
Both an old and new Vagrant home directory exist. Only the new one will
|
|
@@ -9,13 +18,50 @@ en:
|
|
|
9
18
|
|
|
10
19
|
Old: %{old}
|
|
11
20
|
New: %{new}
|
|
21
|
+
not_in_installer: |-
|
|
22
|
+
You appear to be running Vagrant outside of the official installers.
|
|
23
|
+
Note that the installers are what ensure that Vagrant has all required
|
|
24
|
+
dependencies, and Vagrant assumes that these dependencies exist. By
|
|
25
|
+
running outside of the installer environment, Vagrant may not function
|
|
26
|
+
properly. To remove this warning, install Vagrant using one of the
|
|
27
|
+
official packages from vagrantup.com.
|
|
28
|
+
upgraded_v1_dotfile: |-
|
|
29
|
+
A Vagrant 1.0.x state file was found for this environment. Vagrant has
|
|
30
|
+
gone ahead and auto-upgraded this to the latest format. Everything
|
|
31
|
+
should continue working as normal. Beware, however, that older versions
|
|
32
|
+
of Vagrant may no longer be used with this environment.
|
|
33
|
+
|
|
34
|
+
However, in case anything went wrong, the old dotfile was backed up
|
|
35
|
+
to the location below. If everything is okay, it is safe to remove
|
|
36
|
+
this backup.
|
|
37
|
+
|
|
38
|
+
Backup: %{backup_path}
|
|
12
39
|
|
|
13
40
|
#-------------------------------------------------------------------------------
|
|
14
41
|
# Translations for exception classes
|
|
15
42
|
#-------------------------------------------------------------------------------
|
|
16
43
|
errors:
|
|
44
|
+
active_machine_with_different_provider: |-
|
|
45
|
+
An active machine was found with a different provider. Vagrant
|
|
46
|
+
currently allows each machine to be brought up with only a single
|
|
47
|
+
provider at a time. A future version will remove this limitation.
|
|
48
|
+
Until then, please destroy the existing machine to up with a new
|
|
49
|
+
provider.
|
|
50
|
+
|
|
51
|
+
Machine name: %{name}
|
|
52
|
+
Active provider: %{active_provider}
|
|
53
|
+
Requested provider: %{requested_provider}
|
|
17
54
|
base_vm_not_found: The base VM with the name '%{name}' was not found.
|
|
18
55
|
box_not_found: Box '%{name}' could not be found.
|
|
56
|
+
box_provider_doesnt_match: |-
|
|
57
|
+
The box you attempted to add doesn't match the provider you specified.
|
|
58
|
+
|
|
59
|
+
Provider expected: %{expected}
|
|
60
|
+
Provider of box: %{actual}
|
|
61
|
+
box_upgrade_required: |-
|
|
62
|
+
The box '%{name}' is still stored on disk in the Vagrant 1.0.x
|
|
63
|
+
format. This box must be upgraded in order to work properly with
|
|
64
|
+
this version of Vagrant.
|
|
19
65
|
cli_invalid_options: |-
|
|
20
66
|
An invalid option was specified. The help for this command
|
|
21
67
|
is available below.
|
|
@@ -26,16 +72,22 @@ en:
|
|
|
26
72
|
available below.
|
|
27
73
|
|
|
28
74
|
%{help}
|
|
29
|
-
|
|
30
|
-
There
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
%{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
75
|
+
config_invalid: |-
|
|
76
|
+
There are errors in the configuration of this machine. Please fix
|
|
77
|
+
the following errors and try again:
|
|
78
|
+
|
|
79
|
+
%{errors}
|
|
80
|
+
config_upgrade_errors: |-
|
|
81
|
+
Because there were errors upgrading your Vagrantfiles, Vagrant
|
|
82
|
+
can no longer continue. Please fix the errors above and try again.
|
|
83
|
+
copy_private_key_failed: |-
|
|
84
|
+
Vagrant failed to copy the default insecure private key into your
|
|
85
|
+
home directory. This is usually caused by a permissions error.
|
|
86
|
+
Please make sure the permissions of the source is readable and
|
|
87
|
+
the destination is writable.
|
|
88
|
+
|
|
89
|
+
Source: %{source}
|
|
90
|
+
Destination: %{destination}
|
|
39
91
|
destroy_requires_force: |-
|
|
40
92
|
Destroy doesn't have a TTY to ask for confirmation. Please pass the
|
|
41
93
|
`--force` flag to force a destroy, otherwise attach a TTY so that
|
|
@@ -46,21 +98,39 @@ en:
|
|
|
46
98
|
this command in another directory. If you aren't in a home directory,
|
|
47
99
|
then please rename ".vagrant" to something else, or configure Vagrant
|
|
48
100
|
to use another filename by modifying `config.vagrant.dotfile_name`.
|
|
101
|
+
dotfile_upgrade_json_error: |-
|
|
102
|
+
A Vagrant 1.0.x local state file was found. Vagrant is able to upgrade
|
|
103
|
+
this to the latest format automatically, however various checks are
|
|
104
|
+
put in place to verify data isn't incorrectly deleted. In this case,
|
|
105
|
+
the old state file was not valid JSON. Vagrant 1.0.x would store state
|
|
106
|
+
as valid JSON, meaning that this file was probably tampered with or
|
|
107
|
+
manually edited. Vagrant's auto-upgrade process cannot continue in this
|
|
108
|
+
case.
|
|
109
|
+
|
|
110
|
+
In most cases, this can be resolve by simply removing the state file.
|
|
111
|
+
Note however though that if Vagrant was previously managing virtual
|
|
112
|
+
machines, they may be left in an "orphan" state. That is, if they are
|
|
113
|
+
running or exist, they'll have to manually be removed.
|
|
114
|
+
|
|
115
|
+
If you're unsure what to do, ask the Vagrant mailing list or contact
|
|
116
|
+
support.
|
|
117
|
+
|
|
118
|
+
State file path: %{state_file}
|
|
49
119
|
environment_locked: |-
|
|
50
120
|
An instance of Vagrant is already running. Only one instance of Vagrant
|
|
51
121
|
may run at any given time to avoid problems with VirtualBox inconsistencies
|
|
52
122
|
occurring. Please wait for the other instance of Vagrant to end and then
|
|
53
123
|
try again.
|
|
54
124
|
gem_command_in_bundler: |-
|
|
55
|
-
You cannot run the `vagrant
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
125
|
+
You cannot run the `vagrant plugin` command while in a bundler environment.
|
|
126
|
+
This should generally never happen unless Vagrant is installed outside
|
|
127
|
+
of the official installers or another gem is wrongly attempting to
|
|
128
|
+
use Vagrant internals directly. Please properly install Vagrant to
|
|
129
|
+
fix this. If this error persists, please contact support.
|
|
60
130
|
guest:
|
|
61
131
|
invalid_class: |-
|
|
62
|
-
The specified guest class does not inherit from
|
|
63
|
-
The
|
|
132
|
+
The specified guest class does not inherit from a proper guest
|
|
133
|
+
component class. The guest class must inherit from this.
|
|
64
134
|
|
|
65
135
|
The specified guest class was: %{guest}
|
|
66
136
|
unknown_type: |-
|
|
@@ -74,33 +144,91 @@ en:
|
|
|
74
144
|
directory that Vagrant uses must be both readable and writable.
|
|
75
145
|
|
|
76
146
|
You specified: %{home_path}
|
|
77
|
-
incompatible_with_future_version: |-
|
|
78
|
-
It appears that you've ran a newer version of Vagrant on this
|
|
79
|
-
computer. Unfortunately, newer versions of Vagrant change internal
|
|
80
|
-
directory layouts that cause older versions to break. This version
|
|
81
|
-
of Vagrant cannot properly run.
|
|
82
|
-
|
|
83
|
-
If you'd like to start from a clean state, please remove the
|
|
84
|
-
Vagrant state directory: %{path}
|
|
85
|
-
|
|
86
|
-
Warning that this will remove all your boxes and potentially corrupt
|
|
87
|
-
existing Vagrant environments that were running based on the future
|
|
88
|
-
version.
|
|
89
147
|
interrupted: |-
|
|
90
148
|
Vagrant exited after cleanup due to external interrupt.
|
|
149
|
+
local_data_dir_not_accessible: |-
|
|
150
|
+
The directory Vagrant will use to store local environment-specific
|
|
151
|
+
state is not accessible. The directory specified as the local data
|
|
152
|
+
directory must be both readable and writable for the user that is
|
|
153
|
+
running Vagrant.
|
|
154
|
+
|
|
155
|
+
Local data directory: %{local_data_path}
|
|
156
|
+
machine_guest_not_ready: |-
|
|
157
|
+
Guest-specific operations were attempted on a machine that is not
|
|
158
|
+
ready for guest communication. This should not happen and a bug
|
|
159
|
+
should be reported.
|
|
160
|
+
machine_not_found: |-
|
|
161
|
+
The machine with the name '%{name}' was not found configured for
|
|
162
|
+
this Vagrant environment.
|
|
163
|
+
machine_state_invalid: |-
|
|
164
|
+
An internal error has occurred! The provider of the machine you're
|
|
165
|
+
trying to work with reported an invalid state. This is a bug with
|
|
166
|
+
the provider you're using, and not with Vagrant itself or with
|
|
167
|
+
any configuration you may have done. Please report this bug to
|
|
168
|
+
the proper location.
|
|
91
169
|
multi_vm_required: |-
|
|
92
170
|
A multi-vm environment is required for name specification to this command.
|
|
93
171
|
multi_vm_target_required: |-
|
|
94
172
|
This command requires a specific VM name to target in a multi-VM environment.
|
|
173
|
+
nfs_no_guest_ip: |-
|
|
174
|
+
No guest IP was given to the Vagrant core NFS helper. This is an
|
|
175
|
+
internal error that should be reported as a bug.
|
|
176
|
+
nfs_no_host_ip: |-
|
|
177
|
+
No host IP was given to the Vagrant core NFS helper. This is
|
|
178
|
+
an internal error that should be reported as a bug.
|
|
95
179
|
no_env: |-
|
|
96
180
|
A Vagrant environment is required to run this command. Run `vagrant init`
|
|
97
|
-
to set one up
|
|
181
|
+
to set one up in this directory, or change to a directory with a
|
|
182
|
+
Vagrantfile and try again.
|
|
183
|
+
plugin_gem_error: |-
|
|
184
|
+
An error occurred within RubyGems, the underlying system used to
|
|
185
|
+
manage Vagrant plugins. The output of the errors are shown below:
|
|
186
|
+
|
|
187
|
+
%{output}
|
|
188
|
+
plugin_install_bad_entry_point: |-
|
|
189
|
+
Attempting to load the plugin '%{name}' failed, because
|
|
190
|
+
the entry point doesn't exist. The entry point attempted was
|
|
191
|
+
'%{entry_point}'. If this is not correct, please manually
|
|
192
|
+
specify an `--entry-point` when installing the plugin.
|
|
193
|
+
plugin_install_license_not_found: |-
|
|
194
|
+
The license file to install could not be found. Please verify
|
|
195
|
+
the path you gave is correct. The path to the license file given
|
|
196
|
+
was: '%{path}'
|
|
197
|
+
plugin_install_not_found: |-
|
|
198
|
+
The plugin '%{name}' could not be found in local or remote
|
|
199
|
+
repositories. Please check the name of the plugin and try again.
|
|
200
|
+
plugin_load_error: |-
|
|
201
|
+
The plugin "%{plugin}" could not be found. Please make sure that it is
|
|
202
|
+
properly installed via `vagrant plugin`. Note that plugins made for
|
|
203
|
+
Vagrant 1.0.x are not compatible with 1.1+ and this error will likely
|
|
204
|
+
continue to show when you use `plugin install` with a 1.0.x plugin.
|
|
205
|
+
plugin_load_failed: |-
|
|
206
|
+
Failed to load the "%{plugin}" plugin. View logs for more details.
|
|
207
|
+
plugin_load_failed_with_output: |-
|
|
208
|
+
Failed to load the "%{plugin}" plugin. The output from loading
|
|
209
|
+
the plugin is shown below. View the logs for complete details.
|
|
210
|
+
|
|
211
|
+
stdout: %{stdout}
|
|
212
|
+
|
|
213
|
+
stderr: %{stderr}
|
|
214
|
+
plugin_not_found: |-
|
|
215
|
+
The plugin '%{name}' could not be found. Please install this plugin
|
|
216
|
+
prior to attempting to do anything with it.
|
|
98
217
|
port_collision_resume: |-
|
|
99
|
-
This VM cannot be resumed, because the forwarded ports would collide
|
|
100
|
-
|
|
101
|
-
for you but VirtualBox only allows
|
|
102
|
-
|
|
103
|
-
|
|
218
|
+
This VM cannot be resumed, because the forwarded ports would collide
|
|
219
|
+
with a running program (it could be another virtual machine). Normally,
|
|
220
|
+
Vagrant will attempt to fix this for you but VirtualBox only allows
|
|
221
|
+
forwarded ports to change if the VM is powered off. Therefore, please
|
|
222
|
+
reload your VM or stop the other program to continue.
|
|
223
|
+
provider_not_found: |-
|
|
224
|
+
The provider '%{provider}' could not be found, but was requested to
|
|
225
|
+
back the machine '%{machine}'. Please use a provider that exists.
|
|
226
|
+
scp_permission_denied: |-
|
|
227
|
+
Failed to upload a file to the guest VM via SCP due to a permissions
|
|
228
|
+
error. This is normally because the user running Vagrant doesn't have
|
|
229
|
+
read permission on the file. Please set proper permissions on the file:
|
|
230
|
+
|
|
231
|
+
%{path}
|
|
104
232
|
scp_unavailable: |-
|
|
105
233
|
SSH server on the guest doesn't support SCP. Please install the necessary
|
|
106
234
|
software to enable SCP on your guest operating system.
|
|
@@ -129,6 +257,27 @@ en:
|
|
|
129
257
|
If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
|
|
130
258
|
followed by a `vagrant up`. If that doesn't work, contact a Vagrant
|
|
131
259
|
maintainer (support channels listed on the website) for more assistance.
|
|
260
|
+
ssh_connection_reset: |-
|
|
261
|
+
SSH connection was reset! This usually happens when the machine is
|
|
262
|
+
taking too long to reboot. First, try reloading your machine with
|
|
263
|
+
`vagrant reload`, since a simple restart sometimes fixes things.
|
|
264
|
+
If that doesn't work, destroy your machine and recreate it with
|
|
265
|
+
a `vagrant destroy` followed by a `1vagrant up`. If that doesn't work,
|
|
266
|
+
contact support.
|
|
267
|
+
ssh_connection_timeout: |-
|
|
268
|
+
Vagrant timed out while attempting to connect via SSH. This usually
|
|
269
|
+
means that the VM booted, but there are issues with the SSH configuration
|
|
270
|
+
or network connectivity issues. Please try to `vagrant reload` or
|
|
271
|
+
`vagrant up` again.
|
|
272
|
+
ssh_disconnected: |-
|
|
273
|
+
The SSH connection was unexpectedly closed by the remote end. This
|
|
274
|
+
usually indicates that SSH within the guest machine was unable to
|
|
275
|
+
properly start up. Please boot the VM in GUI mode to check whether
|
|
276
|
+
it is booting properly.
|
|
277
|
+
ssh_host_down: |-
|
|
278
|
+
While attempting to connect with SSH, a "host is down" (EHOSTDOWN)
|
|
279
|
+
error was received. Please verify your SSH settings are correct
|
|
280
|
+
and try again.
|
|
132
281
|
ssh_key_bad_permissions: |-
|
|
133
282
|
The private key to connect to this box via SSH has invalid permissions
|
|
134
283
|
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
|
|
@@ -139,7 +288,18 @@ en:
|
|
|
139
288
|
ssh_key_type_not_supported: |-
|
|
140
289
|
The private key you're attempting to use with this Vagrant box uses
|
|
141
290
|
an unsupported encryption type. The SSH library Vagrant uses does not support
|
|
142
|
-
this key type. Please use `ssh-rsa` or `ssh-dss` instead.
|
|
291
|
+
this key type. Please use `ssh-rsa` or `ssh-dss` instead. Note that
|
|
292
|
+
sometimes keys in your ssh-agent can interfere with this as well,
|
|
293
|
+
so verify the keys are valid there in addition to standard
|
|
294
|
+
file paths.
|
|
295
|
+
ssh_not_ready: |-
|
|
296
|
+
The provider for this Vagrant-managed machine is reporting that it
|
|
297
|
+
is not yet ready for SSH. Depending on your provider this can carry
|
|
298
|
+
different meanings. Make sure your machine is created and running and
|
|
299
|
+
try again. Additionally, check the output of `vagrant status` to verify
|
|
300
|
+
that the machine is in the state that you expect. If you continue to
|
|
301
|
+
get this error message, please view the documentation for the provider
|
|
302
|
+
you're using.
|
|
143
303
|
ssh_port_not_detected: |-
|
|
144
304
|
Vagrant couldn't determine the SSH port for your VM! Vagrant attempts to
|
|
145
305
|
automatically find a forwarded port that matches your `config.ssh.guest_port`
|
|
@@ -153,9 +313,10 @@ en:
|
|
|
153
313
|
guest port value, or specify an explicit SSH port with `config.ssh.port`.
|
|
154
314
|
ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
|
|
155
315
|
ssh_unavailable_windows: |-
|
|
156
|
-
`
|
|
157
|
-
|
|
158
|
-
|
|
316
|
+
`ssh` executable not found in any directories in the %PATH% variable. Is an
|
|
317
|
+
SSH client installed? Try installing Cygwin, MinGW or Git, all of which
|
|
318
|
+
contain an SSH client. Or use the PuTTY SSH client with the following
|
|
319
|
+
authentication information shown below:
|
|
159
320
|
|
|
160
321
|
Host: %{host}
|
|
161
322
|
Port: %{port}
|
|
@@ -166,9 +327,21 @@ en:
|
|
|
166
327
|
a TTY. Most actions in Vagrant that require a TTY have configuration
|
|
167
328
|
switches to disable this requirement. Please do that or run Vagrant
|
|
168
329
|
with TTY.
|
|
330
|
+
unimplemented_provider_action: |-
|
|
331
|
+
Vagrant attempted to call the action '%{action}' on the provider
|
|
332
|
+
'%{provider}', but this provider doesn't support this action. This
|
|
333
|
+
is probably a bug in either the provider or the plugin calling this
|
|
334
|
+
action, and should be reported.
|
|
169
335
|
vagrantfile_exists: |-
|
|
170
336
|
`Vagrantfile` already exists in this directory. Remove it before
|
|
171
337
|
running `vagrant init`.
|
|
338
|
+
vagrantfile_load_error: |-
|
|
339
|
+
There was an error loading a Vagrantfile. The file being loaded
|
|
340
|
+
and the error message are shown below. This is usually caused by
|
|
341
|
+
a syntax error.
|
|
342
|
+
|
|
343
|
+
Path: %{path}
|
|
344
|
+
Message: %{message}
|
|
172
345
|
vagrantfile_syntax_error: |-
|
|
173
346
|
There is a syntax error in the following Vagrantfile. The syntax error
|
|
174
347
|
message is reproduced below for convenience:
|
|
@@ -179,8 +352,8 @@ en:
|
|
|
179
352
|
|
|
180
353
|
%{command}
|
|
181
354
|
|
|
182
|
-
For more information on the failure, enable detailed logging
|
|
183
|
-
VAGRANT_LOG.
|
|
355
|
+
For more information on the failure, enable detailed logging by setting
|
|
356
|
+
the environment variable VAGRANT_LOG to DEBUG.
|
|
184
357
|
virtualbox_invalid_version: |-
|
|
185
358
|
Vagrant has detected that you have a version of VirtualBox installed
|
|
186
359
|
that is not supported. Please install one of the supported versions
|
|
@@ -191,6 +364,17 @@ en:
|
|
|
191
364
|
VirtualBox is complaining that the kernel module is not loaded. Please
|
|
192
365
|
run `VBoxManage --version` to see the error message which should contain
|
|
193
366
|
instructions on how to fix this error.
|
|
367
|
+
virtualbox_install_incomplete: |-
|
|
368
|
+
VirtualBox is complaining that the installation is incomplete. Please
|
|
369
|
+
run `VBoxManage --version` to see the error message which should contain
|
|
370
|
+
instructions on how to fix this error.
|
|
371
|
+
virtualbox_no_room_for_high_level_network: |-
|
|
372
|
+
There is no available slots on the VirtualBox VM for the configured
|
|
373
|
+
high-level network interfaces. "private_network" and "public_network"
|
|
374
|
+
network configurations consume a single network adapter slot on the
|
|
375
|
+
VirtualBox VM. VirtualBox limits the number of slots to 8, and it
|
|
376
|
+
appears that every slot is in use. Please lower the number of used
|
|
377
|
+
network adapters.
|
|
194
378
|
virtualbox_not_detected: |-
|
|
195
379
|
Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
|
|
196
380
|
Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
|
|
@@ -203,6 +387,10 @@ en:
|
|
|
203
387
|
with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
|
|
204
388
|
and clear out your inaccessible virtual machines or find a way to fix
|
|
205
389
|
them.
|
|
390
|
+
vm_name_exists: |-
|
|
391
|
+
A VirtualBox machine with the name '%{name}' already exists.
|
|
392
|
+
Please use another name or delete the machine with the existing
|
|
393
|
+
name, and try again.
|
|
206
394
|
vm_no_match: |-
|
|
207
395
|
No virtual machines matched the regular expression given.
|
|
208
396
|
vm_not_found: |-
|
|
@@ -216,21 +404,30 @@ en:
|
|
|
216
404
|
#-------------------------------------------------------------------------------
|
|
217
405
|
config:
|
|
218
406
|
common:
|
|
219
|
-
error_empty: "`%{field}` must be
|
|
407
|
+
error_empty: "`%{field}` must be not be empty."
|
|
220
408
|
chef:
|
|
221
409
|
cookbooks_path_empty: "Must specify a cookbooks path for chef solo."
|
|
410
|
+
cookbooks_path_missing: |-
|
|
411
|
+
Cookbook path doesn't exist: %{path}
|
|
222
412
|
run_list_empty: "Run list must not be empty."
|
|
223
413
|
server_url_empty: "Chef server URL must be populated."
|
|
224
|
-
vagrant_as_json_key: |-
|
|
225
|
-
`vagrant` cannot be a JSON key, because it is used by Vagrant already.
|
|
226
414
|
validation_key_path: "Validation key path must be valid path to your chef server validation key."
|
|
415
|
+
loader:
|
|
416
|
+
bad_v1_key: |-
|
|
417
|
+
Unknown configuration section '%{key}'. If this section was part of
|
|
418
|
+
a Vagrant 1.0.x plugin, note that 1.0.x plugins are incompatible with 1.1+.
|
|
419
|
+
root:
|
|
420
|
+
bad_key: |-
|
|
421
|
+
Unknown configuration section '%{key}'.
|
|
227
422
|
ssh:
|
|
228
423
|
private_key_missing: "`private_key_path` file must exist: %{path}"
|
|
229
424
|
vm:
|
|
230
425
|
base_mac_invalid: "Base MAC address for eth0/NAT must be set. Contact box maintainer for more information."
|
|
231
|
-
boot_mode_invalid: "Boot mode must be one of: headless or gui"
|
|
232
426
|
box_missing: "A box must be specified."
|
|
233
427
|
box_not_found: "The box '%{name}' could not be found."
|
|
428
|
+
hostname_invalid_characters: |-
|
|
429
|
+
The hostname set for the VM should only contain letters, numbers,
|
|
430
|
+
and hyphens.
|
|
234
431
|
network_invalid: |-
|
|
235
432
|
The network type '%{type}' is not valid. Please use
|
|
236
433
|
'hostonly' or 'bridged'.
|
|
@@ -241,11 +438,26 @@ en:
|
|
|
241
438
|
network_ip_ends_one: |-
|
|
242
439
|
The host only network IP '%{ip}' must not end in a 1, as this
|
|
243
440
|
is reserved for the host machine.
|
|
244
|
-
|
|
441
|
+
nfs_not_supported: |-
|
|
442
|
+
It appears your machine doesn't support NFS, or there is not an
|
|
443
|
+
adapter to enable NFS on this machine for Vagrant. Please verify
|
|
444
|
+
that `nfsd` is installed on your machine, and try again. If you're
|
|
445
|
+
on Windows, NFS isn't supported. If the problem persists, please
|
|
446
|
+
contact Vagrant support.
|
|
447
|
+
nfs_requires_host: |-
|
|
448
|
+
Using NFS shared folders requires a host to be specified
|
|
449
|
+
using `config.vagrant.host`.
|
|
450
|
+
network_fp_requires_ports: |-
|
|
451
|
+
Forwarded port definitions require a "host" and "guest" value
|
|
452
|
+
shared_folder_hostpath_missing: |-
|
|
453
|
+
The host path of the shared folder is missing: %{path}
|
|
245
454
|
shared_folder_nfs_owner_group: |-
|
|
246
|
-
Shared folder
|
|
455
|
+
Shared folder that have NFS enabled do no support owner/group
|
|
456
|
+
attributes. Host path: %{path}
|
|
247
457
|
provisioner_not_found: "The provisioner '%{shortcut}' doesn't exist."
|
|
248
|
-
provisioner_invalid_class:
|
|
458
|
+
provisioner_invalid_class: |-
|
|
459
|
+
The provisioner '%{shortcut}' must inherit from
|
|
460
|
+
`Vagrant::Plugin::V1::Provisioner`."
|
|
249
461
|
|
|
250
462
|
#-------------------------------------------------------------------------------
|
|
251
463
|
# Translations for commands. e.g. `vagrant x`
|
|
@@ -256,24 +468,32 @@ en:
|
|
|
256
468
|
vm_not_running: "VM is not currently running. Please bring it up to run this command."
|
|
257
469
|
box:
|
|
258
470
|
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
|
471
|
+
removing: |-
|
|
472
|
+
Removing box '%{name}' with provider '%{provider}'...
|
|
259
473
|
destroy:
|
|
260
|
-
confirmation: "Are you sure you want to destroy the '%{name}' VM? [
|
|
474
|
+
confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
|
|
261
475
|
will_not_destroy: |-
|
|
262
476
|
The VM '%{name}' will not be destroyed, since the confirmation
|
|
263
477
|
was declined.
|
|
264
|
-
gem:
|
|
265
|
-
help_preamble: |-
|
|
266
|
-
`vagrant gem` is used to install Vagrant plugins via the RubyGems
|
|
267
|
-
system. In fact, `vagrant gem` is just a frontend to the actual `gem`
|
|
268
|
-
interface, with the difference being that Vagrant sets up a custom
|
|
269
|
-
directory where gems are installed so that they are isolated from your
|
|
270
|
-
system gems.
|
|
271
478
|
init:
|
|
272
479
|
success: |-
|
|
273
480
|
A `Vagrantfile` has been placed in this directory. You are now
|
|
274
481
|
ready to `vagrant up` your first virtual environment! Please read
|
|
275
482
|
the comments in the Vagrantfile as well as documentation on
|
|
276
483
|
`vagrantup.com` for more information on using Vagrant.
|
|
484
|
+
plugin:
|
|
485
|
+
installed_license: |-
|
|
486
|
+
The license for '%{name}' was successfully installed!
|
|
487
|
+
installing_license: |-
|
|
488
|
+
Installing license for '%{name}'...
|
|
489
|
+
no_plugins: |-
|
|
490
|
+
No plugins installed.
|
|
491
|
+
installed: |-
|
|
492
|
+
Installed the plugin '%{name} (%{version})'!
|
|
493
|
+
installing: |-
|
|
494
|
+
Installing the '%{name}' plugin. This can take a few minutes...
|
|
495
|
+
uninstalling: |-
|
|
496
|
+
Uninstalling the '%{name}' plugin...
|
|
277
497
|
status:
|
|
278
498
|
aborted: |-
|
|
279
499
|
The VM is in an aborted state. This means that it was abruptly
|
|
@@ -291,14 +511,16 @@ en:
|
|
|
291
511
|
VirtualBox, moving to a new computer, etc. Please consult VirtualBox
|
|
292
512
|
for how to handle this issue.
|
|
293
513
|
output: |-
|
|
294
|
-
Current
|
|
514
|
+
Current machine states:
|
|
295
515
|
|
|
296
516
|
%{states}
|
|
297
517
|
|
|
298
518
|
%{message}
|
|
299
519
|
not_created: |-
|
|
300
520
|
The environment has not yet been created. Run `vagrant up` to
|
|
301
|
-
create the environment.
|
|
521
|
+
create the environment. If a machine is not created, only the
|
|
522
|
+
default provider will be shown. So if a provider is not listed,
|
|
523
|
+
then the machine is not created for that environment.
|
|
302
524
|
paused: |-
|
|
303
525
|
The VM is paused. This VM may have been paused via the VirtualBox
|
|
304
526
|
GUI or the VBoxManage command line interface. To unpause, please
|
|
@@ -327,7 +549,8 @@ en:
|
|
|
327
549
|
above with their current state. For more information about a specific
|
|
328
550
|
VM, run `vagrant status NAME`.
|
|
329
551
|
up:
|
|
330
|
-
|
|
552
|
+
upping: |-
|
|
553
|
+
Bringing machine '%{name}' up with '%{provider}' provider...
|
|
331
554
|
version:
|
|
332
555
|
output: "Vagrant version %{version}"
|
|
333
556
|
|
|
@@ -365,7 +588,12 @@ en:
|
|
|
365
588
|
Specific bridge '%{bridge}' not found. You may be asked to specify
|
|
366
589
|
which network to bridge to.
|
|
367
590
|
check_box:
|
|
368
|
-
not_found:
|
|
591
|
+
not_found: |-
|
|
592
|
+
Box '%{name}' was not found. Fetching box from specified URL for
|
|
593
|
+
the provider '%{provider}'. Note that if the URL does not have
|
|
594
|
+
a box for this provider, you should interrupt Vagrant now and add
|
|
595
|
+
the box yourself. Otherwise Vagrant will attempt to download the
|
|
596
|
+
full box prior to discovering this error.
|
|
369
597
|
not_specified: |-
|
|
370
598
|
No base box was specified! A base box is required as a staring point
|
|
371
599
|
for every vagrant virtual machine. Please specify one in your Vagrantfile
|
|
@@ -385,11 +613,11 @@ en:
|
|
|
385
613
|
This is not an error message; everything may continue to work properly,
|
|
386
614
|
in which case you may ignore this message.
|
|
387
615
|
version_mismatch: |-
|
|
388
|
-
The guest additions on this VM do not match the
|
|
389
|
-
VirtualBox!
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
616
|
+
The guest additions on this VM do not match the installed version of
|
|
617
|
+
VirtualBox! In most cases this is fine, but in rare cases it can
|
|
618
|
+
cause things such as shared folders to not work properly. If you see
|
|
619
|
+
shared folder errors, please update the guest additions within the
|
|
620
|
+
virtual machine and reload your VM.
|
|
393
621
|
|
|
394
622
|
Guest Additions Version: %{guest_version}
|
|
395
623
|
VirtualBox Version: %{virtualbox_version}
|
|
@@ -433,15 +661,18 @@ en:
|
|
|
433
661
|
Forwarded port: %{guest_port} => %{host_port}
|
|
434
662
|
collision_error: |-
|
|
435
663
|
Vagrant cannot forward the specified ports on this VM, since they
|
|
436
|
-
would collide with
|
|
437
|
-
ports
|
|
438
|
-
machine.
|
|
664
|
+
would collide with some other application that is already listening
|
|
665
|
+
on these ports. The forwarded port to %{host_port} is already in use
|
|
666
|
+
on the host machine.
|
|
439
667
|
|
|
440
668
|
To fix this, modify your current projects Vagrantfile to use another
|
|
441
669
|
port. Example, where '1234' would be replaced by a unique host port:
|
|
442
670
|
|
|
443
|
-
config.vm.
|
|
671
|
+
config.vm.network :forwarded_port, guest: %{guest_port}, host: 1234
|
|
444
672
|
|
|
673
|
+
Sometimes, Vagrant will attempt to auto-correct this for you. In this
|
|
674
|
+
case, Vagrant was unable to. This is usually because the guest machine
|
|
675
|
+
is in a state which doesn't allow modifying port forwarding.
|
|
445
676
|
fixed_collision: |-
|
|
446
677
|
Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
|
|
447
678
|
forwarding: Forwarding ports...
|
|
@@ -461,8 +692,8 @@ en:
|
|
|
461
692
|
Forcing shutdown of VM...
|
|
462
693
|
graceful: |-
|
|
463
694
|
Attempting graceful shutdown of VM...
|
|
464
|
-
|
|
465
|
-
setting: "Setting
|
|
695
|
+
hostname:
|
|
696
|
+
setting: "Setting hostname..."
|
|
466
697
|
import:
|
|
467
698
|
importing: Importing base box '%{name}'...
|
|
468
699
|
failure: |-
|
|
@@ -512,18 +743,6 @@ en:
|
|
|
512
743
|
specified network manually.
|
|
513
744
|
preparing: "Preparing host only network..."
|
|
514
745
|
nfs:
|
|
515
|
-
host_required: |-
|
|
516
|
-
A host class is required for NFS shared folders. By default, these
|
|
517
|
-
are auto-detected, but can be overridden with `config.vagrant.host`.
|
|
518
|
-
There is currently no host class loaded.
|
|
519
|
-
no_host_network: |-
|
|
520
|
-
NFS shared folders requires that host only networking is enabled
|
|
521
|
-
with a static IP. Please enable host only network and assign a
|
|
522
|
-
static IP via `config.vm.network`.
|
|
523
|
-
not_supported: |-
|
|
524
|
-
The host class is reporting that NFS is not supported by this host,
|
|
525
|
-
or `nfsd` may not be installed. Please verify that `nfsd` is installed
|
|
526
|
-
on your machine, and retry.
|
|
527
746
|
exporting: Exporting NFS shared folders...
|
|
528
747
|
mounting: Mounting NFS shared folders...
|
|
529
748
|
persist:
|
|
@@ -544,31 +763,43 @@ en:
|
|
|
544
763
|
beginning: "Running provisioner: %{provisioner}..."
|
|
545
764
|
resume:
|
|
546
765
|
resuming: Resuming suspended VM...
|
|
766
|
+
unpausing: |-
|
|
767
|
+
Unpausing the VM...
|
|
547
768
|
share_folders:
|
|
548
769
|
creating: Creating shared folders metadata...
|
|
549
770
|
mounting: Mounting shared folders...
|
|
550
|
-
mounting_entry: "-- %{
|
|
551
|
-
nomount_entry: "-- %{
|
|
771
|
+
mounting_entry: "-- %{guest_path}"
|
|
772
|
+
nomount_entry: "-- Automounting disabled: %{host_path}"
|
|
773
|
+
set_name:
|
|
774
|
+
setting_name: |-
|
|
775
|
+
Setting the name of the VM...
|
|
552
776
|
suspend:
|
|
553
777
|
suspending: Saving VM state and suspending execution...
|
|
554
778
|
|
|
555
779
|
box:
|
|
780
|
+
unpackage:
|
|
781
|
+
untar_failure: |-
|
|
782
|
+
The box failed to unpackage properly. Please verify that the box
|
|
783
|
+
file you're trying to add is not corrupted and try again. The
|
|
784
|
+
output from attempting to unpackage (if any):
|
|
785
|
+
|
|
786
|
+
%{output}
|
|
787
|
+
already_exists: |-
|
|
788
|
+
The box you're attempting to add already exits:
|
|
789
|
+
|
|
790
|
+
Name: %{name}
|
|
791
|
+
Provider: %{provider}
|
|
792
|
+
add:
|
|
793
|
+
adding: |-
|
|
794
|
+
Extracting box...
|
|
795
|
+
added: |-
|
|
796
|
+
Successfully added box '%{name}' with provider '%{provider}'!
|
|
556
797
|
destroy:
|
|
557
798
|
destroying: "Deleting box '%{name}'..."
|
|
558
799
|
download:
|
|
559
800
|
with: "Downloading with %{class}..."
|
|
560
801
|
cleaning: "Cleaning up downloaded box..."
|
|
561
802
|
unknown_type: "Unknown or unsupported URI type given for box download."
|
|
562
|
-
unpackage:
|
|
563
|
-
extracting: "Extracting box..."
|
|
564
|
-
already_exists: |-
|
|
565
|
-
A box already exists under the name of '%{name}'. This may or may
|
|
566
|
-
not be the same box you are trying to add. Please use another name
|
|
567
|
-
or remove the previous box then try to add it again.
|
|
568
|
-
untar_failure: |-
|
|
569
|
-
Failed to untar the box file. This is usually because you're
|
|
570
|
-
attempting to add a box that isn't a valid box file. Please
|
|
571
|
-
double check that the box file is properly packaged.
|
|
572
803
|
verify:
|
|
573
804
|
verifying: "Verifying box..."
|
|
574
805
|
failed: |-
|
|
@@ -598,6 +829,14 @@ en:
|
|
|
598
829
|
download: "Copying box to temporary location..."
|
|
599
830
|
file_missing: "The specified path to a file doesn't exist."
|
|
600
831
|
http:
|
|
832
|
+
connection_reset: |-
|
|
833
|
+
The remote server unexpectedly closed the connection. Vagrant was
|
|
834
|
+
unable to finish downloading the box. Please try again. If this
|
|
835
|
+
problem persists, please try downloading the box manually outside
|
|
836
|
+
of Vagrant, then adding the box from the filesystem.
|
|
837
|
+
connection_timeout: |-
|
|
838
|
+
Vagrant timed out while attempting to connect to the HTTP host.
|
|
839
|
+
Please check your internet and proxy settings and try again.
|
|
601
840
|
download: "Downloading box: %{url}"
|
|
602
841
|
socket_error: |-
|
|
603
842
|
An error occurred while trying to download the specified box. This most
|
|
@@ -642,14 +881,11 @@ en:
|
|
|
642
881
|
running_client_again: "Running chef-client again (failed to converge)..."
|
|
643
882
|
running_solo: "Running chef-solo..."
|
|
644
883
|
running_solo_again: "Running chef-solo again (failed to converge)..."
|
|
645
|
-
invalid_provisioner: |-
|
|
646
|
-
Vagrant::Provisioners::Chef is not a valid provisioner! Use
|
|
647
|
-
ChefSolo or ChefClient instead.
|
|
648
884
|
missing_shared_folders: |-
|
|
649
885
|
Shared folders that Chef requires are missing on the virtual machine.
|
|
650
886
|
This is usually due to configuration changing after already booting the
|
|
651
887
|
machine. The fix is to run a `vagrant reload` so that the proper shared
|
|
652
|
-
folders will prepared and mounted on the VM.
|
|
888
|
+
folders will be prepared and mounted on the VM.
|
|
653
889
|
no_convergence: |-
|
|
654
890
|
Chef never successfully completed! Any errors should be visible in the
|
|
655
891
|
output above. Please fix your recipes so that they properly complete.
|
|
@@ -687,7 +923,7 @@ en:
|
|
|
687
923
|
Shared folders that Puppet requires are missing on the virtual machine.
|
|
688
924
|
This is usually due to configuration changing after already booting the
|
|
689
925
|
machine. The fix is to run a `vagrant reload` so that the proper shared
|
|
690
|
-
folders will prepared and mounted on the VM.
|
|
926
|
+
folders will be prepared and mounted on the VM.
|
|
691
927
|
module_path_missing: "The configured module path doesn't exist: %{path}"
|
|
692
928
|
|
|
693
929
|
puppet_server:
|