vagrant 1.5.0 → 2.4.4
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 +5 -5
- data/.copywrite.hcl +15 -0
- data/.gitignore +79 -14
- data/.gitmodules +0 -0
- data/.vimrc +5 -0
- data/.yardopts +1 -0
- data/CHANGELOG.md +4512 -0
- data/Gemfile +10 -2
- data/LICENSE +92 -0
- data/README.md +55 -3
- data/RELEASE.md +11 -0
- data/Rakefile +22 -1
- data/Vagrantfile +31 -0
- data/bin/vagrant +268 -2
- data/contrib/README.md +17 -0
- data/contrib/bash/completion.sh +190 -0
- data/contrib/emacs/vagrant.el +11 -0
- data/contrib/st/Ruby.sublime-settings +6 -0
- data/contrib/sudoers/linux-fedora +7 -0
- data/contrib/sudoers/linux-suse +6 -0
- data/contrib/sudoers/linux-ubuntu +8 -0
- data/contrib/sudoers/osx +10 -0
- data/contrib/vim/vagrantfile.vim +9 -0
- data/contrib/zsh/_vagrant +738 -0
- data/contrib/zsh/generate_zsh_completion.rb +168 -0
- data/ext/vagrant/vagrant_ssl/extconf.rb +24 -0
- data/ext/vagrant/vagrant_ssl/vagrant_ssl.c +37 -0
- data/ext/vagrant/vagrant_ssl/vagrant_ssl.h +19 -0
- data/keys/README.md +23 -0
- data/keys/vagrant +27 -0
- data/keys/vagrant.key.ed25519 +7 -0
- data/keys/vagrant.key.rsa +27 -0
- data/keys/vagrant.pub +2 -0
- data/keys/vagrant.pub.ed25519 +1 -0
- data/keys/vagrant.pub.rsa +1 -0
- data/lib/vagrant/action/builder.rb +356 -0
- data/lib/vagrant/action/builtin/box_add.rb +638 -0
- data/lib/vagrant/action/builtin/box_check_outdated.rb +116 -0
- data/lib/vagrant/action/builtin/box_remove.rb +181 -0
- data/lib/vagrant/action/builtin/box_update.rb +23 -0
- data/lib/vagrant/action/builtin/call.rb +69 -0
- data/lib/vagrant/action/builtin/cleanup_disks.rb +59 -0
- data/lib/vagrant/action/builtin/cloud_init_setup.rb +125 -0
- data/lib/vagrant/action/builtin/cloud_init_wait.rb +35 -0
- data/lib/vagrant/action/builtin/config_validate.rb +33 -0
- data/lib/vagrant/action/builtin/confirm.rb +51 -0
- data/lib/vagrant/action/builtin/delayed.rb +29 -0
- data/lib/vagrant/action/builtin/destroy_confirm.rb +24 -0
- data/lib/vagrant/action/builtin/disk.rb +55 -0
- data/lib/vagrant/action/builtin/env_set.rb +27 -0
- data/lib/vagrant/action/builtin/graceful_halt.rb +88 -0
- data/lib/vagrant/action/builtin/handle_box.rb +111 -0
- data/lib/vagrant/action/builtin/handle_box_url.rb +17 -0
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +300 -0
- data/lib/vagrant/action/builtin/has_provisioner.rb +39 -0
- data/lib/vagrant/action/builtin/is_env_set.rb +25 -0
- data/lib/vagrant/action/builtin/is_state.rb +35 -0
- data/lib/vagrant/action/builtin/lock.rb +60 -0
- data/lib/vagrant/action/builtin/message.rb +29 -0
- data/lib/vagrant/action/builtin/mixin_provisioners.rb +159 -0
- data/lib/vagrant/action/builtin/mixin_synced_folders.rb +267 -0
- data/lib/vagrant/action/builtin/prepare_clone.rb +41 -0
- data/lib/vagrant/action/builtin/provision.rb +146 -0
- data/lib/vagrant/action/builtin/provisioner_cleanup.rb +57 -0
- data/lib/vagrant/action/builtin/set_hostname.rb +34 -0
- data/lib/vagrant/action/builtin/ssh_exec.rb +47 -0
- data/lib/vagrant/action/builtin/ssh_run.rb +88 -0
- data/lib/vagrant/action/builtin/synced_folder_cleanup.rb +36 -0
- data/lib/vagrant/action/builtin/synced_folders.rb +154 -0
- data/lib/vagrant/action/builtin/trigger.rb +40 -0
- data/lib/vagrant/action/builtin/wait_for_communicator.rb +82 -0
- data/lib/vagrant/action/general/package.rb +248 -0
- data/lib/vagrant/action/general/package_setup_files.rb +54 -0
- data/lib/vagrant/action/general/package_setup_folders.rb +40 -0
- data/lib/vagrant/action/hook.rb +163 -0
- data/lib/vagrant/action/primary_runner.rb +18 -0
- data/lib/vagrant/action/runner.rb +112 -0
- data/lib/vagrant/action/warden.rb +126 -0
- data/lib/vagrant/action.rb +88 -0
- data/lib/vagrant/alias.rb +59 -0
- data/lib/vagrant/batch_action.rb +181 -0
- data/lib/vagrant/box.rb +260 -0
- data/lib/vagrant/box_collection.rb +563 -0
- data/lib/vagrant/box_metadata.rb +275 -0
- data/lib/vagrant/bundler.rb +936 -0
- data/lib/vagrant/capability_host.rb +180 -0
- data/lib/vagrant/cli.rb +122 -0
- data/lib/vagrant/config/loader.rb +323 -0
- data/lib/vagrant/config/v1/dummy_config.rb +16 -0
- data/lib/vagrant/config/v1/loader.rb +108 -0
- data/lib/vagrant/config/v1/root.rb +63 -0
- data/lib/vagrant/config/v1.rb +12 -0
- data/lib/vagrant/config/v2/dummy_config.rb +60 -0
- data/lib/vagrant/config/v2/loader.rb +154 -0
- data/lib/vagrant/config/v2/root.rb +122 -0
- data/lib/vagrant/config/v2/util.rb +24 -0
- data/lib/vagrant/config/v2.rb +13 -0
- data/lib/vagrant/config/version_base.rb +83 -0
- data/lib/vagrant/config.rb +64 -0
- data/lib/vagrant/environment.rb +1230 -0
- data/lib/vagrant/errors.rb +1158 -0
- data/lib/vagrant/guest.rb +72 -0
- data/lib/vagrant/host.rb +19 -0
- data/lib/vagrant/machine.rb +672 -0
- data/lib/vagrant/machine_index.rb +527 -0
- data/lib/vagrant/machine_state.rb +54 -0
- data/lib/vagrant/patches/builder/mkmf.rb +116 -0
- data/lib/vagrant/patches/fake_ftp.rb +28 -0
- data/lib/vagrant/patches/log4r.rb +54 -0
- data/lib/vagrant/patches/net-ssh.rb +76 -0
- data/lib/vagrant/patches/rubygems.rb +23 -0
- data/lib/vagrant/patches/timeout_error.rb +5 -0
- data/lib/vagrant/plugin/manager.rb +406 -0
- data/lib/vagrant/plugin/state_file.rb +136 -0
- data/lib/vagrant/plugin/v1/command.rb +171 -0
- data/lib/vagrant/plugin/v1/communicator.rb +101 -0
- data/lib/vagrant/plugin/v1/config.rb +115 -0
- data/lib/vagrant/plugin/v1/errors.rb +18 -0
- data/lib/vagrant/plugin/v1/guest.rb +95 -0
- data/lib/vagrant/plugin/v1/host.rb +69 -0
- data/lib/vagrant/plugin/v1/manager.rb +134 -0
- data/lib/vagrant/plugin/v1/plugin.rb +231 -0
- data/lib/vagrant/plugin/v1/provider.rb +71 -0
- data/lib/vagrant/plugin/v1/provisioner.rb +53 -0
- data/lib/vagrant/plugin/v1.rb +25 -0
- data/lib/vagrant/plugin/v2/command.rb +309 -0
- data/lib/vagrant/plugin/v2/communicator.rb +133 -0
- data/lib/vagrant/plugin/v2/components.rb +94 -0
- data/lib/vagrant/plugin/v2/config.rb +167 -0
- data/lib/vagrant/plugin/v2/errors.rb +18 -0
- data/lib/vagrant/plugin/v2/guest.rb +26 -0
- data/lib/vagrant/plugin/v2/host.rb +22 -0
- data/lib/vagrant/plugin/v2/manager.rb +306 -0
- data/lib/vagrant/plugin/v2/plugin.rb +296 -0
- data/lib/vagrant/plugin/v2/provider.rb +118 -0
- data/lib/vagrant/plugin/v2/provisioner.rb +56 -0
- data/lib/vagrant/plugin/v2/push.rb +30 -0
- data/lib/vagrant/plugin/v2/synced_folder.rb +113 -0
- data/lib/vagrant/plugin/v2/trigger.rb +367 -0
- data/lib/vagrant/plugin/v2.rb +33 -0
- data/lib/vagrant/plugin.rb +11 -0
- data/lib/vagrant/registry.rb +113 -0
- data/lib/vagrant/shared_helpers.rb +238 -0
- data/lib/vagrant/ui.rb +449 -0
- data/lib/vagrant/util/ansi_escape_code_remover.rb +37 -0
- data/lib/vagrant/util/busy.rb +62 -0
- data/lib/vagrant/util/caps.rb +51 -0
- data/lib/vagrant/util/checkpoint_client.rb +186 -0
- data/lib/vagrant/util/command_deprecation.rb +59 -0
- data/lib/vagrant/util/counter.rb +27 -0
- data/lib/vagrant/util/credential_scrubber.rb +74 -0
- data/lib/vagrant/util/curl_helper.rb +104 -0
- data/lib/vagrant/util/deep_merge.rb +23 -0
- data/lib/vagrant/util/directory.rb +22 -0
- data/lib/vagrant/util/downloader.rb +278 -0
- data/lib/vagrant/util/env.rb +56 -0
- data/lib/vagrant/util/experimental.rb +79 -0
- data/lib/vagrant/util/file_checksum.rb +77 -0
- data/lib/vagrant/util/file_mode.rb +15 -0
- data/lib/vagrant/util/file_mutex.rb +50 -0
- data/lib/vagrant/util/guest_hosts.rb +71 -0
- data/lib/vagrant/util/guest_inspection.rb +118 -0
- data/lib/vagrant/util/guest_networks.rb +107 -0
- data/lib/vagrant/util/hash_with_indifferent_access.rb +66 -0
- data/lib/vagrant/util/install_cli_autocomplete.rb +121 -0
- data/lib/vagrant/util/io.rb +53 -0
- data/lib/vagrant/util/ipv4_interfaces.rb +18 -0
- data/lib/vagrant/util/is_port_open.rb +31 -0
- data/lib/vagrant/util/keypair.rb +293 -0
- data/lib/vagrant/util/line_buffer.rb +63 -0
- data/lib/vagrant/util/line_ending_helpers.rb +17 -0
- data/lib/vagrant/util/logging_formatter.rb +70 -0
- data/lib/vagrant/util/map_command_options.rb +36 -0
- data/lib/vagrant/util/mime.rb +95 -0
- data/lib/vagrant/util/network_ip.rb +27 -0
- data/lib/vagrant/util/numeric.rb +92 -0
- data/lib/vagrant/util/platform.rb +737 -0
- data/lib/vagrant/util/powershell.rb +316 -0
- data/lib/vagrant/util/presence.rb +48 -0
- data/lib/vagrant/util/retryable.rb +34 -0
- data/lib/vagrant/util/safe_chdir.rb +36 -0
- data/lib/vagrant/util/safe_env.rb +17 -0
- data/lib/vagrant/util/safe_exec.rb +78 -0
- data/lib/vagrant/util/safe_puts.rb +34 -0
- data/lib/vagrant/util/scoped_hash_override.rb +47 -0
- data/lib/vagrant/util/shell_quote.rb +18 -0
- data/lib/vagrant/util/silence_warnings.rb +17 -0
- data/lib/vagrant/util/ssh.rb +267 -0
- data/lib/vagrant/util/stacked_proc_runner.rb +38 -0
- data/lib/vagrant/util/string_block_editor.rb +80 -0
- data/lib/vagrant/util/subprocess.rb +365 -0
- data/lib/vagrant/util/template_renderer.rb +91 -0
- data/lib/vagrant/util/uploader.rb +109 -0
- data/lib/vagrant/util/which.rb +56 -0
- data/lib/vagrant/util/windows_path.rb +41 -0
- data/lib/vagrant/util.rb +63 -0
- data/lib/vagrant/vagrantfile.rb +320 -0
- data/lib/vagrant/version.rb +10 -0
- data/lib/vagrant.rb +380 -0
- data/plugins/README.md +11 -0
- data/plugins/commands/autocomplete/command/install.rb +52 -0
- data/plugins/commands/autocomplete/command/root.rb +69 -0
- data/plugins/commands/autocomplete/plugin.rb +21 -0
- data/plugins/commands/box/command/add.rb +111 -0
- data/plugins/commands/box/command/download_mixins.rb +32 -0
- data/plugins/commands/box/command/list.rb +82 -0
- data/plugins/commands/box/command/outdated.rb +109 -0
- data/plugins/commands/box/command/prune.rb +136 -0
- data/plugins/commands/box/command/remove.rb +83 -0
- data/plugins/commands/box/command/repackage.rb +46 -0
- data/plugins/commands/box/command/root.rb +98 -0
- data/plugins/commands/box/command/update.rb +206 -0
- data/plugins/commands/box/plugin.rb +18 -0
- data/plugins/commands/cap/command.rb +83 -0
- data/plugins/commands/cap/plugin.rb +20 -0
- data/plugins/commands/cloud/auth/login.rb +90 -0
- data/plugins/commands/cloud/auth/logout.rb +37 -0
- data/plugins/commands/cloud/auth/middleware/add_authentication.rb +116 -0
- data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +68 -0
- data/plugins/commands/cloud/auth/plugin.rb +23 -0
- data/plugins/commands/cloud/auth/root.rb +77 -0
- data/plugins/commands/cloud/auth/whoami.rb +63 -0
- data/plugins/commands/cloud/box/create.rb +82 -0
- data/plugins/commands/cloud/box/delete.rb +74 -0
- data/plugins/commands/cloud/box/plugin.rb +22 -0
- data/plugins/commands/cloud/box/root.rb +81 -0
- data/plugins/commands/cloud/box/show.rb +133 -0
- data/plugins/commands/cloud/box/update.rb +82 -0
- data/plugins/commands/cloud/client/client.rb +257 -0
- data/plugins/commands/cloud/errors.rb +31 -0
- data/plugins/commands/cloud/list.rb +54 -0
- data/plugins/commands/cloud/locales/en.yml +197 -0
- data/plugins/commands/cloud/plugin.rb +48 -0
- data/plugins/commands/cloud/provider/create.rb +105 -0
- data/plugins/commands/cloud/provider/delete.rb +109 -0
- data/plugins/commands/cloud/provider/plugin.rb +22 -0
- data/plugins/commands/cloud/provider/root.rb +81 -0
- data/plugins/commands/cloud/provider/update.rb +102 -0
- data/plugins/commands/cloud/provider/upload.rb +100 -0
- data/plugins/commands/cloud/publish.rb +297 -0
- data/plugins/commands/cloud/root.rb +108 -0
- data/plugins/commands/cloud/search.rb +102 -0
- data/plugins/commands/cloud/util.rb +371 -0
- data/plugins/commands/cloud/version/create.rb +77 -0
- data/plugins/commands/cloud/version/delete.rb +78 -0
- data/plugins/commands/cloud/version/plugin.rb +22 -0
- data/plugins/commands/cloud/version/release.rb +78 -0
- data/plugins/commands/cloud/version/revoke.rb +79 -0
- data/plugins/commands/cloud/version/root.rb +85 -0
- data/plugins/commands/cloud/version/update.rb +76 -0
- data/plugins/commands/destroy/command.rb +79 -0
- data/plugins/commands/destroy/plugin.rb +21 -0
- data/plugins/commands/global-status/command.rb +114 -0
- data/plugins/commands/global-status/plugin.rb +21 -0
- data/plugins/commands/halt/command.rb +42 -0
- data/plugins/commands/halt/plugin.rb +21 -0
- data/plugins/commands/help/command.rb +19 -0
- data/plugins/commands/help/plugin.rb +20 -0
- data/plugins/commands/init/command.rb +110 -0
- data/plugins/commands/init/plugin.rb +21 -0
- data/plugins/commands/list-commands/command.rb +46 -0
- data/plugins/commands/list-commands/plugin.rb +21 -0
- data/plugins/commands/login/plugin.rb +20 -0
- data/plugins/commands/package/command.rb +104 -0
- data/plugins/commands/package/plugin.rb +21 -0
- data/plugins/commands/plugin/action/expunge_plugins.rb +77 -0
- data/plugins/commands/plugin/action/install_gem.rb +80 -0
- data/plugins/commands/plugin/action/license_plugin.rb +48 -0
- data/plugins/commands/plugin/action/list_plugins.rb +79 -0
- data/plugins/commands/plugin/action/plugin_exists_check.rb +28 -0
- data/plugins/commands/plugin/action/repair_plugins.rb +67 -0
- data/plugins/commands/plugin/action/uninstall_plugin.rb +28 -0
- data/plugins/commands/plugin/action/update_gems.rb +52 -0
- data/plugins/commands/plugin/action.rb +82 -0
- data/plugins/commands/plugin/command/base.rb +22 -0
- data/plugins/commands/plugin/command/expunge.rb +95 -0
- data/plugins/commands/plugin/command/install.rb +90 -0
- data/plugins/commands/plugin/command/license.rb +34 -0
- data/plugins/commands/plugin/command/list.rb +34 -0
- data/plugins/commands/plugin/command/mixin_install_opts.rb +34 -0
- data/plugins/commands/plugin/command/repair.rb +41 -0
- data/plugins/commands/plugin/command/root.rb +98 -0
- data/plugins/commands/plugin/command/uninstall.rb +38 -0
- data/plugins/commands/plugin/command/update.rb +42 -0
- data/plugins/commands/plugin/gem_helper.rb +89 -0
- data/plugins/commands/plugin/plugin.rb +23 -0
- data/plugins/commands/port/command.rb +91 -0
- data/plugins/commands/port/locales/en.yml +23 -0
- data/plugins/commands/port/plugin.rb +30 -0
- data/plugins/commands/powershell/command.rb +132 -0
- data/plugins/commands/powershell/errors.rb +29 -0
- data/plugins/commands/powershell/plugin.rb +34 -0
- data/plugins/commands/powershell/scripts/enable_psremoting.ps1 +63 -0
- data/plugins/commands/powershell/scripts/reset_trustedhosts.ps1 +15 -0
- data/plugins/commands/provider/command.rb +77 -0
- data/plugins/commands/provider/plugin.rb +21 -0
- data/plugins/commands/provision/command.rb +41 -0
- data/plugins/commands/provision/plugin.rb +21 -0
- data/plugins/commands/push/command.rb +78 -0
- data/plugins/commands/push/plugin.rb +20 -0
- data/plugins/commands/rdp/command.rb +114 -0
- data/plugins/commands/rdp/config.rb +29 -0
- data/plugins/commands/rdp/errors.rb +21 -0
- data/plugins/commands/rdp/plugin.rb +39 -0
- data/plugins/commands/reload/command.rb +67 -0
- data/plugins/commands/reload/plugin.rb +21 -0
- data/plugins/commands/resume/command.rb +46 -0
- data/plugins/commands/resume/plugin.rb +20 -0
- data/plugins/commands/snapshot/command/delete.rb +50 -0
- data/plugins/commands/snapshot/command/list.rb +50 -0
- data/plugins/commands/snapshot/command/pop.rb +52 -0
- data/plugins/commands/snapshot/command/push.rb +36 -0
- data/plugins/commands/snapshot/command/push_shared.rb +58 -0
- data/plugins/commands/snapshot/command/restore.rb +67 -0
- data/plugins/commands/snapshot/command/root.rb +95 -0
- data/plugins/commands/snapshot/command/save.rb +75 -0
- data/plugins/commands/snapshot/plugin.rb +18 -0
- data/plugins/commands/ssh/command.rb +80 -0
- data/plugins/commands/ssh/plugin.rb +20 -0
- data/plugins/commands/ssh_config/command.rb +78 -0
- data/plugins/commands/ssh_config/plugin.rb +21 -0
- data/plugins/commands/status/command.rb +59 -0
- data/plugins/commands/status/plugin.rb +21 -0
- data/plugins/commands/suspend/command.rb +49 -0
- data/plugins/commands/suspend/plugin.rb +21 -0
- data/plugins/commands/up/command.rb +194 -0
- data/plugins/commands/up/middleware/store_box_metadata.rb +40 -0
- data/plugins/commands/up/plugin.rb +25 -0
- data/plugins/commands/up/start_mixins.rb +58 -0
- data/plugins/commands/upload/command.rb +239 -0
- data/plugins/commands/upload/plugin.rb +20 -0
- data/plugins/commands/validate/command.rb +107 -0
- data/plugins/commands/validate/plugin.rb +20 -0
- data/plugins/commands/version/command.rb +60 -0
- data/plugins/commands/version/plugin.rb +21 -0
- data/plugins/commands/winrm/command.rb +71 -0
- data/plugins/commands/winrm/plugin.rb +20 -0
- data/plugins/commands/winrm_config/command.rb +129 -0
- data/plugins/commands/winrm_config/plugin.rb +20 -0
- data/plugins/communicators/ssh/communicator.rb +898 -0
- data/plugins/communicators/ssh/plugin.rb +22 -0
- data/plugins/communicators/winrm/command_filter.rb +49 -0
- data/plugins/communicators/winrm/command_filters/cat.rb +26 -0
- data/plugins/communicators/winrm/command_filters/chmod.rb +20 -0
- data/plugins/communicators/winrm/command_filters/chown.rb +20 -0
- data/plugins/communicators/winrm/command_filters/grep.rb +26 -0
- data/plugins/communicators/winrm/command_filters/mkdir.rb +30 -0
- data/plugins/communicators/winrm/command_filters/rm.rb +50 -0
- data/plugins/communicators/winrm/command_filters/test.rb +68 -0
- data/plugins/communicators/winrm/command_filters/uname.rb +30 -0
- data/plugins/communicators/winrm/command_filters/which.rb +27 -0
- data/plugins/communicators/winrm/communicator.rb +230 -0
- data/plugins/communicators/winrm/config.rb +76 -0
- data/plugins/communicators/winrm/errors.rb +72 -0
- data/plugins/communicators/winrm/helper.rb +91 -0
- data/plugins/communicators/winrm/plugin.rb +69 -0
- data/plugins/communicators/winrm/shell.rb +267 -0
- data/plugins/communicators/winssh/communicator.rb +252 -0
- data/plugins/communicators/winssh/config.rb +37 -0
- data/plugins/communicators/winssh/plugin.rb +24 -0
- data/plugins/guests/alma/cap/flavor.rb +26 -0
- data/plugins/guests/alma/guest.rb +13 -0
- data/plugins/guests/alma/plugin.rb +23 -0
- data/plugins/guests/alpine/cap/change_host_name.rb +85 -0
- data/plugins/guests/alpine/cap/configure_networks.rb +67 -0
- data/plugins/guests/alpine/cap/halt.rb +24 -0
- data/plugins/guests/alpine/cap/nfs_client.rb +17 -0
- data/plugins/guests/alpine/cap/rsync.rb +20 -0
- data/plugins/guests/alpine/cap/smb.rb +16 -0
- data/plugins/guests/alpine/guest.rb +14 -0
- data/plugins/guests/alpine/plugin.rb +69 -0
- data/plugins/guests/alt/cap/change_host_name.rb +55 -0
- data/plugins/guests/alt/cap/configure_networks.rb +132 -0
- data/plugins/guests/alt/cap/flavor.rb +66 -0
- data/plugins/guests/alt/cap/network_scripts_dir.rb +14 -0
- data/plugins/guests/alt/cap/rsync.rb +16 -0
- data/plugins/guests/alt/guest.rb +12 -0
- data/plugins/guests/alt/plugin.rb +43 -0
- data/plugins/guests/amazon/cap/configure_networks.rb +26 -0
- data/plugins/guests/amazon/cap/flavor.rb +17 -0
- data/plugins/guests/amazon/guest.rb +12 -0
- data/plugins/guests/amazon/plugin.rb +28 -0
- data/plugins/guests/arch/cap/change_host_name.rb +18 -0
- data/plugins/guests/arch/cap/configure_networks.rb +81 -0
- data/plugins/guests/arch/cap/nfs.rb +36 -0
- data/plugins/guests/arch/cap/rsync.rb +19 -0
- data/plugins/guests/arch/cap/smb.rb +20 -0
- data/plugins/guests/arch/guest.rb +14 -0
- data/plugins/guests/arch/plugin.rb +53 -0
- data/plugins/guests/atomic/cap/change_host_name.rb +18 -0
- data/plugins/guests/atomic/cap/docker.rb +14 -0
- data/plugins/guests/atomic/guest.rb +14 -0
- data/plugins/guests/atomic/plugin.rb +28 -0
- data/plugins/guests/bsd/cap/file_system.rb +80 -0
- data/plugins/guests/bsd/cap/halt.rb +19 -0
- data/plugins/guests/bsd/cap/mount_virtualbox_shared_folder.rb +19 -0
- data/plugins/guests/bsd/cap/nfs.rb +50 -0
- data/plugins/guests/bsd/cap/public_key.rb +69 -0
- data/plugins/guests/bsd/guest.rb +12 -0
- data/plugins/guests/bsd/plugin.rb +58 -0
- data/plugins/guests/centos/cap/flavor.rb +32 -0
- data/plugins/guests/centos/guest.rb +14 -0
- data/plugins/guests/centos/plugin.rb +23 -0
- data/plugins/guests/coreos/cap/change_host_name.rb +41 -0
- data/plugins/guests/coreos/cap/configure_networks.rb +138 -0
- data/plugins/guests/coreos/cap/docker.rb +14 -0
- data/plugins/guests/coreos/guest.rb +14 -0
- data/plugins/guests/coreos/plugin.rb +33 -0
- data/plugins/guests/darwin/cap/change_host_name.rb +43 -0
- data/plugins/guests/darwin/cap/choose_addressable_ip_addr.rb +23 -0
- data/plugins/guests/darwin/cap/configure_networks.rb +126 -0
- data/plugins/guests/darwin/cap/darwin_version.rb +43 -0
- data/plugins/guests/darwin/cap/halt.rb +21 -0
- data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +46 -0
- data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +135 -0
- data/plugins/guests/darwin/cap/rsync.rb +14 -0
- data/plugins/guests/darwin/cap/shell_expand_guest_path.rb +30 -0
- data/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +15 -0
- data/plugins/guests/darwin/guest.rb +18 -0
- data/plugins/guests/darwin/plugin.rb +93 -0
- data/plugins/guests/debian/cap/change_host_name.rb +110 -0
- data/plugins/guests/debian/cap/configure_networks.rb +205 -0
- data/plugins/guests/debian/cap/nfs.rb +19 -0
- data/plugins/guests/debian/cap/rsync.rb +18 -0
- data/plugins/guests/debian/cap/smb.rb +20 -0
- data/plugins/guests/debian/guest.rb +13 -0
- data/plugins/guests/debian/plugin.rb +43 -0
- data/plugins/guests/dragonflybsd/guest.rb +12 -0
- data/plugins/guests/dragonflybsd/plugin.rb +18 -0
- data/plugins/guests/elementary/guest.rb +13 -0
- data/plugins/guests/elementary/plugin.rb +18 -0
- data/plugins/guests/esxi/cap/change_host_name.rb +16 -0
- data/plugins/guests/esxi/cap/configure_networks.rb +41 -0
- data/plugins/guests/esxi/cap/halt.rb +19 -0
- data/plugins/guests/esxi/cap/mount_nfs_folder.rb +43 -0
- data/plugins/guests/esxi/cap/public_key.rb +68 -0
- data/plugins/guests/esxi/guest.rb +14 -0
- data/plugins/guests/esxi/plugin.rb +49 -0
- data/plugins/guests/fedora/cap/flavor.rb +26 -0
- data/plugins/guests/fedora/guest.rb +14 -0
- data/plugins/guests/fedora/plugin.rb +23 -0
- data/plugins/guests/freebsd/cap/change_host_name.rb +34 -0
- data/plugins/guests/freebsd/cap/configure_networks.rb +70 -0
- data/plugins/guests/freebsd/cap/mount_virtualbox_shared_folder.rb +79 -0
- data/plugins/guests/freebsd/cap/rsync.rb +18 -0
- data/plugins/guests/freebsd/cap/shell_expand_guest_path.rb +31 -0
- data/plugins/guests/freebsd/guest.rb +17 -0
- data/plugins/guests/freebsd/plugin.rb +68 -0
- data/plugins/guests/funtoo/cap/configure_networks.rb +50 -0
- data/plugins/guests/funtoo/guest.rb +12 -0
- data/plugins/guests/funtoo/plugin.rb +23 -0
- data/plugins/guests/gentoo/cap/change_host_name.rb +27 -0
- data/plugins/guests/gentoo/cap/configure_networks.rb +92 -0
- data/plugins/guests/gentoo/guest.rb +12 -0
- data/plugins/guests/gentoo/plugin.rb +28 -0
- data/plugins/guests/haiku/cap/change_host_name.rb +36 -0
- data/plugins/guests/haiku/cap/halt.rb +19 -0
- data/plugins/guests/haiku/cap/insert_public_key.rb +24 -0
- data/plugins/guests/haiku/cap/remove_public_key.rb +24 -0
- data/plugins/guests/haiku/cap/rsync.rb +22 -0
- data/plugins/guests/haiku/guest.rb +14 -0
- data/plugins/guests/haiku/plugin.rb +53 -0
- data/plugins/guests/kali/guest.rb +13 -0
- data/plugins/guests/kali/plugin.rb +18 -0
- data/plugins/guests/linux/cap/change_host_name.rb +49 -0
- data/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +22 -0
- data/plugins/guests/linux/cap/file_system.rb +82 -0
- data/plugins/guests/linux/cap/halt.rb +27 -0
- data/plugins/guests/linux/cap/mount_smb_shared_folder.rb +95 -0
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +78 -0
- data/plugins/guests/linux/cap/network_interfaces.rb +89 -0
- data/plugins/guests/linux/cap/nfs.rb +51 -0
- data/plugins/guests/linux/cap/persist_mount_shared_folder.rb +77 -0
- data/plugins/guests/linux/cap/port.rb +14 -0
- data/plugins/guests/linux/cap/public_key.rb +65 -0
- data/plugins/guests/linux/cap/read_ip_address.rb +28 -0
- data/plugins/guests/linux/cap/reboot.rb +74 -0
- data/plugins/guests/linux/cap/rsync.rb +14 -0
- data/plugins/guests/linux/cap/shell_expand_guest_path.rb +35 -0
- data/plugins/guests/linux/guest.rb +26 -0
- data/plugins/guests/linux/plugin.rb +139 -0
- data/plugins/guests/mint/guest.rb +13 -0
- data/plugins/guests/mint/plugin.rb +18 -0
- data/plugins/guests/netbsd/cap/change_host_name.rb +20 -0
- data/plugins/guests/netbsd/cap/configure_networks.rb +56 -0
- data/plugins/guests/netbsd/cap/rsync.rb +23 -0
- data/plugins/guests/netbsd/cap/shell_expand_guest_path.rb +30 -0
- data/plugins/guests/netbsd/guest.rb +14 -0
- data/plugins/guests/netbsd/plugin.rb +58 -0
- data/plugins/guests/nixos/cap/change_host_name.rb +47 -0
- data/plugins/guests/nixos/cap/configure_networks.rb +135 -0
- data/plugins/guests/nixos/cap/nfs_client.rb +14 -0
- data/plugins/guests/nixos/guest.rb +20 -0
- data/plugins/guests/nixos/plugin.rb +33 -0
- data/plugins/guests/omnios/cap/change_host_name.rb +23 -0
- data/plugins/guests/omnios/cap/mount_nfs_folder.rb +24 -0
- data/plugins/guests/omnios/cap/rsync.rb +14 -0
- data/plugins/guests/omnios/guest.rb +12 -0
- data/plugins/guests/omnios/plugin.rb +33 -0
- data/plugins/guests/openbsd/cap/change_host_name.rb +35 -0
- data/plugins/guests/openbsd/cap/configure_networks.rb +49 -0
- data/plugins/guests/openbsd/cap/halt.rb +22 -0
- data/plugins/guests/openbsd/cap/rsync.rb +32 -0
- data/plugins/guests/openbsd/cap/shell_expand_guest_path.rb +30 -0
- data/plugins/guests/openbsd/guest.rb +14 -0
- data/plugins/guests/openbsd/plugin.rb +63 -0
- data/plugins/guests/openwrt/cap/change_host_name.rb +22 -0
- data/plugins/guests/openwrt/cap/halt.rb +19 -0
- data/plugins/guests/openwrt/cap/insert_public_key.rb +23 -0
- data/plugins/guests/openwrt/cap/remove_public_key.rb +25 -0
- data/plugins/guests/openwrt/cap/rsync.rb +38 -0
- data/plugins/guests/openwrt/guest.rb +26 -0
- data/plugins/guests/openwrt/plugin.rb +64 -0
- data/plugins/guests/photon/cap/change_host_name.rb +22 -0
- data/plugins/guests/photon/cap/configure_networks.rb +33 -0
- data/plugins/guests/photon/cap/docker.rb +14 -0
- data/plugins/guests/photon/guest.rb +12 -0
- data/plugins/guests/photon/plugin.rb +33 -0
- data/plugins/guests/pld/cap/change_host_name.rb +26 -0
- data/plugins/guests/pld/cap/flavor.rb +14 -0
- data/plugins/guests/pld/cap/network_scripts_dir.rb +14 -0
- data/plugins/guests/pld/guest.rb +12 -0
- data/plugins/guests/pld/plugin.rb +33 -0
- data/plugins/guests/redhat/cap/change_host_name.rb +59 -0
- data/plugins/guests/redhat/cap/configure_networks.rb +113 -0
- data/plugins/guests/redhat/cap/flavor.rb +32 -0
- data/plugins/guests/redhat/cap/network_scripts_dir.rb +18 -0
- data/plugins/guests/redhat/cap/nfs_client.rb +33 -0
- data/plugins/guests/redhat/cap/rsync.rb +20 -0
- data/plugins/guests/redhat/cap/smb.rb +23 -0
- data/plugins/guests/redhat/guest.rb +12 -0
- data/plugins/guests/redhat/plugin.rb +53 -0
- data/plugins/guests/rocky/cap/flavor.rb +26 -0
- data/plugins/guests/rocky/guest.rb +13 -0
- data/plugins/guests/rocky/plugin.rb +23 -0
- data/plugins/guests/slackware/cap/change_host_name.rb +24 -0
- data/plugins/guests/slackware/cap/configure_networks.rb +51 -0
- data/plugins/guests/slackware/guest.rb +12 -0
- data/plugins/guests/slackware/plugin.rb +28 -0
- data/plugins/guests/smartos/cap/change_host_name.rb +29 -0
- data/plugins/guests/smartos/cap/configure_networks.rb +30 -0
- data/plugins/guests/smartos/cap/halt.rb +25 -0
- data/plugins/guests/smartos/cap/insert_public_key.rb +31 -0
- data/plugins/guests/smartos/cap/mount_nfs.rb +31 -0
- data/plugins/guests/smartos/cap/remove_public_key.rb +28 -0
- data/plugins/guests/smartos/cap/rsync.rb +36 -0
- data/plugins/guests/smartos/config.rb +18 -0
- data/plugins/guests/smartos/guest.rb +14 -0
- data/plugins/guests/smartos/plugin.rb +74 -0
- data/plugins/guests/solaris/cap/change_host_name.rb +20 -0
- data/plugins/guests/solaris/cap/configure_networks.rb +28 -0
- data/plugins/guests/solaris/cap/file_system.rb +80 -0
- data/plugins/guests/solaris/cap/halt.rb +25 -0
- data/plugins/guests/solaris/cap/insert_public_key.rb +25 -0
- data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +44 -0
- data/plugins/guests/solaris/cap/remove_public_key.rb +25 -0
- data/plugins/guests/solaris/cap/rsync.rb +36 -0
- data/plugins/guests/solaris/config.rb +34 -0
- data/plugins/guests/solaris/guest.rb +17 -0
- data/plugins/guests/solaris/plugin.rb +88 -0
- data/plugins/guests/solaris11/cap/change_host_name.rb +26 -0
- data/plugins/guests/solaris11/cap/configure_networks.rb +37 -0
- data/plugins/guests/solaris11/config.rb +37 -0
- data/plugins/guests/solaris11/guest.rb +22 -0
- data/plugins/guests/solaris11/plugin.rb +42 -0
- data/plugins/guests/suse/cap/change_host_name.rb +48 -0
- data/plugins/guests/suse/cap/configure_networks.rb +53 -0
- data/plugins/guests/suse/cap/halt.rb +23 -0
- data/plugins/guests/suse/cap/network_scripts_dir.rb +14 -0
- data/plugins/guests/suse/cap/nfs_client.rb +18 -0
- data/plugins/guests/suse/cap/rsync.rb +18 -0
- data/plugins/guests/suse/guest.rb +12 -0
- data/plugins/guests/suse/plugin.rb +53 -0
- data/plugins/guests/tinycore/cap/change_host_name.rb +16 -0
- data/plugins/guests/tinycore/cap/configure_networks.rb +29 -0
- data/plugins/guests/tinycore/cap/halt.rb +19 -0
- data/plugins/guests/tinycore/cap/mount_nfs.rb +44 -0
- data/plugins/guests/tinycore/cap/rsync.rb +20 -0
- data/plugins/guests/tinycore/guest.rb +13 -0
- data/plugins/guests/tinycore/plugin.rb +43 -0
- data/plugins/guests/trisquel/guest.rb +12 -0
- data/plugins/guests/trisquel/plugin.rb +18 -0
- data/plugins/guests/ubuntu/guest.rb +13 -0
- data/plugins/guests/ubuntu/plugin.rb +18 -0
- data/plugins/guests/windows/cap/change_host_name.rb +36 -0
- data/plugins/guests/windows/cap/choose_addressable_ip_addr.rb +23 -0
- data/plugins/guests/windows/cap/configure_networks.rb +83 -0
- data/plugins/guests/windows/cap/file_system.rb +68 -0
- data/plugins/guests/windows/cap/halt.rb +19 -0
- data/plugins/guests/windows/cap/mount_shared_folder.rb +60 -0
- data/plugins/guests/windows/cap/public_key.rb +87 -0
- data/plugins/guests/windows/cap/reboot.rb +63 -0
- data/plugins/guests/windows/cap/rsync.rb +29 -0
- data/plugins/guests/windows/config.rb +26 -0
- data/plugins/guests/windows/errors.rb +25 -0
- data/plugins/guests/windows/guest.rb +13 -0
- data/plugins/guests/windows/guest_network.rb +128 -0
- data/plugins/guests/windows/plugin.rb +116 -0
- data/plugins/guests/windows/scripts/mount_volume.ps1.erb +48 -0
- data/plugins/guests/windows/scripts/reboot_detect.ps1 +50 -0
- data/plugins/guests/windows/scripts/set_work_network.ps1 +9 -0
- data/plugins/guests/windows/scripts/winrs_v3_get_adapters.ps1 +14 -0
- data/plugins/hosts/alt/cap/nfs.rb +46 -0
- data/plugins/hosts/alt/host.rb +14 -0
- data/plugins/hosts/alt/plugin.rb +35 -0
- data/plugins/hosts/arch/cap/nfs.rb +22 -0
- data/plugins/hosts/arch/host.rb +14 -0
- data/plugins/hosts/arch/plugin.rb +35 -0
- data/plugins/hosts/bsd/cap/nfs.rb +218 -0
- data/plugins/hosts/bsd/cap/path.rb +14 -0
- data/plugins/hosts/bsd/cap/ssh.rb +19 -0
- data/plugins/hosts/bsd/host.rb +15 -0
- data/plugins/hosts/bsd/plugin.rb +63 -0
- data/plugins/hosts/darwin/cap/configured_ip_addresses.rb +21 -0
- data/plugins/hosts/darwin/cap/fs_iso.rb +52 -0
- data/plugins/hosts/darwin/cap/nfs.rb +14 -0
- data/plugins/hosts/darwin/cap/path.rb +66 -0
- data/plugins/hosts/darwin/cap/provider_install_virtualbox.rb +64 -0
- data/plugins/hosts/darwin/cap/rdp.rb +64 -0
- data/plugins/hosts/darwin/cap/smb.rb +128 -0
- data/plugins/hosts/darwin/cap/version.rb +26 -0
- data/plugins/hosts/darwin/host.rb +14 -0
- data/plugins/hosts/darwin/plugin.rb +83 -0
- data/plugins/hosts/darwin/scripts/install_virtualbox.sh +18 -0
- data/plugins/hosts/freebsd/cap/nfs.rb +34 -0
- data/plugins/hosts/freebsd/host.rb +15 -0
- data/plugins/hosts/freebsd/plugin.rb +34 -0
- data/plugins/hosts/gentoo/cap/nfs.rb +42 -0
- data/plugins/hosts/gentoo/host.rb +14 -0
- data/plugins/hosts/gentoo/plugin.rb +31 -0
- data/plugins/hosts/linux/cap/fs_iso.rb +52 -0
- data/plugins/hosts/linux/cap/nfs.rb +296 -0
- data/plugins/hosts/linux/cap/rdp.rb +59 -0
- data/plugins/hosts/linux/cap/ssh.rb +19 -0
- data/plugins/hosts/linux/host.rb +15 -0
- data/plugins/hosts/linux/plugin.rb +70 -0
- data/plugins/hosts/null/host.rb +15 -0
- data/plugins/hosts/null/plugin.rb +18 -0
- data/plugins/hosts/redhat/cap/nfs.rb +58 -0
- data/plugins/hosts/redhat/host.rb +31 -0
- data/plugins/hosts/redhat/plugin.rb +30 -0
- data/plugins/hosts/slackware/cap/nfs.rb +18 -0
- data/plugins/hosts/slackware/host.rb +15 -0
- data/plugins/hosts/slackware/plugin.rb +30 -0
- data/plugins/hosts/suse/cap/nfs.rb +22 -0
- data/plugins/hosts/suse/host.rb +30 -0
- data/plugins/hosts/suse/plugin.rb +33 -0
- data/plugins/hosts/void/cap/nfs.rb +27 -0
- data/plugins/hosts/void/host.rb +23 -0
- data/plugins/hosts/void/plugin.rb +33 -0
- data/plugins/hosts/windows/cap/configured_ip_addresses.rb +32 -0
- data/plugins/hosts/windows/cap/fs_iso.rb +51 -0
- data/plugins/hosts/windows/cap/nfs.rb +14 -0
- data/plugins/hosts/windows/cap/provider_install_virtualbox.rb +65 -0
- data/plugins/hosts/windows/cap/ps.rb +50 -0
- data/plugins/hosts/windows/cap/rdp.rb +33 -0
- data/plugins/hosts/windows/cap/smb.rb +203 -0
- data/plugins/hosts/windows/cap/ssh.rb +29 -0
- data/plugins/hosts/windows/host.rb +26 -0
- data/plugins/hosts/windows/plugin.rb +83 -0
- data/plugins/hosts/windows/scripts/check_credentials.ps1 +37 -0
- data/plugins/hosts/windows/scripts/host_info.ps1 +24 -0
- data/plugins/hosts/windows/scripts/install_virtualbox.ps1 +40 -0
- data/plugins/hosts/windows/scripts/set_share.ps1 +40 -0
- data/plugins/hosts/windows/scripts/set_ssh_key_permissions.ps1 +20 -0
- data/plugins/hosts/windows/scripts/unset_share.ps1 +13 -0
- data/plugins/hosts/windows/scripts/utils/VagrantSSH/VagrantSSH.psm1 +29 -0
- data/plugins/kernel_v1/config/nfs.rb +23 -0
- data/plugins/kernel_v1/config/package.rb +20 -0
- data/plugins/kernel_v1/config/ssh.rb +50 -0
- data/plugins/kernel_v1/config/vagrant.rb +34 -0
- data/plugins/kernel_v1/config/vm.rb +191 -0
- data/plugins/kernel_v1/plugin.rb +47 -0
- data/plugins/kernel_v2/config/cloud_init.rb +136 -0
- data/plugins/kernel_v2/config/disk.rb +224 -0
- data/plugins/kernel_v2/config/package.rb +24 -0
- data/plugins/kernel_v2/config/push.rb +155 -0
- data/plugins/kernel_v2/config/ssh.rb +93 -0
- data/plugins/kernel_v2/config/ssh_connect.rb +194 -0
- data/plugins/kernel_v2/config/trigger.rb +214 -0
- data/plugins/kernel_v2/config/vagrant.rb +99 -0
- data/plugins/kernel_v2/config/vm.rb +1062 -0
- data/plugins/kernel_v2/config/vm_provisioner.rb +202 -0
- data/plugins/kernel_v2/config/vm_subvm.rb +33 -0
- data/plugins/kernel_v2/config/vm_trigger.rb +297 -0
- data/plugins/kernel_v2/plugin.rb +71 -0
- data/plugins/providers/docker/action/build.rb +99 -0
- data/plugins/providers/docker/action/compare_synced_folders.rb +65 -0
- data/plugins/providers/docker/action/connect_networks.rb +80 -0
- data/plugins/providers/docker/action/create.rb +162 -0
- data/plugins/providers/docker/action/destroy.rb +34 -0
- data/plugins/providers/docker/action/destroy_build_image.rb +51 -0
- data/plugins/providers/docker/action/destroy_network.rb +53 -0
- data/plugins/providers/docker/action/forwarded_ports.rb +36 -0
- data/plugins/providers/docker/action/has_ssh.rb +21 -0
- data/plugins/providers/docker/action/host_machine.rb +75 -0
- data/plugins/providers/docker/action/host_machine_build_dir.rb +48 -0
- data/plugins/providers/docker/action/host_machine_port_checker.rb +34 -0
- data/plugins/providers/docker/action/host_machine_port_warning.rb +40 -0
- data/plugins/providers/docker/action/host_machine_required.rb +20 -0
- data/plugins/providers/docker/action/host_machine_sync_folders.rb +175 -0
- data/plugins/providers/docker/action/host_machine_sync_folders_disable.rb +91 -0
- data/plugins/providers/docker/action/init_state.rb +23 -0
- data/plugins/providers/docker/action/is_build.rb +19 -0
- data/plugins/providers/docker/action/is_host_machine_created.rb +32 -0
- data/plugins/providers/docker/action/login.rb +51 -0
- data/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +64 -0
- data/plugins/providers/docker/action/prepare_networks.rb +372 -0
- data/plugins/providers/docker/action/prepare_nfs_settings.rb +60 -0
- data/plugins/providers/docker/action/prepare_nfs_valid_ids.rb +22 -0
- data/plugins/providers/docker/action/prepare_ssh.rb +48 -0
- data/plugins/providers/docker/action/pull.rb +30 -0
- data/plugins/providers/docker/action/start.rb +24 -0
- data/plugins/providers/docker/action/stop.rb +24 -0
- data/plugins/providers/docker/action/wait_for_running.rb +70 -0
- data/plugins/providers/docker/action.rb +319 -0
- data/plugins/providers/docker/cap/has_communicator.rb +14 -0
- data/plugins/providers/docker/cap/proxy_machine.rb +15 -0
- data/plugins/providers/docker/cap/public_address.rb +26 -0
- data/plugins/providers/docker/command/exec.rb +112 -0
- data/plugins/providers/docker/command/logs.rb +111 -0
- data/plugins/providers/docker/command/run.rb +76 -0
- data/plugins/providers/docker/communicator.rb +199 -0
- data/plugins/providers/docker/config.rb +362 -0
- data/plugins/providers/docker/driver/compose.rb +315 -0
- data/plugins/providers/docker/driver.rb +416 -0
- data/plugins/providers/docker/errors.rb +108 -0
- data/plugins/providers/docker/executor/local.rb +48 -0
- data/plugins/providers/docker/executor/vagrant.rb +88 -0
- data/plugins/providers/docker/hostmachine/Vagrantfile +3 -0
- data/plugins/providers/docker/plugin.rb +89 -0
- data/plugins/providers/docker/provider.rb +215 -0
- data/plugins/providers/docker/synced_folder.rb +35 -0
- data/plugins/providers/hyperv/action/check_access.rb +27 -0
- data/plugins/providers/hyperv/action/check_enabled.rb +25 -0
- data/plugins/providers/hyperv/action/configure.rb +115 -0
- data/plugins/providers/hyperv/action/delete_vm.rb +28 -0
- data/plugins/providers/hyperv/action/export.rb +45 -0
- data/plugins/providers/hyperv/action/import.rb +86 -0
- data/plugins/providers/hyperv/action/is_windows.rb +19 -0
- data/plugins/providers/hyperv/action/message_will_not_destroy.rb +20 -0
- data/plugins/providers/hyperv/action/net_set_mac.rb +23 -0
- data/plugins/providers/hyperv/action/net_set_vlan.rb +23 -0
- data/plugins/providers/hyperv/action/package.rb +19 -0
- data/plugins/providers/hyperv/action/package_metadata_json.rb +37 -0
- data/plugins/providers/hyperv/action/package_setup_files.rb +19 -0
- data/plugins/providers/hyperv/action/package_setup_folders.rb +21 -0
- data/plugins/providers/hyperv/action/package_vagrantfile.rb +37 -0
- data/plugins/providers/hyperv/action/read_guest_ip.rb +45 -0
- data/plugins/providers/hyperv/action/read_state.rb +33 -0
- data/plugins/providers/hyperv/action/resume_vm.rb +20 -0
- data/plugins/providers/hyperv/action/set_name.rb +46 -0
- data/plugins/providers/hyperv/action/snapshot_delete.rb +30 -0
- data/plugins/providers/hyperv/action/snapshot_restore.rb +26 -0
- data/plugins/providers/hyperv/action/snapshot_save.rb +30 -0
- data/plugins/providers/hyperv/action/start_instance.rb +20 -0
- data/plugins/providers/hyperv/action/stop_instance.rb +20 -0
- data/plugins/providers/hyperv/action/suspend_vm.rb +20 -0
- data/plugins/providers/hyperv/action/wait_for_ip_address.rb +62 -0
- data/plugins/providers/hyperv/action.rb +326 -0
- data/plugins/providers/hyperv/cap/cleanup_disks.rb +92 -0
- data/plugins/providers/hyperv/cap/configure_disks.rb +248 -0
- data/plugins/providers/hyperv/cap/public_address.rb +18 -0
- data/plugins/providers/hyperv/cap/snapshot_list.rb +14 -0
- data/plugins/providers/hyperv/cap/validate_disk_ext.rb +37 -0
- data/plugins/providers/hyperv/config.rb +148 -0
- data/plugins/providers/hyperv/driver.rb +368 -0
- data/plugins/providers/hyperv/errors.rb +49 -0
- data/plugins/providers/hyperv/plugin.rb +74 -0
- data/plugins/providers/hyperv/provider.rb +116 -0
- data/plugins/providers/hyperv/scripts/add_dvd.ps1 +18 -0
- data/plugins/providers/hyperv/scripts/attach_disk_drive.ps1 +31 -0
- data/plugins/providers/hyperv/scripts/check_hyperv.ps1 +11 -0
- data/plugins/providers/hyperv/scripts/check_hyperv_access.ps1 +17 -0
- data/plugins/providers/hyperv/scripts/clone_vhd.ps1 +21 -0
- data/plugins/providers/hyperv/scripts/configure_vm.ps1 +130 -0
- data/plugins/providers/hyperv/scripts/create_snapshot.ps1 +27 -0
- data/plugins/providers/hyperv/scripts/delete_snapshot.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/delete_vm.ps1 +22 -0
- data/plugins/providers/hyperv/scripts/dismount_vhd.ps1 +16 -0
- data/plugins/providers/hyperv/scripts/export_vm.ps1 +32 -0
- data/plugins/providers/hyperv/scripts/file_sync.ps1 +123 -0
- data/plugins/providers/hyperv/scripts/get_network_config.ps1 +68 -0
- data/plugins/providers/hyperv/scripts/get_network_mac.ps1 +35 -0
- data/plugins/providers/hyperv/scripts/get_scsi_controller.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/get_switches.ps1 +13 -0
- data/plugins/providers/hyperv/scripts/get_vhd.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +52 -0
- data/plugins/providers/hyperv/scripts/has_vmcx_support.ps1 +12 -0
- data/plugins/providers/hyperv/scripts/import_vm.ps1 +40 -0
- data/plugins/providers/hyperv/scripts/list_hdds.ps1 +20 -0
- data/plugins/providers/hyperv/scripts/list_snapshots.ps1 +22 -0
- data/plugins/providers/hyperv/scripts/new_vhd.ps1 +34 -0
- data/plugins/providers/hyperv/scripts/remove_disk_drive.ps1 +28 -0
- data/plugins/providers/hyperv/scripts/remove_dvd.ps1 +21 -0
- data/plugins/providers/hyperv/scripts/resize_disk_drive.ps1 +21 -0
- data/plugins/providers/hyperv/scripts/restore_snapshot.ps1 +20 -0
- data/plugins/providers/hyperv/scripts/resume_vm.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1 +36 -0
- data/plugins/providers/hyperv/scripts/set_name.ps1 +27 -0
- data/plugins/providers/hyperv/scripts/set_network_mac.ps1 +21 -0
- data/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +30 -0
- data/plugins/providers/hyperv/scripts/start_vm.ps1 +29 -0
- data/plugins/providers/hyperv/scripts/stop_vm.ps1 +20 -0
- data/plugins/providers/hyperv/scripts/suspend_vm.ps1 +19 -0
- data/plugins/providers/hyperv/scripts/utils/VagrantMessages/VagrantMessages.psm1 +27 -0
- data/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +776 -0
- data/plugins/providers/virtualbox/action/boot.rb +26 -0
- data/plugins/providers/virtualbox/action/check_accessible.rb +26 -0
- data/plugins/providers/virtualbox/action/check_created.rb +24 -0
- data/plugins/providers/virtualbox/action/check_guest_additions.rb +58 -0
- data/plugins/providers/virtualbox/action/check_running.rb +24 -0
- data/plugins/providers/virtualbox/action/check_virtualbox.rb +28 -0
- data/plugins/providers/virtualbox/action/clean_machine_folder.rb +55 -0
- data/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +23 -0
- data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +34 -0
- data/plugins/providers/virtualbox/action/created.rb +23 -0
- data/plugins/providers/virtualbox/action/customize.rb +48 -0
- data/plugins/providers/virtualbox/action/destroy.rb +22 -0
- data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +26 -0
- data/plugins/providers/virtualbox/action/discard_state.rb +23 -0
- data/plugins/providers/virtualbox/action/export.rb +54 -0
- data/plugins/providers/virtualbox/action/forced_halt.rb +28 -0
- data/plugins/providers/virtualbox/action/forward_ports.rb +92 -0
- data/plugins/providers/virtualbox/action/import.rb +110 -0
- data/plugins/providers/virtualbox/action/import_master.rb +83 -0
- data/plugins/providers/virtualbox/action/is_paused.rb +23 -0
- data/plugins/providers/virtualbox/action/is_running.rb +23 -0
- data/plugins/providers/virtualbox/action/is_saved.rb +23 -0
- data/plugins/providers/virtualbox/action/match_mac_address.rb +30 -0
- data/plugins/providers/virtualbox/action/message_already_running.rb +19 -0
- data/plugins/providers/virtualbox/action/message_not_created.rb +19 -0
- data/plugins/providers/virtualbox/action/message_not_running.rb +19 -0
- data/plugins/providers/virtualbox/action/message_will_not_destroy.rb +20 -0
- data/plugins/providers/virtualbox/action/network.rb +638 -0
- data/plugins/providers/virtualbox/action/network_fix_ipv6.rb +87 -0
- data/plugins/providers/virtualbox/action/package.rb +19 -0
- data/plugins/providers/virtualbox/action/package_setup_files.rb +19 -0
- data/plugins/providers/virtualbox/action/package_setup_folders.rb +21 -0
- data/plugins/providers/virtualbox/action/package_vagrantfile.rb +36 -0
- data/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +69 -0
- data/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +38 -0
- data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +162 -0
- data/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb +20 -0
- data/plugins/providers/virtualbox/action/resume.rb +28 -0
- data/plugins/providers/virtualbox/action/sane_defaults.rb +92 -0
- data/plugins/providers/virtualbox/action/set_default_nic_type.rb +72 -0
- data/plugins/providers/virtualbox/action/set_name.rb +58 -0
- data/plugins/providers/virtualbox/action/setup_package_files.rb +20 -0
- data/plugins/providers/virtualbox/action/snapshot_delete.rb +37 -0
- data/plugins/providers/virtualbox/action/snapshot_restore.rb +33 -0
- data/plugins/providers/virtualbox/action/snapshot_save.rb +28 -0
- data/plugins/providers/virtualbox/action/suspend.rb +23 -0
- data/plugins/providers/virtualbox/action.rb +433 -0
- data/plugins/providers/virtualbox/cap/cleanup_disks.rb +86 -0
- data/plugins/providers/virtualbox/cap/configure_disks.rb +441 -0
- data/plugins/providers/virtualbox/cap/mount_options.rb +43 -0
- data/plugins/providers/virtualbox/cap/public_address.rb +18 -0
- data/plugins/providers/virtualbox/cap/validate_disk_ext.rb +37 -0
- data/plugins/providers/virtualbox/cap.rb +40 -0
- data/plugins/providers/virtualbox/config.rb +211 -0
- data/plugins/providers/virtualbox/driver/base.rb +530 -0
- data/plugins/providers/virtualbox/driver/meta.rb +212 -0
- data/plugins/providers/virtualbox/driver/version_4_0.rb +574 -0
- data/plugins/providers/virtualbox/driver/version_4_1.rb +699 -0
- data/plugins/providers/virtualbox/driver/version_4_2.rb +713 -0
- data/plugins/providers/virtualbox/driver/version_4_3.rb +757 -0
- data/plugins/providers/virtualbox/driver/version_5_0.rb +1022 -0
- data/plugins/providers/virtualbox/driver/version_5_1.rb +19 -0
- data/plugins/providers/virtualbox/driver/version_5_2.rb +19 -0
- data/plugins/providers/virtualbox/driver/version_6_0.rb +105 -0
- data/plugins/providers/virtualbox/driver/version_6_1.rb +42 -0
- data/plugins/providers/virtualbox/driver/version_7_0.rb +306 -0
- data/plugins/providers/virtualbox/driver/version_7_1.rb +19 -0
- data/plugins/providers/virtualbox/model/forwarded_port.rb +73 -0
- data/plugins/providers/virtualbox/model/storage_controller.rb +138 -0
- data/plugins/providers/virtualbox/model/storage_controller_array.rb +101 -0
- data/plugins/providers/virtualbox/plugin.rb +120 -0
- data/plugins/providers/virtualbox/provider.rb +133 -0
- data/plugins/providers/virtualbox/synced_folder.rb +153 -0
- data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +40 -0
- data/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb +47 -0
- data/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +44 -0
- data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +56 -0
- data/plugins/provisioners/ansible/cap/guest/facts.rb +27 -0
- data/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +43 -0
- data/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +26 -0
- data/plugins/provisioners/ansible/cap/guest/pip/pip.rb +49 -0
- data/plugins/provisioners/ansible/cap/guest/posix/ansible_installed.rb +28 -0
- data/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +75 -0
- data/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +26 -0
- data/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +42 -0
- data/plugins/provisioners/ansible/config/base.rb +157 -0
- data/plugins/provisioners/ansible/config/guest.rb +59 -0
- data/plugins/provisioners/ansible/config/host.rb +66 -0
- data/plugins/provisioners/ansible/constants.rb +17 -0
- data/plugins/provisioners/ansible/errors.rb +43 -0
- data/plugins/provisioners/ansible/helpers.rb +20 -0
- data/plugins/provisioners/ansible/plugin.rb +88 -0
- data/plugins/provisioners/ansible/provisioner/base.rb +405 -0
- data/plugins/provisioners/ansible/provisioner/guest.rb +197 -0
- data/plugins/provisioners/ansible/provisioner/host.rb +352 -0
- data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +24 -0
- data/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +17 -0
- data/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +37 -0
- data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +37 -0
- data/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb +21 -0
- data/plugins/provisioners/cfengine/config.rb +127 -0
- data/plugins/provisioners/cfengine/plugin.rb +50 -0
- data/plugins/provisioners/cfengine/provisioner.rb +142 -0
- data/plugins/provisioners/chef/cap/debian/chef_install.rb +22 -0
- data/plugins/provisioners/chef/cap/freebsd/chef_install.rb +21 -0
- data/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +27 -0
- data/plugins/provisioners/chef/cap/linux/chef_installed.rb +27 -0
- data/plugins/provisioners/chef/cap/omnios/chef_install.rb +23 -0
- data/plugins/provisioners/chef/cap/omnios/chef_installed.rb +28 -0
- data/plugins/provisioners/chef/cap/redhat/chef_install.rb +27 -0
- data/plugins/provisioners/chef/cap/suse/chef_install.rb +30 -0
- data/plugins/provisioners/chef/cap/windows/chef_install.rb +19 -0
- data/plugins/provisioners/chef/cap/windows/chef_installed.rb +24 -0
- data/plugins/provisioners/chef/command_builder.rb +87 -0
- data/plugins/provisioners/chef/config/base.rb +139 -0
- data/plugins/provisioners/chef/config/base_runner.rb +131 -0
- data/plugins/provisioners/chef/config/chef_apply.rb +53 -0
- data/plugins/provisioners/chef/config/chef_client.rb +77 -0
- data/plugins/provisioners/chef/config/chef_solo.rb +141 -0
- data/plugins/provisioners/chef/config/chef_zero.rb +133 -0
- data/plugins/provisioners/chef/installer.rb +51 -0
- data/plugins/provisioners/chef/omnibus.rb +40 -0
- data/plugins/provisioners/chef/plugin.rb +108 -0
- data/plugins/provisioners/chef/provisioner/base.rb +258 -0
- data/plugins/provisioners/chef/provisioner/chef_apply.rb +74 -0
- data/plugins/provisioners/chef/provisioner/chef_client.rb +179 -0
- data/plugins/provisioners/chef/provisioner/chef_solo.rb +244 -0
- data/plugins/provisioners/chef/provisioner/chef_zero.rb +123 -0
- data/plugins/provisioners/container/client.rb +206 -0
- data/plugins/provisioners/container/config.rb +86 -0
- data/plugins/provisioners/container/installer.rb +16 -0
- data/plugins/provisioners/container/plugin.rb +26 -0
- data/plugins/provisioners/container/provisioner.rb +31 -0
- data/plugins/provisioners/docker/cap/centos/docker_install.rb +44 -0
- data/plugins/provisioners/docker/cap/centos/docker_start_service.rb +27 -0
- data/plugins/provisioners/docker/cap/debian/docker_install.rb +21 -0
- data/plugins/provisioners/docker/cap/debian/docker_start_service.rb +16 -0
- data/plugins/provisioners/docker/cap/fedora/docker_install.rb +30 -0
- data/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb +23 -0
- data/plugins/provisioners/docker/cap/linux/docker_daemon_running.rb +16 -0
- data/plugins/provisioners/docker/cap/linux/docker_installed.rb +29 -0
- data/plugins/provisioners/docker/cap/windows/docker_daemon_running.rb +16 -0
- data/plugins/provisioners/docker/client.rb +26 -0
- data/plugins/provisioners/docker/config.rb +19 -0
- data/plugins/provisioners/docker/installer.rb +37 -0
- data/plugins/provisioners/docker/plugin.rb +71 -0
- data/plugins/provisioners/docker/provisioner.rb +59 -0
- data/plugins/provisioners/file/config.rb +32 -0
- data/plugins/provisioners/file/plugin.rb +26 -0
- data/plugins/provisioners/file/provisioner.rb +46 -0
- data/plugins/provisioners/podman/cap/centos/podman_install.rb +38 -0
- data/plugins/provisioners/podman/cap/linux/podman_installed.rb +16 -0
- data/plugins/provisioners/podman/cap/redhat/podman_install.rb +29 -0
- data/plugins/provisioners/podman/client.rb +15 -0
- data/plugins/provisioners/podman/config.rb +31 -0
- data/plugins/provisioners/podman/installer.rb +36 -0
- data/plugins/provisioners/podman/plugin.rb +41 -0
- data/plugins/provisioners/podman/provisioner.rb +55 -0
- data/plugins/provisioners/puppet/config/puppet.rb +178 -0
- data/plugins/provisioners/puppet/config/puppet_server.rb +84 -0
- data/plugins/provisioners/puppet/plugin.rb +36 -0
- data/plugins/provisioners/puppet/provisioner/puppet.rb +336 -0
- data/plugins/provisioners/puppet/provisioner/puppet_server.rb +114 -0
- data/plugins/provisioners/salt/bootstrap_downloader.rb +62 -0
- data/plugins/provisioners/salt/config.rb +194 -0
- data/plugins/provisioners/salt/errors.rb +18 -0
- data/plugins/provisioners/salt/plugin.rb +25 -0
- data/plugins/provisioners/salt/provisioner.rb +499 -0
- data/plugins/provisioners/shell/config.rb +146 -0
- data/plugins/provisioners/shell/plugin.rb +26 -0
- data/plugins/provisioners/shell/provisioner.rb +368 -0
- data/plugins/pushes/atlas/config.rb +151 -0
- data/plugins/pushes/atlas/errors.rb +16 -0
- data/plugins/pushes/atlas/locales/en.yml +25 -0
- data/plugins/pushes/atlas/plugin.rb +38 -0
- data/plugins/pushes/atlas/push.rb +87 -0
- data/plugins/pushes/ftp/adapter.rb +147 -0
- data/plugins/pushes/ftp/config.rb +133 -0
- data/plugins/pushes/ftp/errors.rb +16 -0
- data/plugins/pushes/ftp/locales/en.yml +19 -0
- data/plugins/pushes/ftp/plugin.rb +36 -0
- data/plugins/pushes/ftp/push.rb +137 -0
- data/plugins/pushes/heroku/config.rb +77 -0
- data/plugins/pushes/heroku/errors.rb +24 -0
- data/plugins/pushes/heroku/locales/en.yml +33 -0
- data/plugins/pushes/heroku/plugin.rb +36 -0
- data/plugins/pushes/heroku/push.rb +147 -0
- data/plugins/pushes/local-exec/config.rb +80 -0
- data/plugins/pushes/local-exec/errors.rb +16 -0
- data/plugins/pushes/local-exec/locales/en.yml +26 -0
- data/plugins/pushes/local-exec/plugin.rb +36 -0
- data/plugins/pushes/local-exec/push.rb +91 -0
- data/plugins/pushes/noop/config.rb +19 -0
- data/plugins/pushes/noop/plugin.rb +25 -0
- data/plugins/pushes/noop/push.rb +12 -0
- data/plugins/synced_folders/nfs/action_cleanup.rb +32 -0
- data/plugins/synced_folders/nfs/config.rb +35 -0
- data/plugins/synced_folders/nfs/plugin.rb +49 -0
- data/plugins/synced_folders/nfs/synced_folder.rb +171 -0
- data/plugins/synced_folders/rsync/command/rsync.rb +81 -0
- data/plugins/synced_folders/rsync/command/rsync_auto.rb +244 -0
- data/plugins/synced_folders/rsync/default_unix_cap.rb +49 -0
- data/plugins/synced_folders/rsync/helper.rb +296 -0
- data/plugins/synced_folders/rsync/plugin.rb +31 -0
- data/plugins/synced_folders/rsync/synced_folder.rb +62 -0
- data/plugins/synced_folders/smb/cap/default_fstab_modification.rb +14 -0
- data/plugins/synced_folders/smb/cap/mount_options.rb +59 -0
- data/plugins/synced_folders/smb/config.rb +26 -0
- data/plugins/synced_folders/smb/errors.rb +65 -0
- data/plugins/synced_folders/smb/plugin.rb +60 -0
- data/plugins/synced_folders/smb/synced_folder.rb +189 -0
- data/plugins/synced_folders/unix_mount_helpers.rb +122 -0
- data/scripts/install_rvm +19 -0
- data/scripts/setup_tests +49 -0
- data/scripts/sign.sh +29 -0
- data/scripts/website_push_www.sh +43 -0
- data/tasks/acceptance.rake +22 -0
- data/tasks/bundler.rake +3 -0
- data/tasks/test.rake +8 -0
- data/templates/commands/init/Vagrantfile.erb +86 -0
- data/templates/commands/init/Vagrantfile.min.erb +12 -0
- data/templates/commands/ssh_config/config.erb +42 -0
- data/templates/commands/winrm_config/config.erb +11 -0
- data/templates/config/messages.erb +14 -0
- data/templates/config/validation_failed.erb +7 -0
- data/templates/guests/alpine/network_dhcp.erb +13 -0
- data/templates/guests/alpine/network_static.erb +7 -0
- data/templates/guests/alt/network_dhcp.erb +7 -0
- data/templates/guests/alt/network_ipv4address.erb +3 -0
- data/templates/guests/alt/network_ipv4route.erb +5 -0
- data/templates/guests/alt/network_static.erb +7 -0
- data/templates/guests/arch/default_network/network_dhcp.erb +4 -0
- data/templates/guests/arch/default_network/network_static.erb +8 -0
- data/templates/guests/arch/default_network/network_static6.erb +8 -0
- data/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
- data/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
- data/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
- data/templates/guests/coreos/etcd.service.erb +10 -0
- data/templates/guests/debian/network_dhcp.erb +13 -0
- data/templates/guests/debian/network_static.erb +10 -0
- data/templates/guests/debian/network_static6.erb +10 -0
- data/templates/guests/freebsd/network_dhcp.erb +4 -0
- data/templates/guests/freebsd/network_static.erb +6 -0
- data/templates/guests/freebsd/network_static6.erb +6 -0
- data/templates/guests/funtoo/network_dhcp.erb +4 -0
- data/templates/guests/funtoo/network_static.erb +10 -0
- data/templates/guests/funtoo/network_static6.erb +9 -0
- data/templates/guests/gentoo/network_dhcp.erb +4 -0
- data/templates/guests/gentoo/network_static.erb +8 -0
- data/templates/guests/gentoo/network_static6.erb +8 -0
- data/templates/guests/gentoo/network_systemd.erb +16 -0
- data/templates/guests/linux/etc_fstab.erb +6 -0
- data/templates/guests/netbsd/network_dhcp.erb +3 -0
- data/templates/guests/netbsd/network_static.erb +3 -0
- data/templates/guests/nixos/hostname.erb +6 -0
- data/templates/guests/nixos/network.erb +15 -0
- data/templates/guests/openbsd/network_dhcp.erb +1 -0
- data/templates/guests/openbsd/network_static.erb +1 -0
- data/templates/guests/openbsd/network_static6.erb +1 -0
- data/templates/guests/redhat/network_dhcp.erb +7 -0
- data/templates/guests/redhat/network_static.erb +16 -0
- data/templates/guests/redhat/network_static6.erb +12 -0
- data/templates/guests/slackware/network_dhcp.erb +11 -0
- data/templates/guests/slackware/network_static.erb +13 -0
- data/templates/guests/suse/network_dhcp.erb +6 -0
- data/templates/guests/suse/network_static.erb +13 -0
- data/templates/guests/suse/network_static6.erb +16 -0
- data/templates/license/license.html.tmpl +127 -0
- data/templates/license/license.rtf.tmpl +0 -0
- data/templates/license/license.tmpl +92 -0
- data/templates/locales/comm_winrm.yml +85 -0
- data/templates/locales/command_ps.yml +35 -0
- data/templates/locales/command_rdp.yml +28 -0
- data/templates/locales/en.yml +3149 -0
- data/templates/locales/guest_windows.yml +26 -0
- data/templates/locales/providers_docker.yml +321 -0
- data/templates/locales/providers_hyperv.yml +111 -0
- data/templates/locales/synced_folder_smb.yml +98 -0
- data/templates/networking/network_manager/network_manager_device.erb +41 -0
- data/templates/nfs/exports_bsd.erb +5 -0
- data/templates/nfs/exports_darwin.erb +7 -0
- data/templates/nfs/exports_linux.erb +7 -0
- data/templates/package_Vagrantfile.erb +11 -0
- data/templates/provisioners/chef_client/client.erb +41 -0
- data/templates/provisioners/chef_solo/solo.erb +52 -0
- data/templates/provisioners/chef_zero/zero.erb +45 -0
- data/templates/rgloader.rb +12 -0
- data/vagrant-spec.config.example.rb +13 -0
- data/vagrant.gemspec +113 -20
- data/version.txt +1 -0
- metadata +1621 -43
- data/LICENSE.txt +0 -22
- data/message.txt +0 -17
@@ -0,0 +1,1158 @@
|
|
1
|
+
# Copyright (c) HashiCorp, Inc.
|
2
|
+
# SPDX-License-Identifier: BUSL-1.1
|
3
|
+
|
4
|
+
# This file contains all of the internal errors in Vagrant's core
|
5
|
+
# commands, actions, etc.
|
6
|
+
|
7
|
+
module Vagrant
|
8
|
+
# This module contains all of the internal errors in Vagrant's core.
|
9
|
+
# These errors are _expected_ errors and as such don't typically represent
|
10
|
+
# bugs in Vagrant itself. These are meant as a way to detect errors and
|
11
|
+
# display them in a user-friendly way.
|
12
|
+
#
|
13
|
+
# # Defining a new Error
|
14
|
+
#
|
15
|
+
# To define a new error, inherit from {VagrantError}, which lets Vagrant
|
16
|
+
# know that this is an expected error, and also gives you some helpers for
|
17
|
+
# providing exit codes and error messages. An example is shown below, then
|
18
|
+
# it is explained:
|
19
|
+
#
|
20
|
+
# class MyError < Vagrant::Errors::VagrantError
|
21
|
+
# error_key "my_error"
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# This creates an error with an I18n error key of "my_error." {VagrantError}
|
25
|
+
# uses I18n to look up error messages, in the "vagrant.errors" namespace. So
|
26
|
+
# in the above, the error message would be the translation of "vagrant.errors.my_error"
|
27
|
+
#
|
28
|
+
# If you don't want to use I18n, you can override the {#initialize} method and
|
29
|
+
# set your own error message.
|
30
|
+
#
|
31
|
+
# # Raising an Error
|
32
|
+
#
|
33
|
+
# To raise an error, it is nothing special, just raise it like any normal
|
34
|
+
# exception:
|
35
|
+
#
|
36
|
+
# raise MyError.new
|
37
|
+
#
|
38
|
+
# Eventually this exception will bubble out to the `vagrant` binary which
|
39
|
+
# will show a nice error message. And if it is raised in the middle of a
|
40
|
+
# middleware sequence, then {Action::Warden} will catch it and begin the
|
41
|
+
# recovery process prior to exiting.
|
42
|
+
module Errors
|
43
|
+
# Main superclass of any errors in Vagrant. This provides some
|
44
|
+
# convenience methods for setting the status code and error key.
|
45
|
+
# The status code is used by the `vagrant` executable as the
|
46
|
+
# error code, and the error key is used as a default message from
|
47
|
+
# I18n.
|
48
|
+
class VagrantError < StandardError
|
49
|
+
# This is extra data passed into the message for translation.
|
50
|
+
attr_accessor :extra_data
|
51
|
+
|
52
|
+
def self.error_key(key=nil, namespace=nil)
|
53
|
+
define_method(:error_key) { key }
|
54
|
+
error_namespace(namespace) if namespace
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.error_message(message)
|
58
|
+
define_method(:error_message) { message }
|
59
|
+
end
|
60
|
+
|
61
|
+
def self.error_namespace(namespace)
|
62
|
+
define_method(:error_namespace) { namespace }
|
63
|
+
end
|
64
|
+
|
65
|
+
def initialize(*args)
|
66
|
+
key = args.shift if args.first.is_a?(Symbol)
|
67
|
+
message = args.shift if args.first.is_a?(Hash)
|
68
|
+
message ||= {}
|
69
|
+
@extra_data = message.dup
|
70
|
+
message[:_key] ||= error_key
|
71
|
+
message[:_namespace] ||= error_namespace
|
72
|
+
message[:_key] = key if key
|
73
|
+
|
74
|
+
if message[:_key]
|
75
|
+
message = translate_error(message)
|
76
|
+
else
|
77
|
+
message = error_message
|
78
|
+
end
|
79
|
+
|
80
|
+
super(message)
|
81
|
+
end
|
82
|
+
|
83
|
+
# The error message for this error. This is used if no error_key
|
84
|
+
# is specified for a translatable error message.
|
85
|
+
def error_message; "No error message"; end
|
86
|
+
|
87
|
+
# The default error namespace which is used for the error key.
|
88
|
+
# This can be overridden here or by calling the "error_namespace"
|
89
|
+
# class method.
|
90
|
+
def error_namespace; "vagrant.errors"; end
|
91
|
+
|
92
|
+
# The key for the error message. This should be set using the
|
93
|
+
# {error_key} method but can be overridden here if needed.
|
94
|
+
def error_key; nil; end
|
95
|
+
|
96
|
+
# This is the exit code that should be used when exiting from
|
97
|
+
# this exception.
|
98
|
+
#
|
99
|
+
# @return [Integer]
|
100
|
+
def status_code; 1; end
|
101
|
+
|
102
|
+
protected
|
103
|
+
|
104
|
+
def translate_error(opts)
|
105
|
+
return nil if !opts[:_key]
|
106
|
+
I18n.t("#{opts[:_namespace]}.#{opts[:_key]}", **opts)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
class ActiveMachineWithDifferentProvider < VagrantError
|
111
|
+
error_key(:active_machine_with_different_provider)
|
112
|
+
end
|
113
|
+
|
114
|
+
class AliasInvalidError < VagrantError
|
115
|
+
error_key(:alias_invalid_error)
|
116
|
+
end
|
117
|
+
|
118
|
+
class BatchMultiError < VagrantError
|
119
|
+
error_key(:batch_multi_error)
|
120
|
+
end
|
121
|
+
|
122
|
+
class BoxAddDirectVersion < VagrantError
|
123
|
+
error_key(:box_add_direct_version)
|
124
|
+
end
|
125
|
+
|
126
|
+
class BoxAddMetadataMultiURL < VagrantError
|
127
|
+
error_key(:box_add_metadata_multi_url)
|
128
|
+
end
|
129
|
+
|
130
|
+
class BoxAddNameMismatch < VagrantError
|
131
|
+
error_key(:box_add_name_mismatch)
|
132
|
+
end
|
133
|
+
|
134
|
+
class BoxAddNameRequired < VagrantError
|
135
|
+
error_key(:box_add_name_required)
|
136
|
+
end
|
137
|
+
|
138
|
+
class BoxAddNoMatchingProvider < VagrantError
|
139
|
+
error_key(:box_add_no_matching_provider)
|
140
|
+
end
|
141
|
+
|
142
|
+
class BoxAddNoMatchingVersion < VagrantError
|
143
|
+
error_key(:box_add_no_matching_version)
|
144
|
+
end
|
145
|
+
|
146
|
+
class BoxAddShortNotFound < VagrantError
|
147
|
+
error_key(:box_add_short_not_found)
|
148
|
+
end
|
149
|
+
|
150
|
+
class BoxAlreadyExists < VagrantError
|
151
|
+
error_key(:box_add_exists)
|
152
|
+
end
|
153
|
+
|
154
|
+
class BoxChecksumInvalidType < VagrantError
|
155
|
+
error_key(:box_checksum_invalid_type)
|
156
|
+
end
|
157
|
+
|
158
|
+
class BoxChecksumMismatch < VagrantError
|
159
|
+
error_key(:box_checksum_mismatch)
|
160
|
+
end
|
161
|
+
|
162
|
+
class BoxConfigChangingBox < VagrantError
|
163
|
+
error_key(:box_config_changing_box)
|
164
|
+
end
|
165
|
+
|
166
|
+
class BoxFileNotExist < VagrantError
|
167
|
+
error_key(:box_file_not_exist)
|
168
|
+
end
|
169
|
+
|
170
|
+
class BoxMetadataCorrupted < VagrantError
|
171
|
+
error_key(:box_metadata_corrupted)
|
172
|
+
end
|
173
|
+
|
174
|
+
class BoxMetadataMissingRequiredFields < VagrantError
|
175
|
+
error_key(:box_metadata_missing_required_fields)
|
176
|
+
end
|
177
|
+
|
178
|
+
class BoxMetadataDownloadError < VagrantError
|
179
|
+
error_key(:box_metadata_download_error)
|
180
|
+
end
|
181
|
+
|
182
|
+
class BoxMetadataFileNotFound < VagrantError
|
183
|
+
error_key(:box_metadata_file_not_found)
|
184
|
+
end
|
185
|
+
|
186
|
+
class BoxMetadataMalformed < VagrantError
|
187
|
+
error_key(:box_metadata_malformed)
|
188
|
+
end
|
189
|
+
|
190
|
+
class BoxMetadataMalformedVersion < VagrantError
|
191
|
+
error_key(:box_metadata_malformed_version)
|
192
|
+
end
|
193
|
+
|
194
|
+
class BoxNotFound < VagrantError
|
195
|
+
error_key(:box_not_found)
|
196
|
+
end
|
197
|
+
|
198
|
+
class BoxNotFoundWithProvider < VagrantError
|
199
|
+
error_key(:box_not_found_with_provider)
|
200
|
+
end
|
201
|
+
|
202
|
+
class BoxNotFoundWithProviderArchitecture < VagrantError
|
203
|
+
error_key(:box_not_found_with_provider_architecture)
|
204
|
+
end
|
205
|
+
|
206
|
+
class BoxNotFoundWithProviderAndVersion < VagrantError
|
207
|
+
error_key(:box_not_found_with_provider_and_version)
|
208
|
+
end
|
209
|
+
|
210
|
+
class BoxProviderDoesntMatch < VagrantError
|
211
|
+
error_key(:box_provider_doesnt_match)
|
212
|
+
end
|
213
|
+
|
214
|
+
class BoxRemoveNotFound < VagrantError
|
215
|
+
error_key(:box_remove_not_found)
|
216
|
+
end
|
217
|
+
|
218
|
+
class BoxRemoveArchitectureNotFound < VagrantError
|
219
|
+
error_key(:box_remove_architecture_not_found)
|
220
|
+
end
|
221
|
+
|
222
|
+
class BoxRemoveProviderNotFound < VagrantError
|
223
|
+
error_key(:box_remove_provider_not_found)
|
224
|
+
end
|
225
|
+
|
226
|
+
class BoxRemoveVersionNotFound < VagrantError
|
227
|
+
error_key(:box_remove_version_not_found)
|
228
|
+
end
|
229
|
+
|
230
|
+
class BoxRemoveMultiArchitecture < VagrantError
|
231
|
+
error_key(:box_remove_multi_architecture)
|
232
|
+
end
|
233
|
+
|
234
|
+
class BoxRemoveMultiProvider < VagrantError
|
235
|
+
error_key(:box_remove_multi_provider)
|
236
|
+
end
|
237
|
+
|
238
|
+
class BoxRemoveMultiVersion < VagrantError
|
239
|
+
error_key(:box_remove_multi_version)
|
240
|
+
end
|
241
|
+
|
242
|
+
class BoxServerNotSet < VagrantError
|
243
|
+
error_key(:box_server_not_set)
|
244
|
+
end
|
245
|
+
|
246
|
+
class BoxUnpackageFailure < VagrantError
|
247
|
+
error_key(:untar_failure, "vagrant.actions.box.unpackage")
|
248
|
+
end
|
249
|
+
|
250
|
+
class BoxUpdateMultiProvider < VagrantError
|
251
|
+
error_key(:box_update_multi_provider)
|
252
|
+
end
|
253
|
+
|
254
|
+
class BoxUpdateMultiArchitecture < VagrantError
|
255
|
+
error_key(:box_update_multi_architecture)
|
256
|
+
end
|
257
|
+
|
258
|
+
class BoxUpdateNoMetadata < VagrantError
|
259
|
+
error_key(:box_update_no_metadata)
|
260
|
+
end
|
261
|
+
|
262
|
+
class BoxVerificationFailed < VagrantError
|
263
|
+
error_key(:failed, "vagrant.actions.box.verify")
|
264
|
+
end
|
265
|
+
|
266
|
+
class BoxVersionInvalid < VagrantError
|
267
|
+
error_key(:box_version_invalid)
|
268
|
+
end
|
269
|
+
|
270
|
+
class BundlerDisabled < VagrantError
|
271
|
+
error_key(:bundler_disabled)
|
272
|
+
end
|
273
|
+
|
274
|
+
class BundlerError < VagrantError
|
275
|
+
error_key(:bundler_error)
|
276
|
+
end
|
277
|
+
|
278
|
+
class SourceSpecNotFound < BundlerError
|
279
|
+
error_key(:source_spec_not_found)
|
280
|
+
end
|
281
|
+
|
282
|
+
class CantReadMACAddresses < VagrantError
|
283
|
+
error_key(:cant_read_mac_addresses)
|
284
|
+
end
|
285
|
+
|
286
|
+
class CapabilityHostExplicitNotDetected < VagrantError
|
287
|
+
error_key(:capability_host_explicit_not_detected)
|
288
|
+
end
|
289
|
+
|
290
|
+
class CapabilityHostNotDetected < VagrantError
|
291
|
+
error_key(:capability_host_not_detected)
|
292
|
+
end
|
293
|
+
|
294
|
+
class CapabilityInvalid < VagrantError
|
295
|
+
error_key(:capability_invalid)
|
296
|
+
end
|
297
|
+
|
298
|
+
class CapabilityNotFound < VagrantError
|
299
|
+
error_key(:capability_not_found)
|
300
|
+
end
|
301
|
+
|
302
|
+
class CFEngineBootstrapFailed < VagrantError
|
303
|
+
error_key(:cfengine_bootstrap_failed)
|
304
|
+
end
|
305
|
+
|
306
|
+
class CFEngineCantAutodetectIP < VagrantError
|
307
|
+
error_key(:cfengine_cant_autodetect_ip)
|
308
|
+
end
|
309
|
+
|
310
|
+
class CFEngineInstallFailed < VagrantError
|
311
|
+
error_key(:cfengine_install_failed)
|
312
|
+
end
|
313
|
+
|
314
|
+
class CFEngineNotInstalled < VagrantError
|
315
|
+
error_key(:cfengine_not_installed)
|
316
|
+
end
|
317
|
+
|
318
|
+
class CLIInvalidUsage < VagrantError
|
319
|
+
error_key(:cli_invalid_usage)
|
320
|
+
end
|
321
|
+
|
322
|
+
class CLIInvalidOptions < VagrantError
|
323
|
+
error_key(:cli_invalid_options)
|
324
|
+
end
|
325
|
+
|
326
|
+
class CloneNotFound < VagrantError
|
327
|
+
error_key(:clone_not_found)
|
328
|
+
end
|
329
|
+
|
330
|
+
class CloneMachineNotFound < VagrantError
|
331
|
+
error_key(:clone_machine_not_found)
|
332
|
+
end
|
333
|
+
|
334
|
+
class CloudInitNotFound < VagrantError
|
335
|
+
error_key(:cloud_init_not_found)
|
336
|
+
end
|
337
|
+
|
338
|
+
class CloudInitCommandFailed < VagrantError
|
339
|
+
error_key(:cloud_init_command_failed)
|
340
|
+
end
|
341
|
+
|
342
|
+
class CommandDeprecated < VagrantError
|
343
|
+
error_key(:command_deprecated)
|
344
|
+
end
|
345
|
+
|
346
|
+
class CommandSuspendAllArgs < VagrantError
|
347
|
+
error_key(:command_suspend_all_arguments)
|
348
|
+
end
|
349
|
+
|
350
|
+
class CommandUnavailable < VagrantError
|
351
|
+
error_key(:command_unavailable)
|
352
|
+
end
|
353
|
+
|
354
|
+
class CommandUnavailableWindows < CommandUnavailable
|
355
|
+
error_key(:command_unavailable_windows)
|
356
|
+
end
|
357
|
+
|
358
|
+
class CommunicatorNotFound < VagrantError
|
359
|
+
error_key(:communicator_not_found)
|
360
|
+
end
|
361
|
+
|
362
|
+
class ConfigInvalid < VagrantError
|
363
|
+
error_key(:config_invalid)
|
364
|
+
end
|
365
|
+
|
366
|
+
class ConfigUpgradeErrors < VagrantError
|
367
|
+
error_key(:config_upgrade_errors)
|
368
|
+
end
|
369
|
+
|
370
|
+
class CopyPrivateKeyFailed < VagrantError
|
371
|
+
error_key(:copy_private_key_failed)
|
372
|
+
end
|
373
|
+
|
374
|
+
class CorruptMachineIndex < VagrantError
|
375
|
+
error_key(:corrupt_machine_index)
|
376
|
+
end
|
377
|
+
|
378
|
+
class CreateIsoHostCapNotFound < VagrantError
|
379
|
+
error_key(:create_iso_host_cap_not_found)
|
380
|
+
end
|
381
|
+
|
382
|
+
class DarwinMountFailed < VagrantError
|
383
|
+
error_key(:darwin_mount_failed)
|
384
|
+
end
|
385
|
+
|
386
|
+
class DarwinVersionFailed < VagrantError
|
387
|
+
error_key(:darwin_version_failed)
|
388
|
+
end
|
389
|
+
|
390
|
+
class DestroyRequiresForce < VagrantError
|
391
|
+
error_key(:destroy_requires_force)
|
392
|
+
end
|
393
|
+
|
394
|
+
class DotfileUpgradeJSONError < VagrantError
|
395
|
+
error_key(:dotfile_upgrade_json_error)
|
396
|
+
end
|
397
|
+
|
398
|
+
class DownloadAlreadyInProgress < VagrantError
|
399
|
+
error_key(:download_already_in_progress_error)
|
400
|
+
end
|
401
|
+
|
402
|
+
class DownloaderError < VagrantError
|
403
|
+
error_key(:downloader_error)
|
404
|
+
end
|
405
|
+
|
406
|
+
class DownloaderInterrupted < DownloaderError
|
407
|
+
error_key(:downloader_interrupted)
|
408
|
+
end
|
409
|
+
|
410
|
+
class DownloaderChecksumError < VagrantError
|
411
|
+
error_key(:downloader_checksum_error)
|
412
|
+
end
|
413
|
+
|
414
|
+
class EnvInval < VagrantError
|
415
|
+
error_key(:env_inval)
|
416
|
+
end
|
417
|
+
|
418
|
+
class EnvironmentNonExistentCWD < VagrantError
|
419
|
+
error_key(:environment_non_existent_cwd)
|
420
|
+
end
|
421
|
+
|
422
|
+
class EnvironmentLockedError < VagrantError
|
423
|
+
error_key(:environment_locked)
|
424
|
+
end
|
425
|
+
|
426
|
+
class HomeDirectoryLaterVersion < VagrantError
|
427
|
+
error_key(:home_dir_later_version)
|
428
|
+
end
|
429
|
+
|
430
|
+
class HomeDirectoryNotAccessible < VagrantError
|
431
|
+
error_key(:home_dir_not_accessible)
|
432
|
+
end
|
433
|
+
|
434
|
+
class HomeDirectoryUnknownVersion < VagrantError
|
435
|
+
error_key(:home_dir_unknown_version)
|
436
|
+
end
|
437
|
+
|
438
|
+
class HypervVirtualBoxError < VagrantError
|
439
|
+
error_key(:hyperv_virtualbox_error)
|
440
|
+
end
|
441
|
+
|
442
|
+
class ForwardPortAdapterNotFound < VagrantError
|
443
|
+
error_key(:forward_port_adapter_not_found)
|
444
|
+
end
|
445
|
+
|
446
|
+
class ForwardPortAutolistEmpty < VagrantError
|
447
|
+
error_key(:auto_empty, "vagrant.actions.vm.forward_ports")
|
448
|
+
end
|
449
|
+
|
450
|
+
class ForwardPortHostIPNotFound < VagrantError
|
451
|
+
error_key(:host_ip_not_found, "vagrant.actions.vm.forward_ports")
|
452
|
+
end
|
453
|
+
|
454
|
+
class ForwardPortCollision < VagrantError
|
455
|
+
error_key(:collision_error, "vagrant.actions.vm.forward_ports")
|
456
|
+
end
|
457
|
+
|
458
|
+
class GuestCapabilityInvalid < VagrantError
|
459
|
+
error_key(:guest_capability_invalid)
|
460
|
+
end
|
461
|
+
|
462
|
+
class GuestCapabilityNotFound < VagrantError
|
463
|
+
error_key(:guest_capability_not_found)
|
464
|
+
end
|
465
|
+
|
466
|
+
class GuestExplicitNotDetected < VagrantError
|
467
|
+
error_key(:guest_explicit_not_detected)
|
468
|
+
end
|
469
|
+
|
470
|
+
class GuestNotDetected < VagrantError
|
471
|
+
error_key(:guest_not_detected)
|
472
|
+
end
|
473
|
+
|
474
|
+
class HostExplicitNotDetected < VagrantError
|
475
|
+
error_key(:host_explicit_not_detected)
|
476
|
+
end
|
477
|
+
|
478
|
+
class ISOBuildFailed < VagrantError
|
479
|
+
error_key(:iso_build_failed)
|
480
|
+
end
|
481
|
+
|
482
|
+
class LinuxMountFailed < VagrantError
|
483
|
+
error_key(:linux_mount_failed)
|
484
|
+
end
|
485
|
+
|
486
|
+
class LinuxRDPClientNotFound < VagrantError
|
487
|
+
error_key(:linux_rdp_client_not_found)
|
488
|
+
end
|
489
|
+
|
490
|
+
class LocalDataDirectoryNotAccessible < VagrantError
|
491
|
+
error_key(:local_data_dir_not_accessible)
|
492
|
+
end
|
493
|
+
|
494
|
+
class MachineActionLockedError < VagrantError
|
495
|
+
error_key(:machine_action_locked)
|
496
|
+
end
|
497
|
+
|
498
|
+
class MachineFolderNotAccessible < VagrantError
|
499
|
+
error_key(:machine_folder_not_accessible)
|
500
|
+
end
|
501
|
+
|
502
|
+
class MachineGuestNotReady < VagrantError
|
503
|
+
error_key(:machine_guest_not_ready)
|
504
|
+
end
|
505
|
+
|
506
|
+
class MachineLocked < VagrantError
|
507
|
+
error_key(:machine_locked)
|
508
|
+
end
|
509
|
+
|
510
|
+
class MachineNotFound < VagrantError
|
511
|
+
error_key(:machine_not_found)
|
512
|
+
end
|
513
|
+
|
514
|
+
class MachineStateInvalid < VagrantError
|
515
|
+
error_key(:machine_state_invalid)
|
516
|
+
end
|
517
|
+
|
518
|
+
class MultiVMTargetRequired < VagrantError
|
519
|
+
error_key(:multi_vm_target_required)
|
520
|
+
end
|
521
|
+
|
522
|
+
class NetplanNoAvailableRenderers < VagrantError
|
523
|
+
error_key(:netplan_no_available_renderers)
|
524
|
+
end
|
525
|
+
|
526
|
+
class NetSSHException < VagrantError
|
527
|
+
error_key(:net_ssh_exception)
|
528
|
+
end
|
529
|
+
|
530
|
+
class NetworkCollision < VagrantError
|
531
|
+
error_key(:collides, "vagrant.actions.vm.host_only_network")
|
532
|
+
end
|
533
|
+
|
534
|
+
class NetworkAddressInvalid < VagrantError
|
535
|
+
error_key(:network_address_invalid)
|
536
|
+
end
|
537
|
+
|
538
|
+
class NetworkDHCPAlreadyAttached < VagrantError
|
539
|
+
error_key(:dhcp_already_attached, "vagrant.actions.vm.network")
|
540
|
+
end
|
541
|
+
|
542
|
+
class NetworkNotFound < VagrantError
|
543
|
+
error_key(:not_found, "vagrant.actions.vm.host_only_network")
|
544
|
+
end
|
545
|
+
|
546
|
+
class NetworkTypeNotSupported < VagrantError
|
547
|
+
error_key(:network_type_not_supported)
|
548
|
+
end
|
549
|
+
|
550
|
+
class NetworkManagerNotInstalled < VagrantError
|
551
|
+
error_key(:network_manager_not_installed)
|
552
|
+
end
|
553
|
+
|
554
|
+
class NFSBadExports < VagrantError
|
555
|
+
error_key(:nfs_bad_exports)
|
556
|
+
end
|
557
|
+
|
558
|
+
class NFSDupePerms < VagrantError
|
559
|
+
error_key(:nfs_dupe_permissions)
|
560
|
+
end
|
561
|
+
|
562
|
+
class NFSExportsFailed < VagrantError
|
563
|
+
error_key(:nfs_exports_failed)
|
564
|
+
end
|
565
|
+
|
566
|
+
class NFSCantReadExports < VagrantError
|
567
|
+
error_key(:nfs_cant_read_exports)
|
568
|
+
end
|
569
|
+
|
570
|
+
class NFSMountFailed < VagrantError
|
571
|
+
error_key(:nfs_mount_failed)
|
572
|
+
end
|
573
|
+
|
574
|
+
class NFSNoGuestIP < VagrantError
|
575
|
+
error_key(:nfs_no_guest_ip)
|
576
|
+
end
|
577
|
+
|
578
|
+
class NFSNoHostIP < VagrantError
|
579
|
+
error_key(:nfs_no_host_ip)
|
580
|
+
end
|
581
|
+
|
582
|
+
class NFSNoHostonlyNetwork < VagrantError
|
583
|
+
error_key(:nfs_no_hostonly_network)
|
584
|
+
end
|
585
|
+
|
586
|
+
class NFSNoValidIds < VagrantError
|
587
|
+
error_key(:nfs_no_valid_ids)
|
588
|
+
end
|
589
|
+
|
590
|
+
class NFSNotSupported < VagrantError
|
591
|
+
error_key(:nfs_not_supported)
|
592
|
+
end
|
593
|
+
|
594
|
+
class NFSClientNotInstalledInGuest < VagrantError
|
595
|
+
error_key(:nfs_client_not_installed_in_guest)
|
596
|
+
end
|
597
|
+
|
598
|
+
class NoDefaultProvider < VagrantError
|
599
|
+
error_key(:no_default_provider)
|
600
|
+
end
|
601
|
+
|
602
|
+
class NoDefaultSyncedFolderImpl < VagrantError
|
603
|
+
error_key(:no_default_synced_folder_impl)
|
604
|
+
end
|
605
|
+
|
606
|
+
class NoEnvironmentError < VagrantError
|
607
|
+
error_key(:no_env)
|
608
|
+
end
|
609
|
+
|
610
|
+
class PackageIncludeMissing < VagrantError
|
611
|
+
error_key(:include_file_missing, "vagrant.actions.general.package")
|
612
|
+
end
|
613
|
+
|
614
|
+
class PackageIncludeSymlink < VagrantError
|
615
|
+
error_key(:package_include_symlink)
|
616
|
+
end
|
617
|
+
|
618
|
+
class PackageOutputDirectory < VagrantError
|
619
|
+
error_key(:output_is_directory, "vagrant.actions.general.package")
|
620
|
+
end
|
621
|
+
|
622
|
+
class PackageOutputExists < VagrantError
|
623
|
+
error_key(:output_exists, "vagrant.actions.general.package")
|
624
|
+
end
|
625
|
+
|
626
|
+
class PackageRequiresDirectory < VagrantError
|
627
|
+
error_key(:requires_directory, "vagrant.actions.general.package")
|
628
|
+
end
|
629
|
+
|
630
|
+
class PackageInvalidInfo < VagrantError
|
631
|
+
error_key(:package_invalid_info)
|
632
|
+
end
|
633
|
+
|
634
|
+
class PowerShellNotFound < VagrantError
|
635
|
+
error_key(:powershell_not_found)
|
636
|
+
end
|
637
|
+
|
638
|
+
class PowerShellInvalidVersion < VagrantError
|
639
|
+
error_key(:powershell_invalid_version)
|
640
|
+
end
|
641
|
+
|
642
|
+
class PowerShellError < VagrantError
|
643
|
+
error_key(:powershell_error, "vagrant_ps.errors.powershell_error")
|
644
|
+
end
|
645
|
+
|
646
|
+
class ProviderCantInstall < VagrantError
|
647
|
+
error_key(:provider_cant_install)
|
648
|
+
end
|
649
|
+
|
650
|
+
class ProviderChecksumMismatch < VagrantError
|
651
|
+
error_key(:provider_checksum_mismatch)
|
652
|
+
end
|
653
|
+
|
654
|
+
class ProviderInstallFailed < VagrantError
|
655
|
+
error_key(:provider_install_failed)
|
656
|
+
end
|
657
|
+
|
658
|
+
class ProviderNotFound < VagrantError
|
659
|
+
error_key(:provider_not_found)
|
660
|
+
end
|
661
|
+
|
662
|
+
class ProviderNotFoundSuggestion < VagrantError
|
663
|
+
error_key(:provider_not_found_suggestion)
|
664
|
+
end
|
665
|
+
|
666
|
+
class ProviderNotUsable < VagrantError
|
667
|
+
error_key(:provider_not_usable)
|
668
|
+
end
|
669
|
+
|
670
|
+
class ProvisionerFlagInvalid < VagrantError
|
671
|
+
error_key(:provisioner_flag_invalid)
|
672
|
+
end
|
673
|
+
|
674
|
+
class ProvisionerWinRMUnsupported < VagrantError
|
675
|
+
error_key(:provisioner_winrm_unsupported)
|
676
|
+
end
|
677
|
+
|
678
|
+
class PluginNeedsDeveloperTools < VagrantError
|
679
|
+
error_key(:plugin_needs_developer_tools)
|
680
|
+
end
|
681
|
+
|
682
|
+
class PluginMissingLibrary < VagrantError
|
683
|
+
error_key(:plugin_missing_library)
|
684
|
+
end
|
685
|
+
|
686
|
+
class PluginMissingRubyDev < VagrantError
|
687
|
+
error_key(:plugin_missing_ruby_dev)
|
688
|
+
end
|
689
|
+
|
690
|
+
class PluginGemNotFound < VagrantError
|
691
|
+
error_key(:plugin_gem_not_found)
|
692
|
+
end
|
693
|
+
|
694
|
+
class PluginInstallLicenseNotFound < VagrantError
|
695
|
+
error_key(:plugin_install_license_not_found)
|
696
|
+
end
|
697
|
+
|
698
|
+
class PluginInstallFailed < VagrantError
|
699
|
+
error_key(:plugin_install_failed)
|
700
|
+
end
|
701
|
+
|
702
|
+
class PluginInstallSpace < VagrantError
|
703
|
+
error_key(:plugin_install_space)
|
704
|
+
end
|
705
|
+
|
706
|
+
class PluginInstallVersionConflict < VagrantError
|
707
|
+
error_key(:plugin_install_version_conflict)
|
708
|
+
end
|
709
|
+
|
710
|
+
class PluginLoadError < VagrantError
|
711
|
+
error_key(:plugin_load_error)
|
712
|
+
end
|
713
|
+
|
714
|
+
class PluginNotInstalled < VagrantError
|
715
|
+
error_key(:plugin_not_installed)
|
716
|
+
end
|
717
|
+
|
718
|
+
class PluginStateFileParseError < VagrantError
|
719
|
+
error_key(:plugin_state_file_not_parsable)
|
720
|
+
end
|
721
|
+
|
722
|
+
class PluginUninstallSystem < VagrantError
|
723
|
+
error_key(:plugin_uninstall_system)
|
724
|
+
end
|
725
|
+
|
726
|
+
class PluginInitError < VagrantError
|
727
|
+
error_key(:plugin_init_error)
|
728
|
+
end
|
729
|
+
|
730
|
+
class PluginSourceError < VagrantError
|
731
|
+
error_key(:plugin_source_error)
|
732
|
+
end
|
733
|
+
|
734
|
+
class PluginNoLocalError < VagrantError
|
735
|
+
error_key(:plugin_no_local_error)
|
736
|
+
end
|
737
|
+
|
738
|
+
class PluginMissingLocalError < VagrantError
|
739
|
+
error_key(:plugin_missing_local_error)
|
740
|
+
end
|
741
|
+
|
742
|
+
class PushesNotDefined < VagrantError
|
743
|
+
error_key(:pushes_not_defined)
|
744
|
+
end
|
745
|
+
|
746
|
+
class PushStrategyNotDefined < VagrantError
|
747
|
+
error_key(:push_strategy_not_defined)
|
748
|
+
end
|
749
|
+
|
750
|
+
class PushStrategyNotLoaded < VagrantError
|
751
|
+
error_key(:push_strategy_not_loaded)
|
752
|
+
end
|
753
|
+
|
754
|
+
class PushStrategyNotProvided < VagrantError
|
755
|
+
error_key(:push_strategy_not_provided)
|
756
|
+
end
|
757
|
+
|
758
|
+
class RSyncPostCommandError < VagrantError
|
759
|
+
error_key(:rsync_post_command_error)
|
760
|
+
end
|
761
|
+
|
762
|
+
class RSyncError < VagrantError
|
763
|
+
error_key(:rsync_error)
|
764
|
+
end
|
765
|
+
|
766
|
+
class RSyncNotFound < VagrantError
|
767
|
+
error_key(:rsync_not_found)
|
768
|
+
end
|
769
|
+
|
770
|
+
class RSyncNotInstalledInGuest < VagrantError
|
771
|
+
error_key(:rsync_not_installed_in_guest)
|
772
|
+
end
|
773
|
+
|
774
|
+
class RSyncGuestInstallError < VagrantError
|
775
|
+
error_key(:rsync_guest_install_error)
|
776
|
+
end
|
777
|
+
|
778
|
+
class SCPPermissionDenied < VagrantError
|
779
|
+
error_key(:scp_permission_denied)
|
780
|
+
end
|
781
|
+
|
782
|
+
class SCPUnavailable < VagrantError
|
783
|
+
error_key(:scp_unavailable)
|
784
|
+
end
|
785
|
+
|
786
|
+
class SharedFolderCreateFailed < VagrantError
|
787
|
+
error_key(:shared_folder_create_failed)
|
788
|
+
end
|
789
|
+
|
790
|
+
class ShellExpandFailed < VagrantError
|
791
|
+
error_key(:shell_expand_failed)
|
792
|
+
end
|
793
|
+
|
794
|
+
class SnapshotConflictFailed < VagrantError
|
795
|
+
error_key(:snapshot_force)
|
796
|
+
end
|
797
|
+
|
798
|
+
class SnapshotNotFound < VagrantError
|
799
|
+
error_key(:snapshot_not_found)
|
800
|
+
end
|
801
|
+
|
802
|
+
class SnapshotNotSupported < VagrantError
|
803
|
+
error_key(:snapshot_not_supported)
|
804
|
+
end
|
805
|
+
|
806
|
+
class SSHAuthenticationFailed < VagrantError
|
807
|
+
error_key(:ssh_authentication_failed)
|
808
|
+
end
|
809
|
+
|
810
|
+
class SSHChannelOpenFail < VagrantError
|
811
|
+
error_key(:ssh_channel_open_fail)
|
812
|
+
end
|
813
|
+
|
814
|
+
class SSHConnectEACCES < VagrantError
|
815
|
+
error_key(:ssh_connect_eacces)
|
816
|
+
end
|
817
|
+
|
818
|
+
class SSHConnectionRefused < VagrantError
|
819
|
+
error_key(:ssh_connection_refused)
|
820
|
+
end
|
821
|
+
|
822
|
+
class SSHConnectionAborted < VagrantError
|
823
|
+
error_key(:ssh_connection_aborted)
|
824
|
+
end
|
825
|
+
|
826
|
+
class SSHConnectionReset < VagrantError
|
827
|
+
error_key(:ssh_connection_reset)
|
828
|
+
end
|
829
|
+
|
830
|
+
class SSHConnectionTimeout < VagrantError
|
831
|
+
error_key(:ssh_connection_timeout)
|
832
|
+
end
|
833
|
+
|
834
|
+
class SSHDisconnected < VagrantError
|
835
|
+
error_key(:ssh_disconnected)
|
836
|
+
end
|
837
|
+
|
838
|
+
class SSHHostDown < VagrantError
|
839
|
+
error_key(:ssh_host_down)
|
840
|
+
end
|
841
|
+
|
842
|
+
class SSHInvalidShell< VagrantError
|
843
|
+
error_key(:ssh_invalid_shell)
|
844
|
+
end
|
845
|
+
|
846
|
+
class SSHInsertKeyUnsupported < VagrantError
|
847
|
+
error_key(:ssh_insert_key_unsupported)
|
848
|
+
end
|
849
|
+
|
850
|
+
class SSHIsPuttyLink < VagrantError
|
851
|
+
error_key(:ssh_is_putty_link)
|
852
|
+
end
|
853
|
+
|
854
|
+
class SSHKeyBadOwner < VagrantError
|
855
|
+
error_key(:ssh_key_bad_owner)
|
856
|
+
end
|
857
|
+
|
858
|
+
class SSHKeyBadPermissions < VagrantError
|
859
|
+
error_key(:ssh_key_bad_permissions)
|
860
|
+
end
|
861
|
+
|
862
|
+
class SSHKeyTypeNotSupported < VagrantError
|
863
|
+
error_key(:ssh_key_type_not_supported)
|
864
|
+
end
|
865
|
+
|
866
|
+
class SSHKeyTypeNotSupportedByServer < VagrantError
|
867
|
+
error_key(:ssh_key_type_not_supported_by_server)
|
868
|
+
end
|
869
|
+
|
870
|
+
class SSHNoExitStatus < VagrantError
|
871
|
+
error_key(:ssh_no_exit_status)
|
872
|
+
end
|
873
|
+
|
874
|
+
class SSHNoRoute < VagrantError
|
875
|
+
error_key(:ssh_no_route)
|
876
|
+
end
|
877
|
+
|
878
|
+
class SSHNotReady < VagrantError
|
879
|
+
error_key(:ssh_not_ready)
|
880
|
+
end
|
881
|
+
|
882
|
+
class SSHRunRequiresKeys < VagrantError
|
883
|
+
error_key(:ssh_run_requires_keys)
|
884
|
+
end
|
885
|
+
|
886
|
+
class SSHUnavailable < VagrantError
|
887
|
+
error_key(:ssh_unavailable)
|
888
|
+
end
|
889
|
+
|
890
|
+
class SSHUnavailableWindows < VagrantError
|
891
|
+
error_key(:ssh_unavailable_windows)
|
892
|
+
end
|
893
|
+
|
894
|
+
class SyncedFolderUnusable < VagrantError
|
895
|
+
error_key(:synced_folder_unusable)
|
896
|
+
end
|
897
|
+
|
898
|
+
class TriggersBadExitCodes < VagrantError
|
899
|
+
error_key(:triggers_bad_exit_codes)
|
900
|
+
end
|
901
|
+
|
902
|
+
class TriggersGuestNotExist < VagrantError
|
903
|
+
error_key(:triggers_guest_not_exist)
|
904
|
+
end
|
905
|
+
|
906
|
+
class TriggersGuestNotRunning < VagrantError
|
907
|
+
error_key(:triggers_guest_not_running)
|
908
|
+
end
|
909
|
+
|
910
|
+
class TriggersNoBlockGiven < VagrantError
|
911
|
+
error_key(:triggers_no_block_given)
|
912
|
+
end
|
913
|
+
|
914
|
+
class TriggersNoStageGiven < VagrantError
|
915
|
+
error_key(:triggers_no_stage_given)
|
916
|
+
end
|
917
|
+
|
918
|
+
class UIExpectsTTY < VagrantError
|
919
|
+
error_key(:ui_expects_tty)
|
920
|
+
end
|
921
|
+
|
922
|
+
class UnimplementedProviderAction < VagrantError
|
923
|
+
error_key(:unimplemented_provider_action)
|
924
|
+
end
|
925
|
+
|
926
|
+
class UploadInvalidCompressionType < VagrantError
|
927
|
+
error_key(:upload_invalid_compression_type)
|
928
|
+
end
|
929
|
+
|
930
|
+
class UploadMissingExtractCapability < VagrantError
|
931
|
+
error_key(:upload_missing_extract_capability)
|
932
|
+
end
|
933
|
+
|
934
|
+
class UploadMissingTempCapability < VagrantError
|
935
|
+
error_key(:upload_missing_temp_capability)
|
936
|
+
end
|
937
|
+
|
938
|
+
class UploadSourceMissing < VagrantError
|
939
|
+
error_key(:upload_source_missing)
|
940
|
+
end
|
941
|
+
|
942
|
+
class UploaderError < VagrantError
|
943
|
+
error_key(:uploader_error)
|
944
|
+
end
|
945
|
+
|
946
|
+
class UploaderInterrupted < UploaderError
|
947
|
+
error_key(:uploader_interrupted)
|
948
|
+
end
|
949
|
+
|
950
|
+
class VagrantLocked < VagrantError
|
951
|
+
error_key(:vagrant_locked)
|
952
|
+
end
|
953
|
+
|
954
|
+
class VagrantInterrupt < VagrantError
|
955
|
+
error_key(:interrupted)
|
956
|
+
end
|
957
|
+
|
958
|
+
class VagrantfileExistsError < VagrantError
|
959
|
+
error_key(:vagrantfile_exists)
|
960
|
+
end
|
961
|
+
|
962
|
+
class VagrantfileLoadError < VagrantError
|
963
|
+
error_key(:vagrantfile_load_error)
|
964
|
+
end
|
965
|
+
|
966
|
+
class VagrantfileNameError < VagrantError
|
967
|
+
error_key(:vagrantfile_name_error)
|
968
|
+
end
|
969
|
+
|
970
|
+
class VagrantfileSyntaxError < VagrantError
|
971
|
+
error_key(:vagrantfile_syntax_error)
|
972
|
+
end
|
973
|
+
|
974
|
+
class VagrantfileTemplateNotFoundError < VagrantError
|
975
|
+
error_key(:vagrantfile_template_not_found_error)
|
976
|
+
end
|
977
|
+
|
978
|
+
class VagrantfileWriteError < VagrantError
|
979
|
+
error_key(:vagrantfile_write_error)
|
980
|
+
end
|
981
|
+
|
982
|
+
class VagrantVersionBad < VagrantError
|
983
|
+
error_key(:vagrant_version_bad)
|
984
|
+
end
|
985
|
+
|
986
|
+
class VBoxManageError < VagrantError
|
987
|
+
error_key(:vboxmanage_error)
|
988
|
+
end
|
989
|
+
|
990
|
+
class VBoxManageLaunchError < VagrantError
|
991
|
+
error_key(:vboxmanage_launch_error)
|
992
|
+
end
|
993
|
+
|
994
|
+
class VBoxManageNotFoundError < VagrantError
|
995
|
+
error_key(:vboxmanage_not_found_error)
|
996
|
+
end
|
997
|
+
|
998
|
+
class VirtualBoxBrokenVersion040214 < VagrantError
|
999
|
+
error_key(:virtualbox_broken_version_040214)
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class VirtualBoxConfigNotFound < VagrantError
|
1003
|
+
error_key(:virtualbox_config_not_found)
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
class VirtualBoxDisksDefinedExceedLimit < VagrantError
|
1007
|
+
error_key(:virtualbox_disks_defined_exceed_limit)
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class VirtualBoxDisksControllerNotFound < VagrantError
|
1011
|
+
error_key(:virtualbox_disks_controller_not_found)
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class VirtualBoxDisksNoSupportedControllers < VagrantError
|
1015
|
+
error_key(:virtualbox_disks_no_supported_controllers)
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class VirtualBoxDisksPrimaryNotFound < VagrantError
|
1019
|
+
error_key(:virtualbox_disks_primary_not_found)
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class VirtualBoxDisksUnsupportedController < VagrantError
|
1023
|
+
error_key(:virtualbox_disks_unsupported_controller)
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class VirtualBoxGuestPropertyNotFound < VagrantError
|
1027
|
+
error_key(:virtualbox_guest_property_not_found)
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class VirtualBoxInvalidVersion < VagrantError
|
1031
|
+
error_key(:virtualbox_invalid_version)
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
class VirtualBoxNoRoomForHighLevelNetwork < VagrantError
|
1035
|
+
error_key(:virtualbox_no_room_for_high_level_network)
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class VirtualBoxNotDetected < VagrantError
|
1039
|
+
error_key(:virtualbox_not_detected)
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class VirtualBoxKernelModuleNotLoaded < VagrantError
|
1043
|
+
error_key(:virtualbox_kernel_module_not_loaded)
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class VirtualBoxInstallIncomplete < VagrantError
|
1047
|
+
error_key(:virtualbox_install_incomplete)
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class VirtualBoxMachineFolderNotFound < VagrantError
|
1051
|
+
error_key(:virtualbox_machine_folder_not_found)
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class VirtualBoxNoName < VagrantError
|
1055
|
+
error_key(:virtualbox_no_name)
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class VirtualBoxMountFailed < VagrantError
|
1059
|
+
error_key(:virtualbox_mount_failed)
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class VirtualBoxMountNotSupportedBSD < VagrantError
|
1063
|
+
error_key(:virtualbox_mount_not_supported_bsd)
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class VirtualBoxNameExists < VagrantError
|
1067
|
+
error_key(:virtualbox_name_exists)
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class VirtualBoxUserMismatch < VagrantError
|
1071
|
+
error_key(:virtualbox_user_mismatch)
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
class VirtualBoxVersionEmpty < VagrantError
|
1075
|
+
error_key(:virtualbox_version_empty)
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class VirtualBoxInvalidHostSubnet < VagrantError
|
1079
|
+
error_key(:virtualbox_invalid_host_subnet)
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class VMBaseMacNotSpecified < VagrantError
|
1083
|
+
error_key(:no_base_mac, "vagrant.actions.vm.match_mac")
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class VMBootBadState < VagrantError
|
1087
|
+
error_key(:boot_bad_state)
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class VMBootTimeout < VagrantError
|
1091
|
+
error_key(:boot_timeout)
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class VMCloneFailure < VagrantError
|
1095
|
+
error_key(:failure, "vagrant.actions.vm.clone")
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class VMCreateMasterFailure < VagrantError
|
1099
|
+
error_key(:failure, "vagrant.actions.vm.clone.create_master")
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class VMCustomizationFailed < VagrantError
|
1103
|
+
error_key(:failure, "vagrant.actions.vm.customize")
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class VMImportFailure < VagrantError
|
1107
|
+
error_key(:failure, "vagrant.actions.vm.import")
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class VMInaccessible < VagrantError
|
1111
|
+
error_key(:vm_inaccessible)
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class VMNameExists < VagrantError
|
1115
|
+
error_key(:vm_name_exists)
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class VMNoMatchError < VagrantError
|
1119
|
+
error_key(:vm_no_match)
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class VMNotCreatedError < VagrantError
|
1123
|
+
error_key(:vm_creation_required)
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class VMNotFoundError < VagrantError
|
1127
|
+
error_key(:vm_not_found)
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class VMNotRunningError < VagrantError
|
1131
|
+
error_key(:vm_not_running)
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class VMPowerOffToPackage < VagrantError
|
1135
|
+
error_key(:power_off, "vagrant.actions.vm.export")
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class WinRMInvalidCommunicator < VagrantError
|
1139
|
+
error_key(:winrm_invalid_communicator)
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class WSLVagrantVersionMismatch < VagrantError
|
1143
|
+
error_key(:wsl_vagrant_version_mismatch)
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class WSLVagrantAccessError < VagrantError
|
1147
|
+
error_key(:wsl_vagrant_access_error)
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class WSLVirtualBoxWindowsAccessError < VagrantError
|
1151
|
+
error_key(:wsl_virtualbox_windows_access)
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class WSLRootFsNotFoundError < VagrantError
|
1155
|
+
error_key(:wsl_rootfs_not_found_error)
|
1156
|
+
end
|
1157
|
+
end
|
1158
|
+
end
|