tamtam-vagrant-reload 1.1.2 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +9 -0
- data/.rspec +1 -0
- data/.test_conf~ +8 -0
- data/.travis.yml +6 -0
- data/Gemfile +7 -3
- data/LICENSE.txt +1 -22
- data/README.md +33 -5
- data/Rakefile +14 -1
- data/lib/tamtam-vagrant-reload/config.rb +201 -0
- data/lib/tamtam-vagrant-reload/plugin.rb +76 -0
- data/lib/tamtam-vagrant-reload/provision.rb +108 -0
- data/lib/tamtam-vagrant-reload/version.rb +2 -2
- data/lib/tamtam-vagrant-reload.rb +12 -26
- data/locales/en.yml +59 -0
- data/spec/tamtam-vagrant-reload-plugin/config_spec.rb +152 -0
- data/tamtam-vagrant-reload.gemspec +14 -5
- data/templates/metadata.json.erb +3 -0
- data/templates/tamtam-vagrant-reload-plugin_package_Vagrantfile.erb +5 -0
- data/vendor/cache/vagrant-2092df529ae7/.envrc +5 -0
- data/vendor/cache/vagrant-2092df529ae7/.gitignore +75 -0
- data/vendor/cache/vagrant-2092df529ae7/.gitmodules +3 -0
- data/vendor/cache/vagrant-2092df529ae7/.runner.sh +7 -0
- data/vendor/cache/vagrant-2092df529ae7/.vimrc +5 -0
- data/vendor/cache/vagrant-2092df529ae7/CHANGELOG.md +4381 -0
- data/vendor/cache/vagrant-2092df529ae7/Dockerfile +41 -0
- data/vendor/cache/vagrant-2092df529ae7/Gemfile +9 -0
- data/vendor/cache/vagrant-2092df529ae7/LICENSE +19 -0
- data/vendor/cache/vagrant-2092df529ae7/Makefile +111 -0
- data/vendor/cache/vagrant-2092df529ae7/README.md +56 -0
- data/vendor/cache/vagrant-2092df529ae7/RELEASE.md +37 -0
- data/vendor/cache/vagrant-2092df529ae7/Rakefile +18 -0
- data/vendor/cache/vagrant-2092df529ae7/bin/vagrant +281 -0
- data/vendor/cache/vagrant-2092df529ae7/binstubs/vagrant +29 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/README.md +10 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/configvagrant/main.go +138 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/httpdownloader/downloader/downloader.go +102 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/httpdownloader/downloader/httpmethod_string.go +27 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/httpdownloader/main.go +15 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/command/command.go +143 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/command/dothing.go +120 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/command/host.go +77 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/command/info.go +94 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/command/interactive.go +87 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/communicator/communicator.go +131 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/host/alwaystrue.go +77 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/host/cap/write_hello.go +22 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/locales/assets/en.json +3 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/locales/assets/es.json +3 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/locales/locales.go +271 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/main.go +35 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/mappers.go +12 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/proto/plugin.pb.go +208 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/proto/plugin.proto +12 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/provider/happy.go +96 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/myplugin/push/encouragement.go +85 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/otherplugin/command.go +189 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/otherplugin/guest/alwaystrue.go +78 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/otherplugin/guest/cap/write_hello.go +17 -0
- data/vendor/cache/vagrant-2092df529ae7/builtin/otherplugin/main.go +18 -0
- data/vendor/cache/vagrant-2092df529ae7/cmd/vagrant/main.go +15 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/README.md +17 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/bash/completion.sh +190 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/st/Ruby.sublime-settings +6 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/sudoers/linux-fedora +7 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/sudoers/linux-suse +6 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/sudoers/linux-ubuntu +8 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/sudoers/osx +10 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/zsh/_vagrant +738 -0
- data/vendor/cache/vagrant-2092df529ae7/contrib/zsh/generate_zsh_completion.rb +165 -0
- data/vendor/cache/vagrant-2092df529ae7/flake.lock +43 -0
- data/vendor/cache/vagrant-2092df529ae7/flake.nix +24 -0
- data/vendor/cache/vagrant-2092df529ae7/gen.go +23 -0
- data/vendor/cache/vagrant-2092df529ae7/go.mod +175 -0
- data/vendor/cache/vagrant-2092df529ae7/go.sum +986 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/assets/.gitignore +2 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/assets/dev.go +35 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/assets/dev_assets.go +235 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/base.go +631 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/base_init.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/datagen/datagen.go +250 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/dynamic.go +168 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/help.go +144 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/main.go +485 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/option.go +77 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/plugin.go +33 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/ui.go +126 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/cli/version.go +61 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clicontext/config.go +33 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clicontext/storage.go +274 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clicontext/storage_test.go +163 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clicontext/testing.go +23 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/basis.go +204 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/client.go +333 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/doc.go +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/job.go +359 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/noop.go +26 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/noop_test.go +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/operation.go +159 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/project.go +137 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/runner.go +28 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/server.go +311 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/target.go +34 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/client/testing.go +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clierrors/detect.go +23 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clierrors/detect_test.go +31 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/clierrors/humanize.go +23 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/config.go +83 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/config_test.go +60 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/eval_context.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/encoding.go +149 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/encoding_test.go +165 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/filesystem.go +475 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/filesystem_test.go +636 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/stdlib.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/bare.tmpl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/func.tmpl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/hello.tmpl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/hello.txt +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/icon.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/list.tmpl +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/filesystem/recursive.tmpl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/A +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/COMMIT_EDITMSG +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/config +7 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/description +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/applypatch-msg.sample +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/commit-msg.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/fsmonitor-watchman.sample +173 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/post-update.sample +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-applypatch.sample +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-commit.sample +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-merge-commit.sample +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-push.sample +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-rebase.sample +169 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/pre-receive.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/prepare-commit-msg.sample +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/hooks/update.sample +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/index +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/info/exclude +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/logs/HEAD +2 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/logs/refs/heads/master +2 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/38/0afd697abe993b89bfa08d8dd8724d6a513ba1 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/45/9023a450b8e8aa344d230839d41e2f115d3d28 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/7c/178d1296d8b87e83382c324aeb32e2def2a5af +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/8b/137891791fe96927ad78e64b0aad7bded08bdc +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/b1/a2dcd337f590a185a20f013721e7410764bab4 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-commits/DOTgit/refs/heads/master +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/config +10 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/description +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/applypatch-msg.sample +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/commit-msg.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/fsmonitor-watchman.sample +173 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/post-update.sample +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-applypatch.sample +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-commit.sample +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-merge-commit.sample +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-push.sample +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-rebase.sample +169 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/pre-receive.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/prepare-commit-msg.sample +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/hooks/update.sample +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-remote/DOTgit/info/exclude +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/A +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/COMMIT_EDITMSG +11 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/config +7 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/description +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/applypatch-msg.sample +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/commit-msg.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/fsmonitor-watchman.sample +173 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/post-update.sample +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-applypatch.sample +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-commit.sample +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-merge-commit.sample +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-push.sample +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-rebase.sample +169 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/pre-receive.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/prepare-commit-msg.sample +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/hooks/update.sample +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/index +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/info/exclude +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/logs/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/logs/refs/heads/master +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/objects/7c/178d1296d8b87e83382c324aeb32e2def2a5af +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/objects/e5/bde566e1270e2ed44a9a5a01d51b4eb9c8850b +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/refs/heads/master +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/testdata/git-tag/DOTgit/refs/tags/hello +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/vcs_git.go +236 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/funcs/vcs_git_test.go +123 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/hook.go +12 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/path.go +52 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/path_test.go +139 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/app.hcl +4 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/app_labels.hcl +11 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/app_path_relative.hcl +5 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/build.hcl +9 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/build_registry.hcl +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/project.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/project_function.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/project_path_project.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/compare/project_pwd.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/plugins/explicit.hcl +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/plugins/implicit.hcl +11 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/plugins/implicit_registry.hcl +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/plugins/mix.hcl +17 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/plugins/none.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/validate/app.hcl +37 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/validate/no_build.hcl +5 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testdata/validate/valid.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/testing.go +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/vagrant.go +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/validate.go +47 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/config/validate_test.go +44 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/arg.go +18 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/basis.go +1121 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/basis_test.go +88 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box.go +467 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box_collection.go +346 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box_collection_test.go +188 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box_metadata.go +244 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box_metadata_test.go +221 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/box_test.go +170 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/component_creator.go +47 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/core.go +36 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/core_manager.go +115 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/doc.go +12 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/error.go +37 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/factory.go +269 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/helpers_test.go +85 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/hook.go +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/labels.go +37 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/loadlocation_string.go +27 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/machine.go +511 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/machine_test.go +395 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/mappers.go +36 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/operation.go +220 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/project.go +1015 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/project_test.go +111 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/state_bag.go +39 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/state_bag_test.go +48 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/target.go +655 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/target_index.go +117 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/target_index_test.go +110 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/target_test.go +111 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/testing_basis.go +142 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/testing_project.go +46 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/testing_target.go +171 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/core/vagrantfile.go +1271 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/datasource.go +52 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/git.go +142 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/git_test.go +162 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/local.go +55 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/COMMIT_EDITMSG +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/config +7 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/description +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/applypatch-msg.sample +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/commit-msg.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/fsmonitor-watchman.sample +173 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/post-update.sample +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-applypatch.sample +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-commit.sample +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-merge-commit.sample +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-push.sample +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-rebase.sample +169 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/pre-receive.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/prepare-commit-msg.sample +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/hooks/update.sample +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/index +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/info/exclude +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/logs/HEAD +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/logs/refs/heads/master +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/18/2027df9c3c65cf974c160987ebd15962a96b06 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/19/24b8606e1d56acb7e2059652ad059d4bac6f2e +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/1d/ea92c978dfb5de0a2c4fd06b5d66aa94030a52 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/42/e94293c5ab5c800ae0bb60708e23f146d70c7d +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/ae/22fcefd0d5d1ec4933de6a306e3628ebaf78c5 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/b6/bf15100c570f2be6a231a095d395ed16dfed81 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/objects/f7/606d1f7258d9eb1ef0bc6cf34816a70bbd6f8d +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/DOTgit/refs/heads/master +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/datasource/testdata/git-noop/vagrant.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/factory/factory.go +105 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/factory/factory_test.go +92 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/flag.go +821 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/flag_test.go +1704 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/group.go +293 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/group_test.go +513 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/set.go +405 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/set_test.go +609 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/flags/type_string.go +30 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/README.md +5 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/circbufsync/circbufsync.go +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/copy/copy.go +121 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/.gitignore +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/.travis.yml +20 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/LICENSE +22 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/defaults.go +191 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/defaults_test.go +588 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/internal/fixture/test.go +7 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/defaults/setter.go +12 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/epinject/epinject.go +143 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/epinject/epinject_test.go +101 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/epinject/testdata/cowsay +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/finalcontext/finalcontext.go +39 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/doc.go +5 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag.go +74 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_bool.go +77 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_enum.go +90 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_enum_single.go +80 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_float.go +72 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_int.go +296 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_string.go +72 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_string_map.go +83 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_string_slice.go +75 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_time.go +81 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/flag_var.go +81 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/set.go +183 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/flag/set_test.go +35 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/gatedwriter/writer.go +43 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/gatedwriter/writer_test.go +34 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/iosync/iosync.go +60 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/protowriter/protowriter.go +130 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/signalcontext/signalcontext.go +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/.gitignore +29 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/.travis.yml +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/LICENSE +174 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/Makefile +18 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/README.md +282 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/_example/main.go +112 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/character_sets.go +93 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/pkg/spinner/spinner.go +446 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/builtin.go +144 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/doc.go +4 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/factory.go +206 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/internal.go +71 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/manager.go +748 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/plugin.go +219 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testdata/pathA/vagrant-plugin-a +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testdata/pathB/vagrant-plugin-a +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testdata/pathB/vagrant-plugin-b +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testing_factory.go +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testing_manager.go +20 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/plugin/testing_plugin.go +74 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/context.go +23 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/current.go +39 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/grpc.go +55 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/grpc_test.go +122 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/header.go +38 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/header_test.go +54 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/negotiate.go +52 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/negotiate_test.go +90 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/type.go +12 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/protocolversion/type_string.go +25 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/accept.go +291 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/accept_test.go +239 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/config.go +126 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/data.go +54 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/operation.go +127 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/operation_auth.go +117 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/operation_docs.go +103 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/operation_init.go +25 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/operation_run.go +60 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/runner.go +309 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/runner_test.go +148 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/COMMIT_EDITMSG +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/HEAD +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/config +7 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/description +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/applypatch-msg.sample +15 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/commit-msg.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/fsmonitor-watchman.sample +173 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/post-update.sample +8 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-applypatch.sample +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-commit.sample +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-merge-commit.sample +13 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-push.sample +53 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-rebase.sample +169 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/pre-receive.sample +24 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/prepare-commit-msg.sample +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/hooks/update.sample +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/index +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/info/exclude +6 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/logs/HEAD +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/logs/refs/heads/master +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/18/2027df9c3c65cf974c160987ebd15962a96b06 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/19/24b8606e1d56acb7e2059652ad059d4bac6f2e +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/42/e94293c5ab5c800ae0bb60708e23f146d70c7d +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/ae/22fcefd0d5d1ec4933de6a306e3628ebaf78c5 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/b4/50d3da13b8f241226fca12ce3450b783d7038c +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/b6/bf15100c570f2be6a231a095d395ed16dfed81 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/cf/a0599445d5025a7798f8949c83da3899e953df +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/objects/ea/2549d66602a0a588e69f033c48944de5b7a45c +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/DOTgit/refs/heads/master +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testdata/git-noop/vagrant.hcl +1 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/testing.go +118 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/ui.go +644 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/runner/ui_multi.go +187 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/auth.go +113 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/auth_test.go +57 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/bindata_ui.go +1255 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/component/component.go +3 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/execclient/client.go +224 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/execclient/escape.go +51 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/execclient/escape_test.go +171 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/execclient/sigwinch.go +14 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/execclient/sigwinch_windows.go +9 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/gen/ruby/.keep +0 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/gen/ruby/proto/ruby_vagrant/ruby-server_pb.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/gen/ruby/proto/ruby_vagrant/ruby-server_services_pb.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/gen/ruby/proto/vagrant_server/server_pb.rb +1025 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/gen/ruby/proto/vagrant_server/server_services_pb.rb +127 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/grpc.go +93 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/grpc_log.go +102 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/grpc_log_test.go +52 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/grpc_version.go +155 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/grpc_version_test.go +193 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/http.go +90 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/http_log.go +51 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/id.go +19 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/logbuffer/logbuffer.go +357 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/logbuffer/logbuffer_test.go +380 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/logviewer/logviewer.go +43 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/ruby_vagrant/ruby-server.pb.go +817 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/ruby_vagrant/ruby-server.proto +93 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/ruby_vagrant/ruby-server_grpc.pb.go +284 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/vagrant_server/server.pb.go +16336 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/vagrant_server/server.proto +1872 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/proto/vagrant_server/server_grpc.pb.go +1952 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/application.go +28 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/basis.go +97 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/component.go +119 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/job.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/job_test.go +49 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/project.go +99 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/runner.go +27 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/server_config.go +35 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/server_config_test.go +57 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/ptypes/target.go +34 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/server.go +141 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/server_test.go +83 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/auth.go +293 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/auth_test.go +182 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/prune.go +35 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service.go +150 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_basis.go +55 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_basis_test.go +99 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_box.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_box_test.go +111 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_config.go +30 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_config_test.go +127 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_job.go +371 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_job_test.go +399 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_logs.go +142 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_logs_test.go +160 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_project.go +55 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_project_test.go +135 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_runner.go +387 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_runner_test.go +248 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_server_config.go +43 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_server_config_test.go +38 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_snapshot.go +181 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_snapshot_test.go +111 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_target.go +67 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_target_test.go +127 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_task.go +72 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_task_test.go +50 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_test.go +9 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/service_version.go +18 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/basis.go +326 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/basis_test.go +166 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/box.go +305 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/box_test.go +235 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/config.go +431 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/config_test.go +413 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/db.go +141 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/generic_operation.go +902 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/hmac.go +176 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/hmac_test.go +58 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/index_time.go +81 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/job.go +1070 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/job_assigned.go +128 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/job_test.go +1116 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/project.go +396 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/project_test.go +112 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/prune.go +99 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/prune_test.go +217 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/runner.go +102 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/runner_test.go +51 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/server_config.go +143 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/server_config_test.go +42 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/server_id.go +27 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/snapshot.go +462 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/snapshot_test.go +114 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/state.go +196 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/state_test.go +11 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/target.go +402 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/target_test.go +259 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/task.go +66 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/state/testing.go +121 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/singleprocess/testing.go +176 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/sort/artifact.go +33 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/sort/build.go +33 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/sort/config.go +20 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/sort/deploy.go +52 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/status.go +37 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/server/testing.go +134 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverclient/client.go +289 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverclient/doc.go +2 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverclient/grpc_log.go +56 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverclient/ruby_client.go +132 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverconfig/config.go +67 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverinstall/config.go +19 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverinstall/docker.go +220 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverinstall/k8s.go +177 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/serverinstall/nomad.go +286 -0
- data/vendor/cache/vagrant-2092df529ae7/internal/version/version.go +94 -0
- data/vendor/cache/vagrant-2092df529ae7/keys/README.md +10 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builder.rb +355 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/box_add.rb +576 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/box_check_outdated.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/box_remove.rb +128 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/box_update.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/call.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/cleanup_disks.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/cloud_init_setup.rb +122 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/cloud_init_wait.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/config_validate.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/confirm.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/delayed.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/destroy_confirm.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/disk.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/graceful_halt.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/handle_box.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/handle_box_url.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +298 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/has_provisioner.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/is_env_set.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/is_state.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/message.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/mixin_provisioners.rb +156 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/mixin_synced_folders.rb +267 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/prepare_clone.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/provision.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/provisioner_cleanup.rb +54 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/remote/mixin_synced_folders.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/remote/ssh_run.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/set_hostname.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/ssh_exec.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/ssh_run.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/synced_folder_cleanup.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/synced_folders.rb +151 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/trigger.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/builtin/wait_for_communicator.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/general/package.rb +246 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/general/package_setup_files.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/general/package_setup_folders.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/hook.rb +160 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/primary_runner.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/runner.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action/warden.rb +136 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/action.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/alias.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/batch_action.rb +179 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box/remote.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box.rb +250 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box_collection/remote.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box_collection.rb +487 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box_metadata/remote.rb +97 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/box_metadata.rb +160 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/bundler.rb +923 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/capability_host.rb +177 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/cli.rb +123 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/loader.rb +320 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v1/loader.rb +105 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v1/root.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v2/dummy_config.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v2/loader.rb +151 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v2/root.rb +119 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/v2.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config/version_base.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/config.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/environment/remote.rb +173 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/environment.rb +1186 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/errors.rb +1139 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/guest/remote.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/guest.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/host/remote.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/host.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/machine/remote.rb +330 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/machine.rb +670 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/machine_index/remote.rb +155 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/machine_index.rb +519 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/machine_state.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/patches/fake_ftp.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/patches/log4r.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/manager.rb +403 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/command.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/communicator.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/guest.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/host.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/manager.rb +300 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/plugin.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/provider.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/provisioner.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/push.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote/synced_folder.rb +104 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/remote.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/state_file.rb +133 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1/command.rb +169 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1/guest.rb +92 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1/host.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1/plugin.rb +229 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1/provider.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v1.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/command.rb +304 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/communicator.rb +133 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/components.rb +91 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/config.rb +164 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/guest.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/host.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/manager.rb +303 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/plugin.rb +310 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/provider.rb +115 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/push.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/synced_folder.rb +112 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2/trigger.rb +364 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/plugin/grpc_broker_pb.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/plugin/grpc_broker_services_pb.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/protostructure_pb.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_pb.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/ruby_vagrant/ruby-server_services_pb.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb +1283 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_services_pb.rb +648 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/vagrant_server/server_pb.rb +1073 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/protobufs/proto/vagrant_server/server_services_pb.rb +135 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/registry.rb +110 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/shared_helpers.rb +298 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/ui/remote.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/ui.rb +449 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/ansi_escape_code_remover.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/caps.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/checkpoint_client.rb +183 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/command_deprecation.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/credential_scrubber.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/curl_helper.rb +100 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/deep_merge.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/directory.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/downloader.rb +272 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/env.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/experimental.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/file_checksum.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/file_mutex.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/guest_hosts.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/guest_inspection.rb +107 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/install_cli_autocomplete.rb +118 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/io.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/ipv4_interfaces.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/is_port_open.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/keypair.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/line_buffer.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/logging_formatter.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/map_command_options.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/mime.rb +92 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/network_ip.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/numeric.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/platform.rb +711 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/powershell.rb +281 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/presence.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/remote/safe_puts.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/remote/ssh.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/retryable.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/safe_env.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/safe_exec.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/safe_puts.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/scoped_hash_override.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/shell_quote.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/silence_warnings.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/ssh.rb +257 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/stacked_proc_runner.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/subprocess.rb +362 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/template_renderer.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/uploader.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/which.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/windows_path.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/util.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/vagrantfile/remote.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/vagrantfile.rb +319 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant/version.rb +7 -0
- data/vendor/cache/vagrant-2092df529ae7/lib/vagrant.rb +346 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/go-changelog.nix +17 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/go-mockery.nix +23 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/go-protobuf-json.nix +16 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/go-protobuf.nix +18 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/go-tools.nix +22 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/grpc-tools.nix +10 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/overlay.nix +20 -0
- data/vendor/cache/vagrant-2092df529ae7/nix/vagrant.nix +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/README.md +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/autocomplete/command/install.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/autocomplete/command/root.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/autocomplete/plugin.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/add.rb +101 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/download_mixins.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/list.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/outdated.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/prune.rb +133 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/remove.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/repackage.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/root.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/box/command/update.rb +176 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cap/command.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cap/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/login.rb +87 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/logout.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/middleware/add_authentication.rb +113 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/root.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/auth/whoami.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/create.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/delete.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/plugin.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/root.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/show.rb +84 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/box/update.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/client/client.rb +240 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/errors.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/list.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/locales/en.yml +175 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/plugin.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/create.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/delete.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/plugin.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/root.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/update.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/provider/upload.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/publish.rb +270 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/root.rb +105 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/search.rb +96 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/util.rb +318 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/create.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/delete.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/plugin.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/release.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/revoke.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/root.rb +82 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/cloud/version/update.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/destroy/command.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/global-status/command.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/global-status/plugin.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/halt/command.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/help/command.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/init/command.rb +107 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/list-commands/command.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/list-commands/plugin.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/login/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/package/command.rb +101 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/expunge_plugins.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/install_gem.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/license_plugin.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/list_plugins.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/plugin_exists_check.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/repair_plugins.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/uninstall_plugin.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action/update_gems.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/action.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/base.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/expunge.rb +92 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/install.rb +87 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/license.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/list.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/mixin_install_opts.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/repair.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/root.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/uninstall.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/update.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/gem_helper.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/port/command.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/port/locales/en.yml +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/port/plugin.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/powershell/command.rb +129 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/powershell/errors.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/powershell/plugin.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/powershell/scripts/enable_psremoting.ps1 +60 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/powershell/scripts/reset_trustedhosts.ps1 +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/provider/command.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/provider/plugin.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/provision/command.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/push/command.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/push/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/rdp/command.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/rdp/config.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/rdp/errors.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/rdp/plugin.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/reload/command.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/resume/command.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/broker.rb +161 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/basis.rb +92 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/box.rb +117 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/box_collection.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/box_metadata.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/capability_platform.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/command.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/communicator.rb +180 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/core_plugin_manager.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/guest.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/host.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/plugin_manager.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/project.rb +187 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/provider.rb +152 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/provisioner.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/push.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/state_bag.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/synced_folder.rb +115 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/target/machine.rb +141 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/target.rb +145 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/target_index.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/terminal.rb +118 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client/vagrantfile.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/client.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/command.rb +141 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/constants.rb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/basis.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/box.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/capabilities.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/command.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/communicator.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/config_data.rb +227 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/core_plugin_manager.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/direct.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/duration.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/environment.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/folders.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/guest.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/host.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/mappers.rb +332 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/search.rb +329 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/final.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/input.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/method.rb +59 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/named_value.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/output.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/root.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex/value.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/vertex.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph/weighted_vertex.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal/graph.rb +285 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/internal.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/known_types.rb +360 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/machine.rb +150 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/mapper.rb +193 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/options.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/pathname.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/plugin_manager.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/proc.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/project.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/provider.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/provisioner.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/push.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/state_bag.rb +59 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/synced_folder.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/target.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/target_index.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/terminal.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/ui.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/vagrantfile.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers/wrappers.rb +227 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/mappers.rb +525 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/capability_platform_service.rb +100 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/command_service.rb +308 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/communicator_service.rb +248 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/config_service.rb +87 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/guest_service.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/host_service.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/internal_service.rb +174 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/provider_service.rb +163 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/provisioner_service.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/push_service.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service/synced_folder_service.rb +147 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/service.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/boolean.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/command_arguments.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/command_info.rb +54 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/communicator_command_arguments.rb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/direct.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/duration.rb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/folders.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/named_argument.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/options.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/ssh_info.rb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type/winrm_info.rb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/type.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/cacher.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/client_setup.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/connector.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/direct_conversions.rb +667 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/exception_transformer.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/func_spec.rb +152 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/has_broker.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/has_logger.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/has_mapper.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/has_seeds.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/named_plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/service_info.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util/usage_tracker.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/serve/util.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/delete.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/list.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/pop.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/push.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/push_shared.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/restore.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/root.rb +94 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/command/save.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/snapshot/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/ssh/command.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/ssh_config/command.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/status/command.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/suspend/command.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/up/command.rb +193 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/up/middleware/store_box_metadata.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/up/plugin.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/up/start_mixins.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/upload/command.rb +236 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/upload/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/validate/command.rb +104 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/validate/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/version/command.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/version/plugin.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/winrm/command.rb +69 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/winrm/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/winrm_config/command.rb +125 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/commands/winrm_config/plugin.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/ssh/communicator.rb +768 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filter.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/cat.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/chmod.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/chown.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/grep.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/mkdir.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/rm.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/test.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/uname.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/command_filters/which.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/communicator.rb +227 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/config.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/errors.rb +69 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/helper.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/plugin.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winrm/shell.rb +262 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winssh/communicator.rb +249 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winssh/config.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/communicators/winssh/plugin.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alma/cap/flavor.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alma/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alma/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/change_host_name.rb +82 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/configure_networks.rb +64 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/halt.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/nfs_client.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/rsync.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/cap/smb.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alpine/plugin.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/cap/change_host_name.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/cap/configure_networks.rb +129 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/cap/flavor.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/cap/network_scripts_dir.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/cap/rsync.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/alt/plugin.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/amazon/cap/flavor.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/amazon/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/amazon/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/cap/change_host_name.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/cap/configure_networks.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/cap/nfs.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/cap/rsync.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/cap/smb.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/arch/plugin.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/atomic/cap/change_host_name.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/atomic/cap/docker.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/atomic/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/atomic/plugin.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/cap/file_system.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/cap/mount_virtualbox_shared_folder.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/cap/nfs.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/cap/public_key.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/bsd/plugin.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/centos/cap/flavor.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/centos/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/centos/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/coreos/cap/change_host_name.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/coreos/cap/configure_networks.rb +135 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/coreos/cap/docker.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/coreos/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/coreos/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/change_host_name.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/choose_addressable_ip_addr.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/configure_networks.rb +123 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/darwin_version.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/halt.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +132 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/rsync.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/cap/shell_expand_guest_path.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/guest.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/darwin/plugin.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/cap/change_host_name.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/cap/configure_networks.rb +203 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/cap/nfs.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/cap/rsync.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/cap/smb.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/debian/plugin.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/dragonflybsd/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/dragonflybsd/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/elementary/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/elementary/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/cap/change_host_name.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/cap/configure_networks.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/cap/mount_nfs_folder.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/cap/public_key.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/esxi/plugin.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/fedora/cap/flavor.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/fedora/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/fedora/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/cap/change_host_name.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/cap/configure_networks.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/cap/mount_virtualbox_shared_folder.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/cap/rsync.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/cap/shell_expand_guest_path.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/guest.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/freebsd/plugin.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/funtoo/cap/configure_networks.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/funtoo/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/funtoo/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/gentoo/cap/change_host_name.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/gentoo/cap/configure_networks.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/gentoo/plugin.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/cap/change_host_name.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/cap/insert_public_key.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/cap/remove_public_key.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/cap/rsync.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/haiku/plugin.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/kali/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/kali/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/change_host_name.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/file_system.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/halt.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/mount_smb_shared_folder.rb +91 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/network_interfaces.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/nfs.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/persist_mount_shared_folder.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/port.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/public_key.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/read_ip_address.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/reboot.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/rsync.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/cap/shell_expand_guest_path.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/guest.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/linux/plugin.rb +136 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/mint/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/mint/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/cap/change_host_name.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/cap/configure_networks.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/cap/rsync.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/cap/shell_expand_guest_path.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/netbsd/plugin.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/nixos/cap/change_host_name.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/nixos/cap/configure_networks.rb +132 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/nixos/cap/nfs_client.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/nixos/guest.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/nixos/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/omnios/cap/change_host_name.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/omnios/cap/mount_nfs_folder.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/omnios/cap/rsync.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/omnios/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/omnios/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/change_host_name.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/configure_networks.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/halt.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/rsync.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/cap/shell_expand_guest_path.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openbsd/plugin.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/cap/change_host_name.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/cap/insert_public_key.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/cap/remove_public_key.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/cap/rsync.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/guest.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/openwrt/plugin.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/photon/cap/change_host_name.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/photon/cap/configure_networks.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/photon/cap/docker.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/photon/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/photon/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/pld/cap/change_host_name.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/pld/cap/flavor.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/pld/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/pld/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/change_host_name.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/configure_networks.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/flavor.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/nfs_client.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/rsync.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/cap/smb.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/redhat/plugin.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/rocky/cap/flavor.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/rocky/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/rocky/plugin.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/slackware/cap/change_host_name.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/slackware/cap/configure_networks.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/slackware/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/slackware/plugin.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/change_host_name.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/configure_networks.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/halt.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/insert_public_key.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/mount_nfs.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/remove_public_key.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/cap/rsync.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/config.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/guest.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/smartos/plugin.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/file_system.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/halt.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/insert_public_key.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/remove_public_key.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/cap/rsync.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/config.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/guest.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris/plugin.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris11/cap/change_host_name.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris11/cap/configure_networks.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris11/config.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris11/guest.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/solaris11/plugin.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/change_host_name.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/configure_networks.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/halt.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/network_scripts_dir.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/nfs_client.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/cap/rsync.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/suse/plugin.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/cap/change_host_name.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/cap/configure_networks.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/cap/mount_nfs.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/cap/rsync.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/tinycore/plugin.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/trisquel/guest.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/trisquel/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/ubuntu/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/ubuntu/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/change_host_name.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/choose_addressable_ip_addr.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/configure_networks.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/file_system.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/halt.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/mount_shared_folder.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/public_key.rb +84 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/reboot.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/cap/rsync.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/config.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/errors.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/guest.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/guest_network.rb +125 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/plugin.rb +113 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/scripts/mount_volume.ps1.erb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/scripts/reboot_detect.ps1 +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/scripts/set_work_network.ps1 +6 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/guests/windows/scripts/winrs_v3_get_adapters.ps1 +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/alt/cap/nfs.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/alt/host.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/alt/plugin.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/arch/cap/nfs.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/arch/host.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/arch/plugin.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/cap/nfs.rb +198 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/cap/path.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/cap/ssh.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/host.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/bsd/plugin.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/configured_ip_addresses.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/fs_iso.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/nfs.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/path.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/provider_install_virtualbox.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/rdp.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/smb.rb +125 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/cap/version.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/host.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/plugin.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/darwin/scripts/install_virtualbox.sh +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/freebsd/cap/nfs.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/freebsd/host.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/freebsd/plugin.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/gentoo/cap/nfs.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/gentoo/host.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/gentoo/plugin.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/cap/fs_iso.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/cap/nfs.rb +293 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/cap/rdp.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/cap/ssh.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/host.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/linux/plugin.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/null/host.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/null/plugin.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/redhat/cap/nfs.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/redhat/host.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/redhat/plugin.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/slackware/cap/nfs.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/slackware/host.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/slackware/plugin.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/suse/cap/nfs.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/suse/host.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/suse/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/void/cap/nfs.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/void/host.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/void/plugin.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/configured_ip_addresses.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/fs_iso.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/nfs.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/provider_install_virtualbox.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/ps.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/rdp.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/smb.rb +200 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/cap/ssh.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/host.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/plugin.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/check_credentials.ps1 +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/host_info.ps1 +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/install_virtualbox.ps1 +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/set_share.ps1 +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/set_ssh_key_permissions.ps1 +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/unset_share.ps1 +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/hosts/windows/scripts/utils/VagrantSSH/VagrantSSH.psm1 +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v1/config/ssh.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v1/config/vm.rb +188 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/cloud_init.rb +133 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/disk.rb +221 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/package.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/push.rb +152 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/ssh.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/ssh_connect.rb +141 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/trigger.rb +211 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/vagrant.rb +96 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/vm.rb +1063 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/vm_provisioner.rb +199 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/config/vm_trigger.rb +293 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/kernel_v2/plugin.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/build.rb +96 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/compare_synced_folders.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/connect_networks.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/create.rb +159 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/destroy.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/destroy_build_image.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/destroy_network.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/forwarded_ports.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/has_ssh.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_build_dir.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_port_checker.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_port_warning.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_required.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_sync_folders.rb +173 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/host_machine_sync_folders_disable.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/init_state.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/is_build.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/is_host_machine_created.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/login.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_networks.rb +369 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_nfs_settings.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_nfs_valid_ids.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_ssh.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/pull.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/start.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/stop.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/wait_for_running.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action.rb +316 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/cap/has_communicator.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/cap/proxy_machine.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/cap/public_address.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/command/exec.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/command/logs.rb +108 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/command/run.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/communicator.rb +196 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/config.rb +359 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/driver/compose.rb +312 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/driver.rb +408 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/errors.rb +105 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/executor/local.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/executor/vagrant.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/plugin.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/provider.rb +213 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/synced_folder.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/check_access.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/check_enabled.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/configure.rb +113 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/delete_vm.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/export.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/import.rb +83 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/is_windows.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/message_will_not_destroy.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/net_set_mac.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/net_set_vlan.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/package.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/package_metadata_json.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/package_setup_files.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/package_setup_folders.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/package_vagrantfile.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/read_guest_ip.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/read_state.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/resume_vm.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/set_name.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/snapshot_delete.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/snapshot_restore.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/snapshot_save.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/start_instance.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/stop_instance.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/suspend_vm.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action/wait_for_ip_address.rb +59 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/action.rb +323 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/cap/cleanup_disks.rb +54 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/cap/configure_disks.rb +200 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/cap/public_address.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/cap/snapshot_list.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/cap/validate_disk_ext.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/config.rb +145 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/driver.rb +335 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/errors.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/plugin.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/provider.rb +113 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/attach_disk_drive.ps1 +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/check_hyperv.ps1 +8 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/check_hyperv_access.ps1 +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/clone_vhd.ps1 +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/configure_vm.ps1 +127 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/create_snapshot.ps1 +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/delete_snapshot.ps1 +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/delete_vm.ps1 +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/dismount_vhd.ps1 +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/export_vm.ps1 +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/file_sync.ps1 +123 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/get_network_config.ps1 +65 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/get_network_mac.ps1 +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/get_switches.ps1 +10 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/get_vhd.ps1 +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/get_vm_status.ps1 +49 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/has_vmcx_support.ps1 +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/import_vm.ps1 +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/list_hdds.ps1 +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/list_snapshots.ps1 +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/new_vhd.ps1 +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/remove_disk_drive.ps1 +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/resize_disk_drive.ps1 +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/restore_snapshot.ps1 +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/resume_vm.ps1 +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1 +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/set_name.ps1 +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/set_network_mac.ps1 +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/start_vm.ps1 +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/stop_vm.ps1 +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/suspend_vm.ps1 +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/utils/VagrantMessages/VagrantMessages.psm1 +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +773 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/check_guest_additions.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/check_virtualbox.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/clean_machine_folder.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/clear_network_interfaces.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/customize.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/discard_state.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/export.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/forward_ports.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/import.rb +107 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/import_master.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/match_mac_address.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/message_will_not_destroy.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/network.rb +624 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/network_fix_ipv6.rb +84 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/package.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/package_setup_files.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/package_setup_folders.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/package_vagrantfile.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +159 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/resume.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/sane_defaults.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/set_default_nic_type.rb +69 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/set_name.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/setup_package_files.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/snapshot_delete.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/snapshot_restore.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/snapshot_save.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/suspend.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action.rb +430 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap/cleanup_disks.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap/configure_disks.rb +440 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap/mount_options.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap/public_address.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap/validate_disk_ext.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/cap.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/config.rb +208 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/base.rb +523 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/meta.rb +204 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_4_0.rb +571 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_4_1.rb +697 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_4_2.rb +710 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_4_3.rb +754 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_5_0.rb +1019 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_5_1.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_5_2.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_6_0.rb +102 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_6_1.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/driver/version_7_0.rb +302 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/model/forwarded_port.rb +70 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/model/storage_controller.rb +135 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/model/storage_controller_array.rb +98 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/plugin.rb +116 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/provider.rb +130 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/synced_folder.rb +150 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/facts.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/pip/pip.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/posix/ansible_installed.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/config/base.rb +154 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/config/guest.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/config/host.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/constants.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/errors.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/helpers.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/plugin.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/provisioner/base.rb +402 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/provisioner/guest.rb +194 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/provisioner/host.rb +349 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/config.rb +126 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/plugin.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/cfengine/provisioner.rb +140 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/debian/chef_install.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/freebsd/chef_install.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/linux/chef_installed.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/omnios/chef_install.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/omnios/chef_installed.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/redhat/chef_install.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/suse/chef_install.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/windows/chef_install.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/cap/windows/chef_installed.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/command_builder.rb +84 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/base.rb +136 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/base_runner.rb +128 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/chef_apply.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/chef_client.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/chef_solo.rb +138 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/chef_zero.rb +130 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/installer.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/omnibus.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/plugin.rb +107 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/provisioner/base.rb +255 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/provisioner/chef_apply.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/provisioner/chef_client.rb +176 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/provisioner/chef_solo.rb +241 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/provisioner/chef_zero.rb +120 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/container/client.rb +203 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/container/config.rb +83 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/container/installer.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/container/plugin.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/container/provisioner.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/centos/docker_install.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/centos/docker_start_service.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/debian/docker_install.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/debian/docker_start_service.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/fedora/docker_install.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/linux/docker_daemon_running.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/linux/docker_installed.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/cap/windows/docker_daemon_running.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/client.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/config.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/installer.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/plugin.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/docker/provisioner.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/file/config.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/file/provisioner.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/cap/centos/podman_install.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/cap/linux/podman_installed.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/cap/redhat/podman_install.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/client.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/config.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/installer.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/plugin.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/podman/provisioner.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/puppet/config/puppet.rb +175 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/puppet/config/puppet_server.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/puppet/plugin.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/puppet/provisioner/puppet.rb +334 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/puppet/provisioner/puppet_server.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/salt/bootstrap_downloader.rb +58 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/salt/config.rb +191 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/salt/errors.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/salt/provisioner.rb +490 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/shell/config.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/provisioners/shell/provisioner.rb +365 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/atlas/config.rb +148 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/atlas/errors.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/atlas/locales/en.yml +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/atlas/plugin.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/atlas/push.rb +84 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/adapter.rb +144 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/config.rb +130 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/errors.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/locales/en.yml +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/plugin.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/ftp/push.rb +134 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/heroku/config.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/heroku/errors.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/heroku/locales/en.yml +30 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/heroku/plugin.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/heroku/push.rb +144 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/local-exec/config.rb +77 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/local-exec/errors.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/local-exec/locales/en.yml +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/local-exec/plugin.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/local-exec/push.rb +88 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/noop/config.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/noop/plugin.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/pushes/noop/push.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/nfs/action_cleanup.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/nfs/config.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/nfs/plugin.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/nfs/synced_folder.rb +163 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/command/rsync.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/command/rsync_auto.rb +241 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/default_unix_cap.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/helper.rb +293 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/plugin.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/rsync/synced_folder.rb +59 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/cap/default_fstab_modification.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/cap/mount_options.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/config.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/errors.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/plugin.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/smb/synced_folder.rb +186 -0
- data/vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/unix_mount_helpers.rb +119 -0
- data/vendor/cache/vagrant-2092df529ae7/scripts/install_rvm +19 -0
- data/vendor/cache/vagrant-2092df529ae7/scripts/setup_tests +49 -0
- data/vendor/cache/vagrant-2092df529ae7/scripts/sign.sh +26 -0
- data/vendor/cache/vagrant-2092df529ae7/scripts/website_push_www.sh +40 -0
- data/vendor/cache/vagrant-2092df529ae7/shell.nix +5 -0
- data/vendor/cache/vagrant-2092df529ae7/tasks/acceptance.rake +22 -0
- data/vendor/cache/vagrant-2092df529ae7/tasks/test.rake +9 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/commands/init/Vagrantfile.erb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/commands/init/Vagrantfile.min.erb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/commands/ssh_config/config.erb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/commands/winrm_config/config.erb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/alpine/network_dhcp.erb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/alt/network_dhcp.erb +7 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/alt/network_ipv4address.erb +3 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/alt/network_ipv4route.erb +5 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/alt/network_static.erb +7 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/default_network/network_dhcp.erb +4 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/default_network/network_static.erb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/default_network/network_static6.erb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/debian/network_dhcp.erb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/debian/network_static.erb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/debian/network_static6.erb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/freebsd/network_dhcp.erb +4 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/freebsd/network_static.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/freebsd/network_static6.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/funtoo/network_dhcp.erb +4 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/funtoo/network_static.erb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/funtoo/network_static6.erb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/gentoo/network_dhcp.erb +4 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/gentoo/network_static.erb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/gentoo/network_static6.erb +8 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/gentoo/network_systemd.erb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/linux/etc_fstab.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/netbsd/network_dhcp.erb +3 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/netbsd/network_static.erb +3 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/nixos/hostname.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/nixos/network.erb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/openbsd/network_static6.erb +1 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/redhat/network_dhcp.erb +7 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/redhat/network_static.erb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/redhat/network_static6.erb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/slackware/network_dhcp.erb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/slackware/network_static.erb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/suse/network_dhcp.erb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/suse/network_static.erb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/guests/suse/network_static6.erb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/comm_winrm.yml +82 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/command_ps.yml +32 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/command_rdp.yml +25 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/en.yml +3091 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/guest_windows.yml +23 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/providers_docker.yml +318 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/providers_hyperv.yml +108 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/locales/synced_folder_smb.yml +95 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/nfs/exports_bsd.erb +5 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/nfs/exports_darwin.erb +7 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/provisioners/chef_client/client.erb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/provisioners/chef_solo/solo.erb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/templates/provisioners/chef_zero/zero.erb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/test/acceptance/base.rb +2 -0
- data/vendor/cache/vagrant-2092df529ae7/test/acceptance/provider-docker/lifecycle_spec.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/test/acceptance/provider-virtualbox/linked_clone_spec.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/test/acceptance/provider-virtualbox/network_intnet_spec.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/acceptance/shared/context_virtualbox.rb +5 -0
- data/vendor/cache/vagrant-2092df529ae7/test/support/isolated_environment.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/base.rb +75 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/bin/vagrant_test.rb +199 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/autocomplete/commands/install_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/add_test.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/outdated_test.rb +140 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/prune_test.rb +190 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/remove_test.rb +81 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/repackage_test.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/box/command/update_test.rb +450 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cap/command_test.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/auth/login_test.rb +177 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/auth/logout_test.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/auth/middleware/add_authentication_test.rb +226 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/auth/middleware/add_downloader_authentication_test.rb +169 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/auth/whoami_test.rb +110 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/box/create_test.rb +146 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/box/delete_test.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/box/show_test.rb +146 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/box/update_test.rb +142 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/client_test.rb +269 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/list_test.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/provider/create_test.rb +170 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/provider/delete_test.rb +136 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/provider/update_test.rb +171 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/provider/upload_test.rb +204 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/publish_test.rb +343 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/search_test.rb +159 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/version/create_test.rb +131 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/version/delete_test.rb +118 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/version/release_test.rb +117 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/version/revoke_test.rb +119 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/cloud/version/update_test.rb +125 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/destroy/command_test.rb +253 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/global-status/command_test.rb +114 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/init/command_test.rb +138 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/list-commands/command_test.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/package/command_test.rb +132 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/plugin/action/expunge_plugins_test.rb +168 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/plugin/action/install_gem_test.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/plugin/action/uninstall_plugin_test.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/plugin/action/update_gems_test.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/port/command_test.rb +131 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/powershell/command_test.rb +142 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/provider/command_test.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/push/command_test.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/reload/command_test.rb +99 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/serve/mappers_test.rb +71 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/serve/service/guest_service_test.rb +172 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/serve/service/host_service_test.rb +183 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/serve/util/exception_transformer_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/delete_test.rb +97 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/list_test.rb +83 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/pop_test.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/push_test.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/restore_test.rb +130 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/root_test.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/snapshot/command/save_test.rb +131 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/ssh_config/command_test.rb +182 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/suspend/command_test.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/up/command_test.rb +132 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/up/middleware/store_box_metadata_test.rb +101 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/upload/command_test.rb +242 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/validate/command_test.rb +171 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/winrm/command_test.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/commands/winrm_config/command_test.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/ssh/communicator_test.rb +945 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/command_filter_test.rb +101 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/communicator_test.rb +161 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/config_test.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/helper_test.rb +187 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/plugin_test.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winrm/shell_test.rb +272 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/communicators/winssh/communicator_test.rb +551 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alma/cap/flavor_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/cap/change_host_name_test.rb +70 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/cap/configure_networks_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/cap/halt_test.rb +23 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/cap/nfs_client_test.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/cap/rsync_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alpine/plugin_test.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alt/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alt/cap/configure_networks_test.rb +237 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alt/cap/flavor_test.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alt/cap/network_scripts_dir_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/alt/cap/rsync_test.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/amazon/cap/flavor_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/arch/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/arch/cap/configure_networks_test.rb +82 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/arch/cap/rsync_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/arch/cap/smb_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/atomic/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/atomic/cap/docker_test.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/file_system_test.rb +127 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/halt_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/insert_public_key_test.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/mount_virtual_box_shared_folder_test.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/nfs_test.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/bsd/cap/remove_public_key_test.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/centos/cap/flavor_test.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/coreos/cap/change_host_name_test.rb +67 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/coreos/cap/configure_networks_test.rb +347 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/coreos/cap/docker_test.rb +28 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/change_host_name_test.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/choose_addressable_ip_addr_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/darwin_version_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/halt_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/mount_vmware_shared_folder_test.rb +227 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/darwin/cap/shell_expand_guest_path_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/debian/cap/change_host_name_test.rb +195 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/debian/cap/configure_networks_test.rb +187 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/debian/cap/nfs_client_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/debian/cap/rsync_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/debian/cap/smb_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/esxi/cap/halt_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/esxi/cap/public_key_test.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/freebsd/cap/change_host_name_test.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/freebsd/cap/configure_networks_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/freebsd/cap/mount_virtual_box_shared_folder_test.rb +224 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/freebsd/cap/rsync_test.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/freebsd/cap/shell_expand_guest_path_test.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/gentoo/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/haiku/cap/rsync_test.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/change_host_name_test.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/choose_addressable_ip_addr_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/file_system_test.rb +127 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/halt_test.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/mount_nfs_test.rb +91 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/mount_shared_folder_test.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/mount_smb_shared_folder_test.rb +118 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/mount_virtual_box_shared_folder_test.rb +110 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/network_interfaces_test.rb +108 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/nfs_client_test.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/persist_mount_shared_folder_test.rb +137 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/port_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/reboot_test.rb +165 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/remove_public_key_test.rb +32 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/rsync_test.rb +97 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/linux/cap/shell_expand_guest_path_test.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/netbsd/cap/shell_expand_guest_path_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/omnios/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/omnios/cap/mount_nfs_folder_test.rb +45 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/omnios/cap/rsync_test.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openbsd/cap/change_host_name_test.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openbsd/cap/halt_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openbsd/cap/rsync_test.rb +59 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openbsd/cap/shell_expand_guest_path_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/cap/change_host_name_test.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/cap/halt_test.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/cap/insert_public_key_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/cap/remove_public_key_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/cap/rsync_test.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/openwrt/guest_test.rb +0 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/photon/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/photon/cap/configure_networks_test.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/photon/cap/docker_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/pld/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/pld/cap/flavor_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/pld/cap/network_scripts_dir_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/change_host_name_test.rb +149 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/configure_networks_test.rb +253 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/flavor_test.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/network_scripts_dir_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/rsync_test.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/redhat/cap/smb_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/rocky/cap/flavor_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/slackware/cap/change_host_name_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/slackware/cap/configure_networks_test.rb +52 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/change_host_name_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/configure_networks_test.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/halt_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/insert_public_key_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/mount_nfs_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/remove_public_key_test.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/smartos/cap/rsync_test.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/solaris/cap/file_system_test.rb +127 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/solaris/cap/halt_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/solaris11/cap/change_host_name_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/solaris11/cap/configure_networks_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/change_host_name_test.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/configure_networks_test.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/halt_test.rb +54 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/network_scripts_dir_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/nfs_client_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/suse/cap/rsync_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/tinycore/cap/change_host_name_test.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/tinycore/cap/halt_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/change_host_name_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/file_system_test.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/halt_test.rb +33 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/insert_public_key_test.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/mount_shared_folder_test.rb +125 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/reboot_test.rb +147 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/remove_public_key_test.rb +69 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/cap/rsync_test.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/config_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/guests/windows/guest_network_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/bsd/cap/nfs_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/bsd/cap/path_test.rb +13 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/bsd/cap/ssh_test.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/configured_ip_addresses_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/fs_iso_test.rb +78 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/nfs_test.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/path_test.rb +150 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/rdp_test.rb +36 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/smb_test.rb +129 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/version_test.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/linux/cap/fs_iso_test.rb +58 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/linux/cap/nfs_test.rb +391 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/linux/cap/ssh_test.rb +15 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/void/cap/nfs_test.rb +62 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/windows/cap/configure_ip_addresses_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/windows/cap/fs_iso_test.rb +58 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/windows/cap/smb_test.rb +265 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/windows/cap/ssh_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/cloud_init_test.rb +112 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/disk_test.rb +124 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/package_test.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/push_test.rb +352 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/ssh_connect_test.rb +165 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/ssh_test.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/trigger_test.rb +194 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/vagrant_test.rb +109 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/vm_test.rb +840 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/kernel_v2/config/vm_trigger_test.rb +152 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/compare_synced_folders_test.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/connect_networks_test.rb +151 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/create_test.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/destroy_network_test.rb +128 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/host_machine_sync_folders_test.rb +70 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/login_test.rb +119 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/action/prepare_networks_test.rb +398 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/command/exec_test.rb +65 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/config_test.rb +393 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/driver_compose_test.rb +348 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/driver_test.rb +753 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/provider_test.rb +131 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/docker/synced_folder_test.rb +74 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/check_enabled_test.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/configure_test.rb +143 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/delete_vm_test.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/export_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/import_test.rb +128 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/is_windows_test.rb +37 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/net_set_mac_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/net_set_vlan_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/read_guest_ip_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/read_state_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/set_name_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/action/wait_for_ip_address_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/cap/cleanup_disks_test.rb +96 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/cap/configure_disks_test.rb +250 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/config_test.rb +258 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/driver_test.rb +175 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/hyperv/provider_test.rb +135 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/clean_machine_folder_test.rb +25 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/import_test.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/match_mac_address_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/network_fix_ipv6_test.rb +182 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/network_test.rb +472 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/prepare_nfs_settings_test.rb +167 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/action/set_default_nic_type_test.rb +148 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/base.rb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/cap/cleanup_disks_test.rb +142 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/cap/configure_disks_test.rb +599 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/cap/mount_options_test.rb +178 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/cap/public_address_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/cap_test.rb +58 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/config_test.rb +89 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/base.rb +115 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_4_0_test.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_4_1_test.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_4_2_test.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_4_3_test.rb +11 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_5_0_test.rb +276 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_6_0_test.rb +163 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_6_1_test.rb +120 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/driver/version_7_0_test.rb +871 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/model/storage_controller_array_test.rb +132 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/model/storage_controller_test.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/provider_test.rb +121 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/support/shared/virtualbox_driver_version_4_x_examples.rb +245 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/support/shared/virtualbox_driver_version_5_x_examples.rb +164 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/support/shared/virtualbox_driver_version_6_x_examples.rb +5 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/providers/virtualbox/synced_folder_test.rb +254 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/alpine/ansible_install_test.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/arch/ansible_install_test.rb +57 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/debian/ansible_install_test.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install_test.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/pip/pip_test.rb +61 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/shared/pip_ansible_install_examples.rb +99 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/suse/ansible_install_test.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install_test.rb +76 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/config/guest_test.rb +100 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/config/host_test.rb +116 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/config/shared.rb +183 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/ansible/provisioner_test.rb +1262 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/cap/freebsd/chef_installed_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/cap/linux/chef_installed_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/cap/omnios/chef_installed_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/cap/windows/chef_installed_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/command_builder_test.rb +149 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/base_runner_test.rb +265 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/base_test.rb +98 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/chef_apply_test.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/chef_client_test.rb +100 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/chef_solo_test.rb +155 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/config/chef_zero_test.rb +181 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/omnibus_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/provisioner/base_test.rb +95 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/chef/provisioner/chef_solo_test.rb +85 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/container/client_test.rb +55 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/container/config_test.rb +141 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/docker/config_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/docker/installer_test.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/docker/plugin_test.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/docker/provisioner_test.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/file/config_test.rb +80 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/file/provisioner_test.rb +112 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/podman/config_test.rb +30 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/podman/installer_test.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/podman/provisioner_test.rb +72 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/puppet/provisioner/puppet_test.rb +130 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/salt/bootstrap_downloader_test.rb +44 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/salt/config_test.rb +180 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/salt/provisioner_test.rb +185 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/shell/config_test.rb +199 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/shell/provisioner_test.rb +769 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/provisioners/support/shared/config.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/atlas/config_test.rb +207 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/atlas/push_test.rb +181 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/ftp/adapter_test.rb +115 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/ftp/config_test.rb +171 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/ftp/push_test.rb +329 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/heroku/config_test.rb +99 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/heroku/push_test.rb +313 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/local-exec/config_test.rb +164 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/local-exec/push_test.rb +133 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/pushes/noop/config_test.rb +14 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/nfs/action_cleanup_test.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/nfs/config_test.rb +17 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/rsync/command/rsync_auto_test.rb +275 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/rsync/command/rsync_test.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/rsync/default_unix_cap_test.rb +87 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/rsync/helper_test.rb +587 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/rsync/synced_folder_test.rb +97 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/smb/caps/mount_options_test.rb +112 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/smb/synced_folder_test.rb +344 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/plugins/synced_folders/unix_mount_helpers_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/dummy_communicator.rb +83 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/dummy_provider.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/isolated_environment.rb +217 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/shared/action_synced_folders_context.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/shared/base_context.rb +146 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/shared/capability_helpers_context.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/shared/plugin_command_context.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/support/shared/virtualbox_context.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/commands/init/Vagrantfile.erb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/arch/default_network/network_dhcp_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/arch/default_network/network_static_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/arch/systemd_networkd/network_dhcp_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/arch/systemd_networkd/network_static_test.rb +41 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/debian/network_dhcp_test.rb +42 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/debian/network_static_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/freebsd/network_dhcp_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/freebsd/network_static_test.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/funtoo/network_dhcp_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/funtoo/network_static_test.rb +141 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/gentoo/network_dhcp_test.rb +19 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/gentoo/network_static_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/gentoo/systemd_network_test.rb +73 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/netbsd/network_dhcp_test.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/netbsd/network_static_test.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/nixos/network_test.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/redhat/network_dhcp_test.rb +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/redhat/network_static_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/suse/network_dhcp_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/suse/network_static6_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/guests/suse/network_static_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/templates/nfs/exports_darwin_test.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builder_test.rb +817 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/box_add_test.rb +1356 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/box_check_outdated_test.rb +301 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/box_remove_test.rb +250 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/call_test.rb +196 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/cleanup_disks_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/cloud_init_setup_test.rb +152 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/cloud_init_wait_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/confirm_test.rb +53 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/delayed_test.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/disk_test.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/env_set_test.rb +20 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/graceful_halt_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/handle_box_test.rb +145 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb +213 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/has_provisioner_test.rb +66 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/is_env_set_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/is_state_test.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/lock_test.rb +101 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/message_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/mixin_provisioners_test.rb +255 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/mixin_synced_folders_test.rb +357 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/provision_test.rb +204 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/provisioner_cleanup_test.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/set_hostname_test.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/ssh_exec_test.rb +48 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/ssh_run_test.rb +148 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/synced_folder_cleanup_test.rb +135 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/synced_folders_test.rb +263 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/builtin/trigger_test.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/general/package_test.rb +412 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/hook_test.rb +173 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/runner_test.rb +144 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/action/warden_test.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/alias_test.rb +68 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/batch_action_test.rb +86 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/box_collection_test.rb +519 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/box_metadata_test.rb +203 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/box_test.rb +411 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/bundler_test.rb +912 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/capability_host_test.rb +163 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/cli_test.rb +110 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/loader_test.rb +249 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v1/dummy_config_test.rb +24 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v1/loader_test.rb +145 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v1/root_test.rb +40 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v2/dummy_config_test.rb +31 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v2/loader_test.rb +151 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v2/root_test.rb +144 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config/v2/util_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/config_test.rb +91 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/environment_test.rb +1648 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/errors_test.rb +56 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/guest_test.rb +102 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/host_test.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/machine/remote_test.rb +262 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/machine_index_test.rb +377 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/machine_state_test.rb +26 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/machine_test.rb +1019 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/manager_test.rb +459 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/state_file_test.rb +121 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/command_test.rb +144 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/communicator_test.rb +9 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/config_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/manager_test.rb +114 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/plugin_test.rb +267 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v1/provider_test.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/command_test.rb +382 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/communicator_test.rb +4 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/components_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/config_test.rb +83 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/manager_test.rb +378 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/plugin_test.rb +422 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/provider_test.rb +58 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/synced_folder_test.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/plugin/v2/trigger_test.rb +587 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/registry_test.rb +168 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/shared_helpers_test.rb +219 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/ui_test.rb +449 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/caps_test.rb +35 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/checkpoint_client_test.rb +187 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/command_deprecation_test.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/credential_scrubber_test.rb +123 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/curl_helper_test.rb +6 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/deep_merge_test.rb +29 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/directory_test.rb +22 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/downloader_test.rb +324 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/env_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/experimental_test.rb +110 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/file_checksum_test.rb +46 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/file_mutex_test.rb +79 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/guest_hosts_test.rb +43 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/guest_inspection_test.rb +18 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +38 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/install_cli_autocomplete_test.rb +70 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/io_test.rb +111 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/ipv4_interfaces_test.rb +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/is_port_open_test.rb +63 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/keypair_test.rb +34 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/line_buffer_test.rb +60 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/line_endings_helper_test.rb +16 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/map_command_options_test.rb +21 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/mime_test.rb +90 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/network_ip_test.rb +51 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/numeric_test.rb +27 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/platform_test.rb +544 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/powershell_test.rb +322 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/presence_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/retryable_test.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/safe_chdir_test.rb +49 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/scoped_hash_override_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/shell_quote_test.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/ssh_test.rb +284 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/string_block_editor_test.rb +106 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/subprocess_test.rb +178 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/uploader_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/which_test.rb +50 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/vagrantfile_test.rb +535 -0
- data/vendor/cache/vagrant-2092df529ae7/test/unit/vagrant_test.rb +127 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/.runner-vmware.sh +47 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/Vagrantfile.spec +177 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/boxes/.keep +0 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/configs/vagrant-spec.config.docker.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/configs/vagrant-spec.config.virtualbox.rb +12 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/readme.md +93 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/centos-run.virtualbox.sh +9 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/centos-setup.virtualbox.sh +39 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh +45 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/ubuntu-run.docker.sh +15 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/ubuntu-run.virtualbox.sh +16 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/ubuntu-setup.docker.sh +10 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/ubuntu-setup.virtualbox.sh +12 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/windows-run.virtualbox.ps1 +7 -0
- data/vendor/cache/vagrant-2092df529ae7/test/vagrant-spec/scripts/windows-setup.virtualbox.ps1 +69 -0
- data/vendor/cache/vagrant-2092df529ae7/tools.go +10 -0
- data/vendor/cache/vagrant-2092df529ae7/vagrant-config.hcl +0 -0
- data/vendor/cache/vagrant-2092df529ae7/vagrant-spec.config.example.rb +10 -0
- data/vendor/cache/vagrant-2092df529ae7/vagrant.gemspec +57 -0
- data/vendor/cache/vagrant-2092df529ae7/version.txt +1 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.editorconfig +18 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.env +3 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.env.production +1 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.eslintrc.js +4 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.gitignore +11 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.nvmrc +1 -0
- data/vendor/cache/vagrant-2092df529ae7/website/.stylelintrc.js +3 -0
- data/vendor/cache/vagrant-2092df529ae7/website/LICENSE.md +10 -0
- data/vendor/cache/vagrant-2092df529ae7/website/Makefile +58 -0
- data/vendor/cache/vagrant-2092df529ae7/website/README.md +535 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/base.mdx +305 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/box_repository.mdx +68 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/format.mdx +64 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/index.mdx +78 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/info.mdx +41 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/boxes/versioning.mdx +106 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/aliases.mdx +73 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/box.mdx +213 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/cloud.mdx +337 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/connect.mdx +33 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/destroy.mdx +38 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/global-status.mdx +38 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/halt.mdx +33 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/index.mdx +36 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/init.mdx +70 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/login.mdx +61 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/machine-readable.mdx +89 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/non-primary.mdx +33 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/package.mdx +46 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/plugin.mdx +164 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/port.mdx +40 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/powershell.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/provision.mdx +27 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/rdp.mdx +41 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/reload.mdx +30 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/resume.mdx +27 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/rsync-auto.mdx +55 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/rsync.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/share.mdx +48 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/snapshot.mdx +97 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/ssh.mdx +139 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/ssh_config.mdx +19 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/status.mdx +17 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/suspend.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/up.mdx +48 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/upload.mdx +29 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/validate.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/version.mdx +18 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/winrm.mdx +25 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cli/winrm_config.mdx +19 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cloud-init/configuration.mdx +61 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cloud-init/index.mdx +17 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/cloud-init/usage.mdx +77 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/configuration.mdx +118 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/hyperv/common-issues.mdx +25 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/hyperv/index.mdx +32 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/hyperv/usage.mdx +70 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/index.mdx +25 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/usage.mdx +117 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/virtualbox/common-issues.mdx +52 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/virtualbox/index.mdx +55 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/virtualbox/usage.mdx +31 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/vmware/common-issues.mdx +41 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/vmware/index.mdx +34 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/disks/vmware/usage.mdx +43 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/experimental/index.mdx +63 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/experimental/vagrant_go.mdx +208 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/index.mdx +23 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/backwards-compatibility.mdx +39 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/index.mdx +99 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/source.mdx +82 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/uninstallation.mdx +63 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/upgrading-from-1-0.mdx +30 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/installation/upgrading.mdx +34 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/multi-machine.mdx +152 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/networking/basic_usage.mdx +78 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/networking/forwarded_ports.mdx +121 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/networking/index.mdx +50 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/networking/private_network.mdx +120 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/networking/public_network.mdx +169 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/other/debugging.mdx +69 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/other/environmental-variables.mdx +354 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/other/index.mdx +15 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/other/macos-catalina.mdx +30 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/other/wsl.mdx +132 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/action-hooks.mdx +80 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/commands.mdx +132 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/configuration.mdx +205 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/development-basics.mdx +178 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/go-plugins/guests.mdx +222 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/go-plugins/index.mdx +74 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/guest-capabilities.mdx +101 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/guests.mdx +99 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/host-capabilities.mdx +63 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/hosts.mdx +96 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/index.mdx +26 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/packaging.mdx +107 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/providers.mdx +229 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/provisioners.mdx +65 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/plugins/usage.mdx +71 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/basic_usage.mdx +108 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/configuration.mdx +88 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/custom.mdx +12 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/default.mdx +28 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/basics.mdx +125 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/boxes.mdx +19 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/commands.mdx +112 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/configuration.mdx +122 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/index.mdx +24 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/docker/networking.mdx +289 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/hyperv/boxes.mdx +100 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/hyperv/configuration.mdx +57 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/hyperv/index.mdx +36 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/hyperv/limitations.mdx +34 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/hyperv/usage.mdx +24 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/index.mdx +27 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/installation.mdx +15 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/boxes.mdx +162 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/common-issues.mdx +32 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/configuration.mdx +136 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/index.mdx +25 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/networking.mdx +73 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/virtualbox/usage.mdx +18 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/boxes.mdx +141 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/configuration.mdx +128 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/faq.mdx +45 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/index.mdx +31 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/installation.mdx +64 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/known-issues.mdx +64 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/usage.mdx +38 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/providers/vmware/vagrant-vmware-utility.mdx +213 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/ansible.mdx +145 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/ansible_common.mdx +195 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/ansible_intro.mdx +264 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/ansible_local.mdx +241 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/basic_usage.mdx +365 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/cfengine.mdx +169 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/chef_apply.mdx +100 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/chef_client.mdx +119 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/chef_common.mdx +135 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/chef_solo.mdx +199 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/chef_zero.mdx +88 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/docker.mdx +211 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/file.mdx +140 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/index.mdx +49 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/podman.mdx +187 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/puppet_agent.mdx +98 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/puppet_apply.mdx +235 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/salt.mdx +202 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/provisioning/shell.mdx +247 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/push/ftp.mdx +62 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/push/heroku.mdx +58 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/push/index.mdx +58 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/push/local-exec.mdx +77 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/connect.mdx +53 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/http.mdx +85 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/index.mdx +50 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/provider.mdx +25 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/security.mdx +36 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/share/ssh.mdx +100 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/basic_usage.mdx +127 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/index.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/nfs.mdx +280 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/rsync.mdx +105 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/smb.mdx +128 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/synced-folders/virtualbox.mdx +42 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/triggers/configuration.mdx +199 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/triggers/index.mdx +91 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/triggers/usage.mdx +198 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/index.mdx +84 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/machine_settings.mdx +165 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/ssh_settings.mdx +147 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/tips.mdx +71 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/vagrant_settings.mdx +62 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/vagrant_version.mdx +32 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/version.mdx +59 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/winrm_settings.mdx +78 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/docs/vagrantfile/winssh_settings.mdx +80 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/contributing-guide.mdx +48 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/index.mdx +72 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/vs/cli-tools.mdx +37 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/vs/docker.mdx +32 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/vs/index.mdx +20 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/intro/vs/terraform.mdx +36 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/api.mdx +1613 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/catalog.mdx +47 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/create-version.mdx +37 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/create.mdx +88 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/distributing.mdx +61 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/index.mdx +32 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/lifecycle.mdx +47 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/private.mdx +44 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/release-workflow.mdx +24 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/boxes/using.mdx +21 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/index.mdx +22 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/organizations/authentication-policy.mdx +29 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/organizations/create.mdx +15 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/organizations/index.mdx +14 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/organizations/migrate.mdx +26 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/request-limits.mdx +31 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/support.mdx +41 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/users/authentication.mdx +56 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/users/index.mdx +11 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vagrant-cloud/users/recovery.mdx +13 -0
- data/vendor/cache/vagrant-2092df529ae7/website/content/vmware/index.mdx +7 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/alert-banner.js +13 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/docs-nav-data.json +806 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/intro-nav-data.json +35 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/metadata.js +2 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/subnav.js +17 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/vagrant-cloud-nav-data.json +93 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/version.json +4 -0
- data/vendor/cache/vagrant-2092df529ae7/website/data/vmware-nav-data.json +6 -0
- data/vendor/cache/vagrant-2092df529ae7/website/jsconfig.json +6 -0
- data/vendor/cache/vagrant-2092df529ae7/website/package-lock.json +26493 -0
- data/vendor/cache/vagrant-2092df529ae7/website/package.json +30 -0
- data/vendor/cache/vagrant-2092df529ae7/website/prettier.config.js +3 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/favicon.ico +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/files/press-kit.zip +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/ie-warning.js +31 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/android-chrome-192x192.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/android-chrome-512x512.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/apple-touch-icon.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/favicon-16x16.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/favicon-32x32.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/favicon.ico +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/mstile-150x150.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/favicons/safari-pinned-tab.svg +116 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/logo-hashicorp.svg +5 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/logo-text.svg +5 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/og-image.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/systems/apple.svg +3 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/systems/linux.svg +4 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/systems/windows.svg +3 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/vagrant-trusted-by-logos.png +0 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/vagrant_parity.svg +1 -0
- data/vendor/cache/vagrant-2092df529ae7/website/public/img/vmware.svg +1 -0
- data/vendor/cache/vagrant-2092df529ae7/website/redirects.js +30 -0
- data/vendor/cache/vagrant-2092df529ae7/website/scripts/should-build.sh +18 -0
- data/vendor/cache/vagrant-2092df529ae7/website/scripts/website-build.sh +52 -0
- data/vendor/cache/vagrant-2092df529ae7/website/scripts/website-start.sh +44 -0
- data/vendor/cache/vagrant-2092df529ae7/website/vercel.json +7 -0
- metadata +2562 -738
- data/lib/tamtam-vagrant-reload-config.rb +0 -26
- data/lib/tamtam-vagrant-reload-provisioner.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/.gitignore +0 -47
- data/vendor/cache/vagrant-0ac2a8738841/.travis.yml +0 -7
- data/vendor/cache/vagrant-0ac2a8738841/CHANGELOG.md +0 -1462
- data/vendor/cache/vagrant-0ac2a8738841/CONTRIBUTING.md +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/Gemfile +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/LICENSE +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/README.md +0 -89
- data/vendor/cache/vagrant-0ac2a8738841/Rakefile +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/bin/vagrant +0 -120
- data/vendor/cache/vagrant-0ac2a8738841/config/default.rb +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/contrib/README.md +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/contrib/bash/completion.sh +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/keys/README.md +0 -10
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builder.rb +0 -174
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/box_add.rb +0 -92
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/call.rb +0 -67
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/config_validate.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/confirm.rb +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/destroy_confirm.rb +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/graceful_halt.rb +0 -82
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/handle_box_url.rb +0 -86
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +0 -134
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/mixin_provisioners.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/nfs.rb +0 -128
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/provision.rb +0 -79
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/provisioner_cleanup.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/set_hostname.rb +0 -27
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/ssh_exec.rb +0 -42
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/ssh_run.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/builtin/wait_for_communicator.rb +0 -84
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/general/package.rb +0 -103
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/hook.rb +0 -107
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/runner.rb +0 -69
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action/warden.rb +0 -104
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/action.rb +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/batch_action.rb +0 -113
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/box.rb +0 -97
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/box_collection.rb +0 -393
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/cli.rb +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/loader.rb +0 -222
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1/loader.rb +0 -105
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v1/root.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/dummy_config.rb +0 -13
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/loader.rb +0 -141
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2/root.rb +0 -111
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/v2.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config/version_base.rb +0 -80
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/config.rb +0 -61
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/environment.rb +0 -819
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/errors.rb +0 -627
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/guest.rb +0 -172
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/hosts.rb +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/machine.rb +0 -319
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/machine_state.rb +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/command.rb +0 -169
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/guest.rb +0 -92
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/host.rb +0 -66
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/plugin.rb +0 -229
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1/provider.rb +0 -68
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v1.rb +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/command.rb +0 -237
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/communicator.rb +0 -119
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/components.rb +0 -47
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/config.rb +0 -136
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/guest.rb +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/host.rb +0 -66
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/manager.rb +0 -173
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/plugin.rb +0 -226
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2/provider.rb +0 -69
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin/v2.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/plugin.rb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/registry.rb +0 -78
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/ui.rb +0 -214
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/ansi_escape_code_remover.rb +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/downloader.rb +0 -151
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/file_checksum.rb +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/is_port_open.rb +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/network_ip.rb +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/platform.rb +0 -101
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/retryable.rb +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/safe_exec.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/safe_puts.rb +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/ssh.rb +0 -155
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/stacked_proc_runner.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/subprocess.rb +0 -299
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/template_renderer.rb +0 -83
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/which.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util.rb +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant/version.rb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/lib/vagrant.rb +0 -265
- data/vendor/cache/vagrant-0ac2a8738841/plugins/README.md +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/add.rb +0 -51
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/list.rb +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/remove.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/repackage.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/box/command/root.rb +0 -75
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/destroy/command.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/halt/command.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/help/command.rb +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/init/command.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/package/command.rb +0 -83
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/bundler_check.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/install_gem.rb +0 -106
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/license_plugin.rb +0 -54
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/list_plugins.rb +0 -54
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/plugin_exists_check.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/prune_gems.rb +0 -149
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action/uninstall_plugin.rb +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/action.rb +0 -63
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/base.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/install.rb +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/license.rb +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/list.rb +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/mixin_install_opts.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/root.rb +0 -80
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/uninstall.rb +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/command/update.rb +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/gem_helper.rb +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/plugin.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/plugin/state_file.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/provision/command.rb +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/reload/command.rb +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/resume/command.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh/command.rb +0 -63
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/ssh_config/command.rb +0 -49
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/status/command.rb +0 -44
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/suspend/command.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/command.rb +0 -67
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/plugin.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/commands/up/start_mixins.rb +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/plugins/communicators/ssh/communicator.rb +0 -400
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/cap/change_host_name.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/cap/configure_networks.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/arch/plugin.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/cap/change_host_name.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/cap/configure_networks.rb +0 -72
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/guest.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/coreos/plugin.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/change_host_name.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/configure_networks.rb +0 -52
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/halt.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/mount_nfs_folder.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/cap/shell_expand_guest_path.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/guest.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/darwin/plugin.rb +0 -50
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/cap/change_host_name.rb +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/cap/configure_networks.rb +0 -61
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/guest.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/debian/plugin.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/cap/configure_networks.rb +0 -59
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/cap/network_scripts_dir.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/fedora/plugin.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/change_host_name.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/configure_networks.rb +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/halt.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/cap/mount_nfs_folder.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/guest.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/freebsd/plugin.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/cap/change_host_name.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/cap/configure_networks.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/gentoo/plugin.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/halt.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/mount_nfs.rb +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +0 -65
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/read_ip_address.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/cap/shell_expand_guest_path.rb +0 -29
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/linux/plugin.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/cap/change_host_name.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/omnios/plugin.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/change_host_name.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/configure_networks.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/halt.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/cap/mount_nfs_folder.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/openbsd/plugin.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/pld/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/pld/plugin.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/cap/change_host_name.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/cap/configure_networks.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/redhat/plugin.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/halt.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/config.rb +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/guest.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris/plugin.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/change_host_name.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/configure_networks.rb +0 -32
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/halt.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/config.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/guest.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/solaris11/plugin.rb +0 -44
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/change_host_name.rb +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/configure_networks.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/cap/network_scripts_dir.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/guest.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/suse/plugin.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/change_host_name.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/mount_nfs.rb +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/cap/mount_virtualbox_shared_folder.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/guest.rb +0 -13
- data/vendor/cache/vagrant-0ac2a8738841/plugins/guests/ubuntu/plugin.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/arch/host.rb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/arch/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/bsd/host.rb +0 -178
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/bsd/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/fedora/host.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/fedora/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/freebsd/host.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/freebsd/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/gentoo/host.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/gentoo/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/linux/host.rb +0 -128
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/linux/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/opensuse/host.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/opensuse/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/slackware/host.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/slackware/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/windows/host.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/hosts/windows/plugin.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/ssh.rb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v1/config/vm.rb +0 -187
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/nfs.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/package.rb +0 -13
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/ssh.rb +0 -68
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/ssh_connect.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vagrant.rb +0 -13
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vm.rb +0 -486
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/config/vm_provisioner.rb +0 -55
- data/vendor/cache/vagrant-0ac2a8738841/plugins/kernel_v2/plugin.rb +0 -44
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_guest_additions.rb +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/check_virtualbox.rb +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clean_machine_folder.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_network_interfaces.rb +0 -31
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/clear_shared_folders.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/customize.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/discard_state.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/export.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/forward_ports.rb +0 -89
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/import.rb +0 -54
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/match_mac_address.rb +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/message_will_not_destroy.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/network.rb +0 -424
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/package.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/package_vagrantfile.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +0 -69
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/prune_nfs_exports.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/resume.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/sane_defaults.rb +0 -91
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/set_name.rb +0 -52
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/setup_package_files.rb +0 -51
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/share_folders.rb +0 -128
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action/suspend.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/action.rb +0 -324
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/config.rb +0 -123
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/base.rb +0 -357
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/meta.rb +0 -148
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_0.rb +0 -485
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_1.rb +0 -485
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/driver/version_4_2.rb +0 -499
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/model/forwarded_port.rb +0 -70
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/plugin.rb +0 -42
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/provider.rb +0 -92
- data/vendor/cache/vagrant-0ac2a8738841/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/config.rb +0 -95
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/plugin.rb +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/ansible/provisioner.rb +0 -103
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/config.rb +0 -126
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/plugin.rb +0 -47
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/cfengine/provisioner.rb +0 -135
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/base.rb +0 -116
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/chef_client.rb +0 -66
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/config/chef_solo.rb +0 -94
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/plugin.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/base.rb +0 -113
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/chef_client.rb +0 -127
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/chef/provisioner/chef_solo.rb +0 -205
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/file/config.rb +0 -29
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/file/provisioner.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/config/puppet.rb +0 -93
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/config/puppet_server.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/plugin.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/provisioner/puppet.rb +0 -146
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/puppet/provisioner/puppet_server.rb +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/bootstrap-salt.sh +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/config.rb +0 -105
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/errors.rb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/salt/provisioner.rb +0 -250
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/shell/config.rb +0 -68
- data/vendor/cache/vagrant-0ac2a8738841/plugins/provisioners/shell/provisioner.rb +0 -98
- data/vendor/cache/vagrant-0ac2a8738841/scripts/website_push_docs.sh +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/scripts/website_push_www.sh +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/tasks/acceptance.rake +0 -113
- data/vendor/cache/vagrant-0ac2a8738841/tasks/test.rake +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/templates/commands/init/Vagrantfile.erb +0 -118
- data/vendor/cache/vagrant-0ac2a8738841/templates/commands/ssh_config/config.erb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/arch/network_dhcp.erb +0 -4
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/arch/network_static.erb +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/debian/network_dhcp.erb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/fedora/network_dhcp.erb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/fedora/network_static.erb +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/freebsd/network_dhcp.erb +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/freebsd/network_static.erb +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/gentoo/network_dhcp.erb +0 -4
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/gentoo/network_static.erb +0 -4
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/redhat/network_dhcp.erb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/redhat/network_static.erb +0 -8
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/suse/network_dhcp.erb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/templates/guests/suse/network_static.erb +0 -10
- data/vendor/cache/vagrant-0ac2a8738841/templates/locales/en.yml +0 -1249
- data/vendor/cache/vagrant-0ac2a8738841/templates/nfs/exports.erb +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/templates/nfs/exports_freebsd.erb +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/templates/provisioners/chef_client/client.erb +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/templates/provisioners/chef_solo/solo.erb +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb +0 -48
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/box_test.rb +0 -99
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/destroy_test.rb +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/halt_test.rb +0 -72
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/init_test.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/networking/host_only_test.rb +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/networking/port_forward_test.rb +0 -125
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/package_test.rb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/basic_test.rb +0 -61
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/chef_solo_test.rb +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/provisioning/shell_test.rb +0 -53
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/resume_test.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/shared_folders_test.rb +0 -84
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_basic/README.md +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_basic/cookbooks/basic/recipes/default.rb +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_json/README.md +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/chef_solo_json/cookbooks/basic/recipes/default.rb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/provisioner_multi/README.md +0 -3
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/skeletons/provisioner_multi/cookbooks/basic/recipes/default.rb +0 -5
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/ssh_test.rb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/config.rb +0 -42
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/isolated_environment.rb +0 -118
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/have_color.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/match_output.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/matchers/succeed.rb +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/network_tests.rb +0 -29
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/output.rb +0 -95
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/shared/base_context.rb +0 -72
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/shared/command_examples.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/support/virtualbox.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/suspend_test.rb +0 -56
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/up_basic_test.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/up_with_box_url.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/vagrant_test.rb +0 -47
- data/vendor/cache/vagrant-0ac2a8738841/test/acceptance/version_test.rb +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/test/support/isolated_environment.rb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/test/support/tempdir.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/base.rb +0 -27
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/support/dummy_provider.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/support/isolated_environment.rb +0 -179
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/support/shared/base_context.rb +0 -104
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builder_test.rb +0 -242
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/call_test.rb +0 -145
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/confirm_test.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/env_set_test.rb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/graceful_halt_test.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/lock_test.rb +0 -98
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/builtin/ssh_exec_test.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/hook_test.rb +0 -120
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/runner_test.rb +0 -71
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/action/warden_test.rb +0 -92
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/batch_action_test.rb +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/box_collection_test.rb +0 -237
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/box_test.rb +0 -122
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/cli_test.rb +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/loader_test.rb +0 -184
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/dummy_config_test.rb +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/loader_test.rb +0 -145
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v1/root_test.rb +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/dummy_config_test.rb +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/loader_test.rb +0 -151
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/root_test.rb +0 -115
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config/v2/util_test.rb +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/config_test.rb +0 -66
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/environment_test.rb +0 -746
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/errors_test.rb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/guest_test.rb +0 -179
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/hosts_test.rb +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/machine_state_test.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/machine_test.rb +0 -384
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/command_test.rb +0 -143
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/communicator_test.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/config_test.rb +0 -50
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/manager_test.rb +0 -114
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/plugin_test.rb +0 -267
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v1/provider_test.rb +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/command_test.rb +0 -238
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/communicator_test.rb +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/components_test.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/config_test.rb +0 -60
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/manager_test.rb +0 -174
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/plugin_test.rb +0 -305
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/plugin/v2/provider_test.rb +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/registry_test.rb +0 -128
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/downloader_test.rb +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/file_checksum_test.rb +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/is_port_open_test.rb +0 -53
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/line_endings_helper_test.rb +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/network_ip_test.rb +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/retryable_test.rb +0 -106
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/safe_chdir_test.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/scoped_hash_override_test.rb +0 -48
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/ssh_test.rb +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/string_block_editor_test.rb +0 -106
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant/util/which_test.rb +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/test/unit/vagrant_test.rb +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/vagrant.gemspec +0 -67
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/.buildpacks +0 -2
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/Gemfile +0 -13
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/Procfile +0 -1
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/README.md +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/config.rb +0 -78
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/config.ru +0 -44
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/helpers/sidebar_helpers.rb +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/lib/redirect_to_latest.rb +0 -25
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/lib/redirect_v1_docs.rb +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/404.html.erb +0 -7
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_1.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_2.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/bullet_3.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/customers.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/customers_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_hashi_logo.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/footer_vagrant_logo.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/get_started_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/icon_caution.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_docs.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_docs_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/logo_vagrant.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/open_close.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/search_icon.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/sidebar_background_docs.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/sidebar_background_inner.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/steps_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/images/vagrant_header_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/backstretch.js +0 -4
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/bootstrap.min.js +0 -7
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/fittext.js +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/grid-overlay.js +0 -161
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/jquery.js +0 -2
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/less-1.3.0.min.js +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/modernizr.js +0 -1384
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/javascripts/vagrantup.js +0 -15
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/layouts/layout.erb +0 -266
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_base.less +0 -317
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_components.less +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_footer.less +0 -101
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_media-queries.less +0 -452
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_mixins.less +0 -174
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_nav.less +0 -71
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_pages.less +0 -276
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_sidebar.less +0 -136
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_type.less +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/_variables.less +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/bootstrap.css +0 -5946
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/stylesheets/vagrantup.less +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/boxes/format.html.md +0 -32
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/boxes.html.md +0 -78
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/box.html.md +0 -62
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/destroy.html.md +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/halt.html.md +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/index.html.md +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/init.html.md +0 -18
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/package.html.md +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/plugin.html.md +0 -56
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/provision.html.md +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/reload.html.md +0 -27
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/resume.html.md +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/ssh.html.md +0 -24
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/ssh_config.html.md +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/status.html.md +0 -14
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/suspend.html.md +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/cli/up.html.md +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/debugging.html.md +0 -42
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/boxes.html.md +0 -56
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/index.html.md +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/networking.html.md +0 -45
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/project_setup.html.md +0 -38
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/providers.html.md +0 -37
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/provisioning.html.md +0 -75
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/rebuild.html.md +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/synced_folders.html.md +0 -42
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/teardown.html.md +0 -41
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/getting-started/up.html.md +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/index.html.md +0 -10
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/backwards-compatibility.html.md +0 -35
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/index.html.md +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/uninstallation.html.md +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/upgrading-from-1-0.html.md +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/installation/upgrading.html.md +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/multi-machine/index.html.md +0 -105
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/basic_usage.html.md +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/forwarded_ports.html.md +0 -57
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/index.html.md +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/private_network.html.md +0 -48
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/networking/public_network.html.md +0 -53
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/commands.html.md +0 -116
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/configuration.html.md +0 -166
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/development-basics.html.md +0 -139
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/guest-capabilities.html.md +0 -100
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/guests.html.md +0 -99
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/hosts.html.md +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/index.html.md +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/packaging.html.md +0 -102
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/providers.html.md +0 -234
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/provisioners.html.md +0 -64
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/plugins/usage.html.md +0 -58
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/basic_usage.html.md +0 -67
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/configuration.html.md +0 -89
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/custom.html.md +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/default.html.md +0 -22
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/index.html.md +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/providers/installation.html.md +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/ansible.html.md +0 -144
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/basic_usage.html.md +0 -67
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/chef_client.html.md +0 -109
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/chef_solo.html.md +0 -156
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/index.html.md +0 -28
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/puppet_agent.html.md +0 -70
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/puppet_apply.html.md +0 -114
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/provisioning/shell.html.md +0 -128
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/basic_usage.html.md +0 -53
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/index.html.md +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/synced-folders/nfs.html.md +0 -53
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/index.html.md +0 -75
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/machine_settings.html.md +0 -84
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/ssh_settings.html.md +0 -61
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/vagrant_settings.html.md +0 -19
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vagrantfile/version.html.md +0 -64
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/boxes.html.md +0 -71
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/configuration.html.md +0 -63
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/index.html.md +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/virtualbox/usage.html.md +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/boxes.html.md +0 -107
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/configuration.html.md +0 -91
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/index.html.md +0 -30
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/installation.html.md +0 -40
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/known-issues.html.md +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/vmware/usage.html.md +0 -27
- data/vendor/cache/vagrant-0ac2a8738841/website/docs/source/v2/why-vagrant/index.html.md +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/website/www/.buildpacks +0 -2
- data/vendor/cache/vagrant-0ac2a8738841/website/www/Gemfile +0 -16
- data/vendor/cache/vagrant-0ac2a8738841/website/www/Procfile +0 -1
- data/vendor/cache/vagrant-0ac2a8738841/website/www/README.md +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/website/www/config.rb +0 -90
- data/vendor/cache/vagrant-0ac2a8738841/website/www/config.ru +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/website/www/helpers/sidebar_helpers.rb +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/website/www/lib/legacy_redirect.rb +0 -32
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/404.html.erb +0 -11
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_about.erb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_blog.erb +0 -12
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/_sidebar_support.html.erb +0 -6
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/about.html.markdown +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/blog/2013-09-19-introducing-the-vagrant-blog.html.markdown +0 -26
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/blog-archives.html.erb +0 -20
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/blog.html.erb +0 -33
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/blog_feed.xml.builder +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_1.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_2.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/bullet_3.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/customers.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/customers_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_hashi_logo.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/footer_vagrant_logo.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/get_started_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/icon_caution.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_docs.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_docs_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_small.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/logo_vagrant.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/open_close.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/search_icon.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sidebar_background_docs.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sidebar_background_inner.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/fastly.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/kiip.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/softlayer.jpg +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/sponsors/typekit.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/steps_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/vagrant_header_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/images/vagrant_vmware_background.png +0 -0
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/index.html.erb +0 -109
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/backstretch.js +0 -4
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/bootstrap.min.js +0 -7
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/fittext.js +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/grid-overlay.js +0 -161
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/jquery.js +0 -2
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/less-1.3.0.min.js +0 -9
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/modernizr.js +0 -1384
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/javascripts/vagrantup.js +0 -58
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/blog_post.erb +0 -46
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/inner.erb +0 -34
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/layouts/layout.erb +0 -110
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/sponsors.html.erb +0 -23
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_base.less +0 -326
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_components.less +0 -74
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_footer.less +0 -101
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_media-queries.less +0 -549
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_mixins.less +0 -175
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_modules.less +0 -43
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_nav.less +0 -75
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_pages.less +0 -467
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_sidebar.less +0 -137
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_type.less +0 -36
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/_variables.less +0 -39
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/bootstrap.css +0 -5946
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/stylesheets/vagrantup.less +0 -17
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/support.html.erb +0 -63
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/eula.html.md +0 -21
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/index.html.erb +0 -185
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/privacy-policy.html.md +0 -71
- data/vendor/cache/vagrant-0ac2a8738841/website/www/source/vmware/terms-of-service.html.md +0 -50
- /data/{vendor/cache/vagrant-0ac2a8738841/.bundlecache → spec/spec_helper.rb} +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841/website/docs/source/index.html.erb → vagrant-2092df529ae7/.bundlecache} +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/.yardopts +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/contrib/emacs/vagrant.el +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/contrib/vim/vagrantfile.vim +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/keys/vagrant +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/keys/vagrant.pub +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/action/builtin/env_set.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/action/builtin/lock.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/config/v1/dummy_config.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/config/v1.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/config/v2/util.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v1/communicator.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v1/config.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v1/errors.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v1/manager.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v1/provisioner.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v2/errors.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/plugin/v2/provisioner.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/busy.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/counter.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/file_mode.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/hash_with_indifferent_access.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/line_ending_helpers.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/safe_chdir.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/lib/vagrant/util/string_block_editor.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/box/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/destroy/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/halt/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/help/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/init/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/package/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/provision/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/reload/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/resume/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/ssh/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/ssh_config/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/status/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/commands/suspend/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/communicators/ssh/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/arch/guest.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/gentoo/guest.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/openbsd/guest.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/pld/cap/network_scripts_dir.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/redhat/cap/network_scripts_dir.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/solaris/cap/change_host_name.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/guests/solaris/cap/configure_networks.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/kernel_v1/config/nfs.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/kernel_v1/config/package.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/kernel_v1/config/vagrant.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/kernel_v1/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/kernel_v2/config/vm_subvm.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/boot.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/check_accessible.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/check_created.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/check_running.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/created.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/destroy.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/forced_halt.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/is_paused.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/is_running.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/is_saved.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/message_already_running.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/message_not_created.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/message_not_running.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/provisioners/file/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/provisioners/salt/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/plugins/provisioners/shell/plugin.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/tasks/bundler.rake +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/config/messages.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/config/validation_failed.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841/templates/guests/debian → vagrant-2092df529ae7/templates/guests/alpine}/network_static.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/guests/coreos/etcd.service.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/guests/openbsd/network_dhcp.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/guests/openbsd/network_static.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/nfs/exports_linux.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/package_Vagrantfile.erb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/templates/rgloader.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/test/config/acceptance_boxes.yml +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/test/unit/vagrant/plugin/v1/host_test.rb +0 -0
- /data/vendor/cache/{vagrant-0ac2a8738841 → vagrant-2092df529ae7}/test/unit/vagrant/plugin/v2/host_test.rb +0 -0
@@ -0,0 +1,3091 @@
|
|
1
|
+
en:
|
2
|
+
vagrant:
|
3
|
+
alert: |-
|
4
|
+
[%{date}]:
|
5
|
+
%{message}
|
6
|
+
|
7
|
+
- %{url}
|
8
|
+
boot_completed: |-
|
9
|
+
Machine booted and ready!
|
10
|
+
boot_waiting: |-
|
11
|
+
Waiting for machine to boot. This may take a few minutes...
|
12
|
+
box_auto_adding: |-
|
13
|
+
Box '%{name}' could not be found. Attempting to find and install...
|
14
|
+
box_add_choose_provider: |-
|
15
|
+
This box can work with multiple providers! The providers that it
|
16
|
+
can work with are listed below. Please review the list and choose
|
17
|
+
the provider you will be working with.
|
18
|
+
|
19
|
+
%{options}
|
20
|
+
|
21
|
+
Enter your choice:
|
22
|
+
box_add_choose_provider_again: |-
|
23
|
+
Invalid choice. Try again:
|
24
|
+
box_add_with_version: |-
|
25
|
+
Adding box '%{name}' (v%{version}) for provider: %{providers}
|
26
|
+
box_added: |-
|
27
|
+
Successfully added box '%{name}' (v%{version}) for '%{provider}'!
|
28
|
+
box_adding_direct: |-
|
29
|
+
Box file was not detected as metadata. Adding it directly...
|
30
|
+
box_add_url_warn: |-
|
31
|
+
It looks like you attempted to add a box with a URL for the name...
|
32
|
+
Instead, use box_url instead of box for box URLs.
|
33
|
+
box_downloading: |-
|
34
|
+
Downloading: %{url}
|
35
|
+
box_download_error: |-
|
36
|
+
Error downloading: %{message}
|
37
|
+
box_unpacking: |-
|
38
|
+
Unpacking necessary files from: %{url}
|
39
|
+
box_expanding_url: |-
|
40
|
+
URL: %{url}
|
41
|
+
box_loading_metadata: |-
|
42
|
+
Loading metadata for box '%{name}'
|
43
|
+
box_malformed_continue_on_update: |-
|
44
|
+
Could not determine box updates because box metadata was malformed.
|
45
|
+
Vagrant will continue on...
|
46
|
+
box_outdated: |-
|
47
|
+
* '%{name}' for '%{provider}' is outdated! Current: %{current}. Latest: %{latest}
|
48
|
+
box_outdated_checking_with_refresh: |-
|
49
|
+
Checking if box '%{name}' version '%{version}' is up to date...
|
50
|
+
box_outdated_local: |-
|
51
|
+
A newer version of the box '%{name}' is available and already
|
52
|
+
installed, but your Vagrant machine is running against
|
53
|
+
version '%{old}'. To update to version '%{new}',
|
54
|
+
destroy and recreate your machine.
|
55
|
+
box_outdated_metadata_download_error: |-
|
56
|
+
There was a problem while downloading the metadata for your box
|
57
|
+
to check for updates. This is not an error, since it is usually due
|
58
|
+
to temporary network problems. This is just a warning. The problem
|
59
|
+
encountered was:
|
60
|
+
|
61
|
+
%{message}
|
62
|
+
|
63
|
+
If you want to check for box updates, verify your network connection
|
64
|
+
is valid and try again.
|
65
|
+
box_outdated_metadata_error_single: |-
|
66
|
+
Error loading box metadata while attempting to check for
|
67
|
+
updates: %{message}
|
68
|
+
box_outdated_single: |-
|
69
|
+
A newer version of the box '%{name}' for provider '%{provider}' is
|
70
|
+
available! You currently have version '%{current}'. The latest is version
|
71
|
+
'%{latest}'. Run `vagrant box update` to update.
|
72
|
+
box_outdated_metadata_error: |-
|
73
|
+
* '%{name}' for '%{provider}': Error loading metadata: %{message}
|
74
|
+
box_outdated_no_metadata: |-
|
75
|
+
* '%{name}' for '%{provider}' wasn't added from a catalog, no version information
|
76
|
+
box_updating: |-
|
77
|
+
Updating '%{name}' with provider '%{provider}' from version
|
78
|
+
'%{old}' to '%{new}'...
|
79
|
+
box_update_checking: |-
|
80
|
+
Checking for updates to '%{name}'
|
81
|
+
box_up_to_date: |-
|
82
|
+
* '%{name}' for '%{provider}' (v%{version}) is up to date
|
83
|
+
box_up_to_date_single: |-
|
84
|
+
Box '%{name}' (v%{version}) is running the latest version.
|
85
|
+
box_version_malformed:
|
86
|
+
Invalid version '%{version}' for '%{box_name}', ignoring...
|
87
|
+
cfengine_bootstrapping: |-
|
88
|
+
Bootstrapping CFEngine with policy server: %{policy_server}...
|
89
|
+
cfengine_bootstrapping_policy_hub: |-
|
90
|
+
Performing additional bootstrap for policy hubs...
|
91
|
+
cfengine_cant_detect: |-
|
92
|
+
Vagrant doesn't support detecting whether CFEngine is installed
|
93
|
+
for the guest OS running in the machine. Vagrant will assume it is
|
94
|
+
installed and attempt to continue.
|
95
|
+
cfengine_detected_ip: |-
|
96
|
+
Detected policy server IP address: %{address}...
|
97
|
+
cfengine_installing: |-
|
98
|
+
Installing CFEngine onto machine...
|
99
|
+
cfengine_installing_files_path: |-
|
100
|
+
Copying the 'files_path' files...
|
101
|
+
cfengine_no_bootstrap: |-
|
102
|
+
CFEngine doesn't require bootstrap. Not bootstrapping.
|
103
|
+
cfengine_single_run: |-
|
104
|
+
CFEngine running in "single run" mode. Will execute one file.
|
105
|
+
cfengine_single_run_execute: |-
|
106
|
+
Executing run file for CFEngine...
|
107
|
+
chef_cant_detect: |-
|
108
|
+
Vagrant does not support detecting whether Chef is installed
|
109
|
+
for the guest OS running in the machine. Vagrant will assume it is
|
110
|
+
installed and attempt to continue.
|
111
|
+
chef_already_installed: |-
|
112
|
+
Detected Chef (%{version}) is already installed
|
113
|
+
chef_installing: |-
|
114
|
+
Installing Chef (%{version})...
|
115
|
+
chef_client_cleanup_failed: |-
|
116
|
+
Cleaning up the '%{deletable}' for Chef failed. The stdout and
|
117
|
+
stderr are shown below. Vagrant will continue destroying the machine,
|
118
|
+
so please clean up these resources manually.
|
119
|
+
|
120
|
+
stdout: %{stdout}
|
121
|
+
|
122
|
+
stderr: %{stderr}
|
123
|
+
chef_config_knife_not_found: |-
|
124
|
+
The `knife` application was not found! This is required by Vagrant
|
125
|
+
to automatically delete Chef nodes and clients.
|
126
|
+
chef_run_list_empty: |-
|
127
|
+
Warning: Chef run list is empty. This may not be what you want.
|
128
|
+
cli_interrupt: |-
|
129
|
+
Exiting due to interrupt.
|
130
|
+
cloud_init_waiting: Waiting for cloud init to finish running
|
131
|
+
container_pulling_single: |-
|
132
|
+
-- Image: %{name}
|
133
|
+
container_building_single: |-
|
134
|
+
-- Path: %{path}
|
135
|
+
container_running: |-
|
136
|
+
-- Container: %{name}
|
137
|
+
container_restarting_container_args: |-
|
138
|
+
-- Detected changes to container '%{name}' args, restarting...
|
139
|
+
container_restarting_container_image: |-
|
140
|
+
-- Detected newer image for container '%{name}', restarting...
|
141
|
+
docker_auto_start_not_available: |-
|
142
|
+
Unable to configure automatic restart of Docker containers on
|
143
|
+
the guest machine
|
144
|
+
docker_cant_detect: |-
|
145
|
+
Vagrant doesn't support detecting whether Docker is installed
|
146
|
+
for the guest OS running in the machine. Vagrant will assume it is
|
147
|
+
installed and attempt to continue.
|
148
|
+
docker_configure_autostart: |-
|
149
|
+
Configuring Docker to autostart containers...
|
150
|
+
docker_installing: |-
|
151
|
+
Installing Docker onto machine...
|
152
|
+
docker_pulling_images:
|
153
|
+
Pulling Docker images...
|
154
|
+
docker_pulling_single: |-
|
155
|
+
-- Image: %{name}
|
156
|
+
docker_building_single: |-
|
157
|
+
-- Path: %{path}
|
158
|
+
docker_building_images:
|
159
|
+
Building Docker images...
|
160
|
+
docker_running: |-
|
161
|
+
-- Container: %{name}
|
162
|
+
docker_restarting_container_args: |-
|
163
|
+
-- Detected changes to container '%{name}' args, restarting...
|
164
|
+
docker_restarting_container_image: |-
|
165
|
+
-- Detected newer image for container '%{name}', restarting...
|
166
|
+
docker_starting_containers: |-
|
167
|
+
Starting Docker containers...
|
168
|
+
hyperv_enable_enhanced_session: |-
|
169
|
+
Setting VM Enhanced session transport type to HvSocket
|
170
|
+
hyperv_disable_enhanced_session: |-
|
171
|
+
Setting VM Enhanced session transport type to disabled/default (VMBus)
|
172
|
+
inserted_key: |-
|
173
|
+
Key inserted! Disconnecting and reconnecting using new SSH key...
|
174
|
+
inserting_insecure_detected: |-
|
175
|
+
Vagrant insecure key detected. Vagrant will automatically replace
|
176
|
+
this with a newly generated keypair for better security.
|
177
|
+
inserting_random_key: |-
|
178
|
+
Inserting generated public key within guest...
|
179
|
+
inserting_remove_key: |-
|
180
|
+
Removing insecure key from the guest if it's present...
|
181
|
+
installing_provider: |-
|
182
|
+
Provider '%{provider}' not found. We'll automatically install it now...
|
183
|
+
installing_provider_detail: |-
|
184
|
+
The installation process will start below. Human interaction may be
|
185
|
+
required at some points. If you're uncomfortable with automatically
|
186
|
+
installing this provider, you can safely Ctrl-C this process and install
|
187
|
+
it manually.
|
188
|
+
list_commands: |-
|
189
|
+
Below is a listing of all available Vagrant commands and a brief
|
190
|
+
description of what they do.
|
191
|
+
|
192
|
+
%{list}
|
193
|
+
moved_cwd: |-
|
194
|
+
This machine used to live in %{old_wd} but it's now at %{current_wd}.
|
195
|
+
Depending on your current provider you may need to change the name of
|
196
|
+
the machine to run it as a different machine.
|
197
|
+
guest_deb_installing_smb: |-
|
198
|
+
Installing SMB "mount.cifs"...
|
199
|
+
global_status_footer: |-
|
200
|
+
The above shows information about all known Vagrant environments
|
201
|
+
on this machine. This data is cached and may not be completely
|
202
|
+
up-to-date (use "vagrant global-status --prune" to prune invalid
|
203
|
+
entries). To interact with any of the machines, you can go to that
|
204
|
+
directory and run Vagrant, or you can use the ID directly with
|
205
|
+
Vagrant commands from any directory. For example:
|
206
|
+
"vagrant destroy 1a2b3c4d"
|
207
|
+
global_status_none: |-
|
208
|
+
There are no active Vagrant environments on this computer! Or,
|
209
|
+
you haven't destroyed and recreated Vagrant environments that were
|
210
|
+
started with an older version of Vagrant.
|
211
|
+
plugin_needs_reinstall: |-
|
212
|
+
The following plugins were installed with a version of Vagrant
|
213
|
+
that had different versions of underlying components. Because
|
214
|
+
these component versions were changed (which rarely happens),
|
215
|
+
the plugins must be uninstalled and reinstalled.
|
216
|
+
|
217
|
+
To ensure that all the dependencies are properly updated as well
|
218
|
+
it is _highly recommended_ to do a `vagrant plugin uninstall`
|
219
|
+
prior to reinstalling.
|
220
|
+
|
221
|
+
This message will not go away until all the plugins below are
|
222
|
+
either uninstalled or uninstalled then reinstalled.
|
223
|
+
|
224
|
+
The plugins below will not be loaded until they're uninstalled
|
225
|
+
and reinstalled:
|
226
|
+
|
227
|
+
%{names}
|
228
|
+
post_up_message: |-
|
229
|
+
Machine '%{name}' has a post `vagrant up` message. This is a message
|
230
|
+
from the creator of the Vagrantfile, and not from Vagrant itself:
|
231
|
+
|
232
|
+
%{message}
|
233
|
+
provisioner_cleanup: |-
|
234
|
+
Running cleanup tasks for '%{name}' provisioner...
|
235
|
+
rsync_auto_initial: |-
|
236
|
+
Doing an initial rsync...
|
237
|
+
rsync_auto_new_folders: |-
|
238
|
+
New synced folders were added to the Vagrantfile since running
|
239
|
+
`vagrant reload`. If these new synced folders are backed by rsync,
|
240
|
+
they won't be automatically synced until a `vagrant reload` is run.
|
241
|
+
rsync_auto_no_paths: |-
|
242
|
+
There are no paths to watch! This is either because you have no
|
243
|
+
synced folders using rsync, or any rsync synced folders you have
|
244
|
+
have specified `rsync_auto` to be false.
|
245
|
+
rsync_auto_path: |-
|
246
|
+
Watching: %{path}
|
247
|
+
rsync_auto_remove_folder: |-
|
248
|
+
Not syncing %{folder} as it is not part of the current working directory.
|
249
|
+
rsync_auto_rsync_error: |-
|
250
|
+
There was an error while executing rsync. The error is shown below.
|
251
|
+
This may not be critical since rsync sometimes fails, but if this message
|
252
|
+
repeats, then please fix the issue:
|
253
|
+
|
254
|
+
%{message}
|
255
|
+
rsync_auto_post_command_error: |-
|
256
|
+
There was an error while executing the rsync post command. This error is
|
257
|
+
shown below. This may not be critical but if this message repeats please
|
258
|
+
fix the issue:
|
259
|
+
|
260
|
+
%{message}
|
261
|
+
rsync_communicator_not_ready: |-
|
262
|
+
The machine is reporting that it is not ready for rsync to
|
263
|
+
communicate with it. Verify that this machine is properly running.
|
264
|
+
rsync_communicator_not_ready_callback: |-
|
265
|
+
Failed to connect to remote machine. This is usually caused by the
|
266
|
+
machine rebooting or being halted. Please make sure the machine is
|
267
|
+
running, and modify a file to try again.
|
268
|
+
rsync_folder: |-
|
269
|
+
Rsyncing folder: %{hostpath} => %{guestpath}
|
270
|
+
rsync_folder_excludes: " - Exclude: %{excludes}"
|
271
|
+
rsync_installing: "Installing rsync to the VM..."
|
272
|
+
rsync_proxy_machine: |-
|
273
|
+
The provider ('%{provider}') for the machine '%{name}' is
|
274
|
+
using a proxy machine. RSync will sync to this proxy
|
275
|
+
instead of directly to the environment itself.
|
276
|
+
rsync_showing_output: "Showing rsync output..."
|
277
|
+
rsync_ssh_password: |-
|
278
|
+
The machine you're rsyncing folders to is configured to use
|
279
|
+
password-based authentication. Vagrant can't script rsync to automatically
|
280
|
+
enter this password, so you'll likely be prompted for a password
|
281
|
+
shortly.
|
282
|
+
|
283
|
+
If you don't want to have to do this, please enable automatic
|
284
|
+
key insertion using `config.ssh.insert_key`.
|
285
|
+
ssh_exec_password: |-
|
286
|
+
The machine you're attempting to SSH into is configured to use
|
287
|
+
password-based authentication. Vagrant can't script entering the
|
288
|
+
password for you. If you're prompted for a password, please enter
|
289
|
+
the same password you have configured in the Vagrantfile.
|
290
|
+
stdin_cant_hide_input: |-
|
291
|
+
Error! Your console doesn't support hiding input. We'll ask for
|
292
|
+
input again below, but we WILL NOT be able to hide input. If this
|
293
|
+
is a problem for you, ctrl-C to exit and fix your stdin.
|
294
|
+
up_no_machines: |-
|
295
|
+
No machines to bring up. This is usually because all machines are
|
296
|
+
set to `autostart: false`, which means you have to explicitly specify
|
297
|
+
the name of the machine to bring up.
|
298
|
+
upgrading_home_path_v1_5: |-
|
299
|
+
Vagrant is upgrading some internal state for the latest version.
|
300
|
+
Please do not quit Vagrant at this time. While upgrading, Vagrant
|
301
|
+
will need to copy all your boxes, so it will use a considerable
|
302
|
+
amount of disk space. After it is done upgrading, the temporary disk
|
303
|
+
space will be freed.
|
304
|
+
|
305
|
+
Press ctrl-c now to exit if you want to remove some boxes or free
|
306
|
+
up some disk space.
|
307
|
+
|
308
|
+
Press the Enter or Return key to continue.
|
309
|
+
|
310
|
+
trigger:
|
311
|
+
on_error_continue: |-
|
312
|
+
Trigger configured to continue on error...
|
313
|
+
abort: |-
|
314
|
+
Vagrant has been configured to abort. Terminating now...
|
315
|
+
abort_threaded: |-
|
316
|
+
Vagrant has been configured to abort. Vagrant will terminate
|
317
|
+
after remaining running actions have completed...
|
318
|
+
start: |-
|
319
|
+
Running %{type} triggers %{stage} %{name} ...
|
320
|
+
fire_with_name: |-
|
321
|
+
Running trigger: %{name}...
|
322
|
+
fire: |-
|
323
|
+
Running trigger...
|
324
|
+
run:
|
325
|
+
inline: |-
|
326
|
+
Running local: Inline script
|
327
|
+
%{command}
|
328
|
+
script: |-
|
329
|
+
Running local script: %{path}
|
330
|
+
|
331
|
+
|
332
|
+
version_current: |-
|
333
|
+
Installed Version: %{version}
|
334
|
+
version_latest: |-
|
335
|
+
Latest Version: %{version}
|
336
|
+
version_latest_installed: |-
|
337
|
+
You're running an up-to-date version of Vagrant!
|
338
|
+
version_no_checkpoint: |-
|
339
|
+
Vagrant was unable to check for the latest version of Vagrant.
|
340
|
+
Please check manually at https://www.vagrantup.com
|
341
|
+
version_upgrade_available: |-
|
342
|
+
A new version of Vagrant is available: %{latest_version} (installed version: %{installed_version})!
|
343
|
+
To upgrade visit: https://www.vagrantup.com/downloads.html
|
344
|
+
|
345
|
+
version_upgrade_howto: |-
|
346
|
+
To upgrade to the latest version, visit the downloads page and
|
347
|
+
download and install the latest version of Vagrant from the URL
|
348
|
+
below:
|
349
|
+
|
350
|
+
https://www.vagrantup.com/downloads.html
|
351
|
+
|
352
|
+
If you're curious what changed in the latest release, view the
|
353
|
+
CHANGELOG below:
|
354
|
+
|
355
|
+
https://github.com/hashicorp/vagrant/blob/v%{version}/CHANGELOG.md
|
356
|
+
|
357
|
+
cfengine_config:
|
358
|
+
classes_array: |-
|
359
|
+
The 'classes' configuration must be an array.
|
360
|
+
files_path_not_directory: |-
|
361
|
+
The 'files_path' must point to a valid directory.
|
362
|
+
invalid_mode: |-
|
363
|
+
The mode must be 'bootstrap' or 'single_run'
|
364
|
+
policy_server_address: |-
|
365
|
+
The policy server address must be set for bootstrapping.
|
366
|
+
run_file_not_found: |-
|
367
|
+
The 'run_file' specified could not be found.
|
368
|
+
|
369
|
+
virtualbox:
|
370
|
+
checking_guest_additions: |-
|
371
|
+
Checking for guest additions in VM...
|
372
|
+
network_adapter: |-
|
373
|
+
Adapter %{adapter}: %{type}%{extra}
|
374
|
+
config:
|
375
|
+
id_in_pre_import: |-
|
376
|
+
The ':id' parameter is not available in "pre-import" customizations.
|
377
|
+
intnet_on_bad_type: |-
|
378
|
+
VirtualBox internal networks can only be enabled on "private_network"
|
379
|
+
invalid_event: |-
|
380
|
+
%{event} is not a valid event for customization. Valid events
|
381
|
+
are: %{valid_events}
|
382
|
+
warning:
|
383
|
+
shared_folder_symlink_create: |-
|
384
|
+
Vagrant is currently configured to create VirtualBox synced folders with
|
385
|
+
the `SharedFoldersEnableSymlinksCreate` option enabled. If the Vagrant
|
386
|
+
guest is not trusted, you may want to disable this option. For more
|
387
|
+
information on this option, please refer to the VirtualBox manual:
|
388
|
+
|
389
|
+
https://www.virtualbox.org/manual/ch04.html#sharedfolders
|
390
|
+
|
391
|
+
This option can be disabled globally with an environment variable:
|
392
|
+
|
393
|
+
VAGRANT_DISABLE_VBOXSYMLINKCREATE=1
|
394
|
+
|
395
|
+
or on a per folder basis within the Vagrantfile:
|
396
|
+
|
397
|
+
config.vm.synced_folder '/host/path', '/guest/path', SharedFoldersEnableSymlinksCreate: false
|
398
|
+
general:
|
399
|
+
batch_notify_error: |-
|
400
|
+
An error occurred. The error will be shown after all tasks complete.
|
401
|
+
batch_unexpected_error: |-
|
402
|
+
An unexpected error occurred when executing the action on the
|
403
|
+
'%{machine}' machine. Please report this as a bug:
|
404
|
+
|
405
|
+
%{message}
|
406
|
+
batch_vagrant_error: |-
|
407
|
+
An error occurred while executing the action on the '%{machine}'
|
408
|
+
machine. Please handle this error then try again:
|
409
|
+
|
410
|
+
%{message}
|
411
|
+
config_upgrade_messages: |-
|
412
|
+
There were warnings and/or errors while loading your Vagrantfile
|
413
|
+
for the machine '%{name}'.
|
414
|
+
|
415
|
+
Your Vagrantfile was written for an earlier version of Vagrant,
|
416
|
+
and while Vagrant does the best it can to remain backwards
|
417
|
+
compatible, there are some cases where things have changed
|
418
|
+
significantly enough to warrant a message. These messages are
|
419
|
+
shown below.
|
420
|
+
|
421
|
+
%{output}
|
422
|
+
experimental:
|
423
|
+
all: |-
|
424
|
+
You have enabled the experimental flag with all features enabled.
|
425
|
+
Please use with caution, as some of the features may not be fully
|
426
|
+
functional yet.
|
427
|
+
features: |-
|
428
|
+
You have requested to enabled the experimental flag with the following features:
|
429
|
+
|
430
|
+
Features: %{features}
|
431
|
+
|
432
|
+
Please use with caution, as some of the features may not be fully
|
433
|
+
functional yet.
|
434
|
+
not_in_installer: |-
|
435
|
+
You appear to be running Vagrant outside of the official installers.
|
436
|
+
Note that the installers are what ensure that Vagrant has all required
|
437
|
+
dependencies, and Vagrant assumes that these dependencies exist. By
|
438
|
+
running outside of the installer environment, Vagrant may not function
|
439
|
+
properly. To remove this warning, install Vagrant using one of the
|
440
|
+
official packages from vagrantup.com.
|
441
|
+
upgraded_v1_dotfile: |-
|
442
|
+
A Vagrant 1.0.x state file was found for this environment. Vagrant has
|
443
|
+
gone ahead and auto-upgraded this to the latest format. Everything
|
444
|
+
should continue working as normal. Beware, however, that older versions
|
445
|
+
of Vagrant may no longer be used with this environment.
|
446
|
+
|
447
|
+
However, in case anything went wrong, the old dotfile was backed up
|
448
|
+
to the location below. If everything is okay, it is safe to remove
|
449
|
+
this backup.
|
450
|
+
|
451
|
+
Backup: %{backup_path}
|
452
|
+
|
453
|
+
plugins:
|
454
|
+
local:
|
455
|
+
uninstalled_plugins: |-
|
456
|
+
Vagrant has detected project local plugins configured for this
|
457
|
+
project which are not installed.
|
458
|
+
|
459
|
+
%{plugins}
|
460
|
+
request_plugin_install: |-
|
461
|
+
Install local plugins (Y/N)
|
462
|
+
install_rerun_command: |-
|
463
|
+
Vagrant has completed installing local plugins for the current Vagrant
|
464
|
+
project directory. Please run the requested command again.
|
465
|
+
|
466
|
+
install_all: |-
|
467
|
+
Vagrant will now install the following plugins to the local project
|
468
|
+
which have been defined in current Vagrantfile:
|
469
|
+
|
470
|
+
%{plugins}
|
471
|
+
|
472
|
+
Press ctrl-c to cancel...
|
473
|
+
#-------------------------------------------------------------------------------
|
474
|
+
# Translations for exception classes
|
475
|
+
#-------------------------------------------------------------------------------
|
476
|
+
errors:
|
477
|
+
active_machine_with_different_provider: |-
|
478
|
+
An active machine was found with a different provider. Vagrant
|
479
|
+
currently allows each machine to be brought up with only a single
|
480
|
+
provider at a time. A future version will remove this limitation.
|
481
|
+
Until then, please destroy the existing machine to up with a new
|
482
|
+
provider.
|
483
|
+
|
484
|
+
Machine name: %{name}
|
485
|
+
Active provider: %{active_provider}
|
486
|
+
Requested provider: %{requested_provider}
|
487
|
+
alias_invalid_error: |-
|
488
|
+
The defined alias is not valid. Please review the information below
|
489
|
+
to help resolve the issue:
|
490
|
+
|
491
|
+
Alias: %{alias}
|
492
|
+
Message: %{message}
|
493
|
+
batch_multi_error: |-
|
494
|
+
An error occurred while executing multiple actions in parallel.
|
495
|
+
Any errors that occurred are shown below.
|
496
|
+
|
497
|
+
%{message}
|
498
|
+
box_add_no_matching_provider: |-
|
499
|
+
The box you're attempting to add doesn't support the provider
|
500
|
+
you requested. Please find an alternate box or use an alternate
|
501
|
+
provider. Double-check your requested provider to verify you didn't
|
502
|
+
simply misspell it.
|
503
|
+
|
504
|
+
If you're adding a box from HashiCorp's Vagrant Cloud, make sure the box is
|
505
|
+
released.
|
506
|
+
|
507
|
+
Name: %{name}
|
508
|
+
Address: %{url}
|
509
|
+
Requested provider: %{requested}
|
510
|
+
box_add_no_matching_version: |-
|
511
|
+
The box you're attempting to add has no available version that
|
512
|
+
matches the constraints you requested. Please double-check your
|
513
|
+
settings. Also verify that if you specified version constraints,
|
514
|
+
that the provider you wish to use is available for these constraints.
|
515
|
+
|
516
|
+
Box: %{name}
|
517
|
+
Address: %{url}
|
518
|
+
Constraints: %{constraints}
|
519
|
+
Available versions: %{versions}
|
520
|
+
box_add_short_not_found: |-
|
521
|
+
The box '%{name}' could not be found or
|
522
|
+
could not be accessed in the remote catalog. If this is a private
|
523
|
+
box on HashiCorp's Vagrant Cloud, please verify you're logged in via
|
524
|
+
`vagrant login`. Also, please double-check the name. The expanded
|
525
|
+
URL and error message are shown below:
|
526
|
+
|
527
|
+
URL: %{url}
|
528
|
+
Error: %{error}
|
529
|
+
boot_bad_state: |-
|
530
|
+
The guest machine entered an invalid state while waiting for it
|
531
|
+
to boot. Valid states are '%{valid}'. The machine is in the
|
532
|
+
'%{invalid}' state. Please verify everything is configured
|
533
|
+
properly and try again.
|
534
|
+
|
535
|
+
If the provider you're using has a GUI that comes with it,
|
536
|
+
it is often helpful to open that and watch the machine, since the
|
537
|
+
GUI often has more helpful error messages than Vagrant can retrieve.
|
538
|
+
For example, if you're using VirtualBox, run `vagrant up` while the
|
539
|
+
VirtualBox GUI is open.
|
540
|
+
|
541
|
+
The primary issue for this error is that the provider you're using
|
542
|
+
is not properly configured. This is very rarely a Vagrant issue.
|
543
|
+
boot_timeout: |-
|
544
|
+
Timed out while waiting for the machine to boot. This means that
|
545
|
+
Vagrant was unable to communicate with the guest machine within
|
546
|
+
the configured ("config.vm.boot_timeout" value) time period.
|
547
|
+
|
548
|
+
If you look above, you should be able to see the error(s) that
|
549
|
+
Vagrant had when attempting to connect to the machine. These errors
|
550
|
+
are usually good hints as to what may be wrong.
|
551
|
+
|
552
|
+
If you're using a custom box, make sure that networking is properly
|
553
|
+
working and you're able to connect to the machine. It is a common
|
554
|
+
problem that networking isn't setup properly in these boxes.
|
555
|
+
Verify that authentication configurations are also setup properly,
|
556
|
+
as well.
|
557
|
+
|
558
|
+
If the box appears to be booting properly, you may want to increase
|
559
|
+
the timeout ("config.vm.boot_timeout") value.
|
560
|
+
box_add_exists: |-
|
561
|
+
The box you're attempting to add already exists. Remove it before
|
562
|
+
adding it again or add it with the `--force` flag.
|
563
|
+
|
564
|
+
Name: %{name}
|
565
|
+
Provider: %{provider}
|
566
|
+
Version: %{version}
|
567
|
+
box_add_direct_version: |-
|
568
|
+
You specified a box version constraint with a direct box file
|
569
|
+
path. Box version constraints only work with boxes from Vagrant
|
570
|
+
Cloud or a custom box host. Please remove the version constraint
|
571
|
+
and try again.
|
572
|
+
box_add_metadata_multi_url: |-
|
573
|
+
Multiple URLs for a box can't be specified when adding
|
574
|
+
versioned boxes. Please specify a single URL to the box
|
575
|
+
metadata (JSON) information. The full list of URLs you
|
576
|
+
specified is shown below:
|
577
|
+
|
578
|
+
%{urls}
|
579
|
+
box_add_name_mismatch: |-
|
580
|
+
The box you're adding has a name different from the name you
|
581
|
+
requested. For boxes with metadata, you cannot override the name.
|
582
|
+
If you're adding a box using `vagrant box add`, don't specify
|
583
|
+
the `--name` parameter. If the box is being added via a Vagrantfile,
|
584
|
+
change the `config.vm.box` value to match the name below.
|
585
|
+
|
586
|
+
Requested name: %{requested_name}
|
587
|
+
Actual name: %{actual_name}
|
588
|
+
box_add_name_required: |-
|
589
|
+
A name is required when adding a box file directly. Please pass
|
590
|
+
the `--name` parameter to `vagrant box add`. See
|
591
|
+
`vagrant box add -h` for more help.
|
592
|
+
box_checksum_invalid_type: |-
|
593
|
+
The specified checksum type is not supported by Vagrant: %{type}.
|
594
|
+
Vagrant supports the following checksum types:
|
595
|
+
|
596
|
+
%{types}
|
597
|
+
box_checksum_mismatch: |-
|
598
|
+
The checksum of the downloaded box did not match the expected
|
599
|
+
value. Please verify that you have the proper URL setup and that
|
600
|
+
you're downloading the proper file.
|
601
|
+
|
602
|
+
Expected: %{expected}
|
603
|
+
Received: %{actual}
|
604
|
+
box_config_changing_box: |-
|
605
|
+
While loading the Vagrantfile, the provider override specified
|
606
|
+
a new box. This box, in turn, specified a different box. This isn't
|
607
|
+
allowed, as it could lead to infinite recursion of Vagrant configuration
|
608
|
+
loading. Please fix this.
|
609
|
+
box_file_not_exist: |-
|
610
|
+
The file you are attempting to upload does not exist. Please recheck
|
611
|
+
that the file exists and was passed in correctly.
|
612
|
+
|
613
|
+
File: %{file}
|
614
|
+
box_metadata_corrupted: |-
|
615
|
+
The metadata associated with the box '%{name}' appears corrupted.
|
616
|
+
This is most often caused by a disk issue or system crash. Please
|
617
|
+
remove the box, re-add it, and try again.
|
618
|
+
box_metadata_missing_required_fields: |-
|
619
|
+
The metadata associated with the box '%{name}' appears to be missing
|
620
|
+
the required field '%{required_field}'. Please ensure `metadata.json`
|
621
|
+
has all required fields.
|
622
|
+
|
623
|
+
Required fields: %{all_fields}
|
624
|
+
box_metadata_download_error: |-
|
625
|
+
There was an error while downloading the metadata for this box.
|
626
|
+
The error message is shown below:
|
627
|
+
|
628
|
+
%{message}
|
629
|
+
box_metadata_file_not_found: |-
|
630
|
+
The "metadata.json" file for the box '%{name}' was not found.
|
631
|
+
Boxes require this file in order for Vagrant to determine the
|
632
|
+
provider it was made for. If you made the box, please add a
|
633
|
+
"metadata.json" file to it. If someone else made the box, please
|
634
|
+
notify the box creator that the box is corrupt. Documentation for
|
635
|
+
box file format can be found at the URL below:
|
636
|
+
|
637
|
+
https://www.vagrantup.com/docs/boxes/format.html
|
638
|
+
box_metadata_malformed: |-
|
639
|
+
The metadata for the box was malformed. The exact error
|
640
|
+
is shown below. Please contact the maintainer of the box so
|
641
|
+
that this issue can be fixed.
|
642
|
+
|
643
|
+
%{error}
|
644
|
+
box_metadata_malformed_version: |-
|
645
|
+
A version of the box you're loading is formatted in a way that
|
646
|
+
Vagrant cannot parse: '%{version}'. Please reformat the version
|
647
|
+
to be properly formatted. It should be in the format of
|
648
|
+
X.Y.Z.
|
649
|
+
box_not_found: |-
|
650
|
+
The box '%{name}' does not exist. Please double check and
|
651
|
+
try again. You can see the boxes that are installed with
|
652
|
+
`vagrant box list`.
|
653
|
+
box_not_found_with_provider: |-
|
654
|
+
The box '%{name}' isn't installed for the provider '%{provider}'.
|
655
|
+
Please double-check and try again. The installed providers for
|
656
|
+
the box are shown below:
|
657
|
+
|
658
|
+
%{providers}
|
659
|
+
box_not_found_with_provider_and_version: |-
|
660
|
+
The box '%{name}' (v%{version}) with provider '%{provider}'
|
661
|
+
could not be found. Please double check and try again. You
|
662
|
+
can see all the boxes that are installed with `vagrant box list`.
|
663
|
+
box_provider_doesnt_match: |-
|
664
|
+
The box you attempted to add doesn't match the provider you specified.
|
665
|
+
|
666
|
+
Provider expected: %{expected}
|
667
|
+
Provider of box: %{actual}
|
668
|
+
box_remove_multi_provider: |-
|
669
|
+
You requested to remove the box '%{name}'. This box has
|
670
|
+
multiple providers. You must explicitly select a single
|
671
|
+
provider to remove with `--provider`.
|
672
|
+
|
673
|
+
Available providers: %{providers}
|
674
|
+
box_remove_multi_version: |-
|
675
|
+
You requested to remove the box '%{name}' with provider
|
676
|
+
'%{provider}'. This box has multiple versions. You must
|
677
|
+
explicitly specify which version you want to remove with
|
678
|
+
the `--box-version` flag or specify the `--all` flag to remove all
|
679
|
+
versions. The available versions for this box are:
|
680
|
+
|
681
|
+
%{versions}
|
682
|
+
box_remove_not_found: |-
|
683
|
+
The box you requested to be removed could not be found. No
|
684
|
+
boxes named '%{name}' could be found.
|
685
|
+
box_remove_provider_not_found: |-
|
686
|
+
You requested to remove the box '%{name}' with provider
|
687
|
+
'%{provider}'. The box '%{name}' exists but not with
|
688
|
+
the provider specified. Please double-check and try again.
|
689
|
+
|
690
|
+
The providers for this are: %{providers}
|
691
|
+
box_remove_version_not_found: |-
|
692
|
+
You requested to remove the box '%{name}' version '%{version}' with
|
693
|
+
provider '%{provider}', but that specific version of the box is
|
694
|
+
not installed. Please double-check and try again. The available versions
|
695
|
+
for this box are:
|
696
|
+
|
697
|
+
%{versions}
|
698
|
+
box_server_not_set: |-
|
699
|
+
A URL to a Vagrant Cloud server is not set, so boxes cannot be added with a
|
700
|
+
shorthand ("mitchellh/precise64") format. You may also be seeing this
|
701
|
+
error if you meant to type in a path to a box file which doesn't exist
|
702
|
+
locally on your system.
|
703
|
+
|
704
|
+
To set a URL to a Vagrant Cloud server, set the `VAGRANT_SERVER_URL`
|
705
|
+
environmental variable. Or, if you meant to use a file path, make sure
|
706
|
+
the path to the file is valid.
|
707
|
+
box_update_multi_provider: |-
|
708
|
+
You requested to update the box '%{name}'. This box has
|
709
|
+
multiple providers. You must explicitly select a single
|
710
|
+
provider to remove with `--provider`.
|
711
|
+
|
712
|
+
Available providers: %{providers}
|
713
|
+
box_update_no_box: |-
|
714
|
+
Box '%{name}' not installed, can't check for updates.
|
715
|
+
box_update_no_metadata: |-
|
716
|
+
The box '%{name}' is not a versioned box. The box was added
|
717
|
+
directly instead of from a box catalog. Vagrant can only
|
718
|
+
check the versions of boxes that were added from a catalog
|
719
|
+
such as from the public Vagrant Server.
|
720
|
+
box_update_no_name: |-
|
721
|
+
This machine doesn't have a box. Won't update anything.
|
722
|
+
box_version_invalid: |-
|
723
|
+
The format of box version provided (%{version}) is incorrect. The
|
724
|
+
version must follow the semantic versioning format or semantic
|
725
|
+
versioning compatible constraint format. Examples of valid values:
|
726
|
+
|
727
|
+
2.0
|
728
|
+
2.1.4
|
729
|
+
>= 2
|
730
|
+
< 3.0.0
|
731
|
+
bundler_disabled: |-
|
732
|
+
Vagrant's built-in bundler management mechanism is disabled because
|
733
|
+
Vagrant is running in an external bundler environment. In these
|
734
|
+
cases, plugin management does not work with Vagrant. To install
|
735
|
+
plugins, use your own Gemfile. To load plugins, either put the
|
736
|
+
plugins in the `plugins` group in your Gemfile or manually require
|
737
|
+
them in a Vagrantfile.
|
738
|
+
bundler_error: |-
|
739
|
+
Vagrant failed to properly resolve required dependencies. These
|
740
|
+
errors can commonly be caused by misconfigured plugin installations
|
741
|
+
or transient network issues. The reported error is:
|
742
|
+
|
743
|
+
%{message}
|
744
|
+
source_spec_not_found: |-
|
745
|
+
Vagrant failed to properly initialize its internal library
|
746
|
+
dependencies. Please try running the command again. If this
|
747
|
+
error persists, please report a bug.
|
748
|
+
cant_read_mac_addresses: |-
|
749
|
+
The provider you are using ('%{provider}') doesn't support the
|
750
|
+
"nic_mac_addresses" provider capability which is required
|
751
|
+
for advanced networking to work with this guest OS. Please inform
|
752
|
+
the author of the provider to add this feature.
|
753
|
+
|
754
|
+
Until then, you must remove any networking configurations other
|
755
|
+
than forwarded ports from your Vagrantfile for Vagrant to continue.
|
756
|
+
capability_host_explicit_not_detected: |-
|
757
|
+
The explicit capability host specified of '%{value}' could not be
|
758
|
+
found.
|
759
|
+
|
760
|
+
This is an internal error that users should never see. Please report
|
761
|
+
a bug.
|
762
|
+
capability_host_not_detected: |-
|
763
|
+
The capability host could not be detected. This is an internal error
|
764
|
+
that users should never see. Please report a bug.
|
765
|
+
capability_invalid: |-
|
766
|
+
The capability '%{cap}' is invalid. This is an internal error that
|
767
|
+
users should never see. Please report a bug.
|
768
|
+
capability_not_found: |-
|
769
|
+
The capability '%{cap}' could not be found. This is an internal error
|
770
|
+
that users should never see. Please report a bug.
|
771
|
+
|
772
|
+
cfengine_bootstrap_failed: |-
|
773
|
+
Failed to bootstrap CFEngine. Please see the output above to
|
774
|
+
see what went wrong and address the issue.
|
775
|
+
cfengine_cant_autodetect_ip: |-
|
776
|
+
Vagrant was unable to automatically detect the IP address of the
|
777
|
+
running machine to use as the policy server address. Please specify
|
778
|
+
the policy server address manually, or verify that the networks are
|
779
|
+
configured properly internally.
|
780
|
+
cfengine_install_failed: |-
|
781
|
+
After installing CFEngine, Vagrant still can't detect a proper
|
782
|
+
CFEngine installation. Please verify that CFEngine was properly
|
783
|
+
installed, as the installation may have failed.
|
784
|
+
cfengine_not_installed: |-
|
785
|
+
CFEngine appears not to be installed on the guest machine. Vagrant
|
786
|
+
can attempt to install CFEngine for you if you set the "install"
|
787
|
+
setting to "true", but this setting was not set. Please install
|
788
|
+
CFEngine on the guest machine or enable the "install" setting for
|
789
|
+
Vagrant to attempt to install it for you.
|
790
|
+
cli_invalid_options: |-
|
791
|
+
An invalid option was specified. The help for this command
|
792
|
+
is available below.
|
793
|
+
|
794
|
+
%{help}
|
795
|
+
cli_invalid_usage: |-
|
796
|
+
This command was not invoked properly. The help for this command is
|
797
|
+
available below.
|
798
|
+
|
799
|
+
%{help}
|
800
|
+
clone_not_found: |-
|
801
|
+
The specified Vagrantfile to clone from was not found. Please verify
|
802
|
+
the `config.vm.clone` setting points to a valid Vagrantfile.
|
803
|
+
clone_machine_not_found: |-
|
804
|
+
The clone environment hasn't been created yet. To clone from
|
805
|
+
another Vagrantfile, it must already be created with `vagrant up`.
|
806
|
+
It doesn't need to be running.
|
807
|
+
|
808
|
+
Additionally, the created environment must be started with a provider
|
809
|
+
matching this provider. For example, if you're using VirtualBox,
|
810
|
+
the clone environment must also be using VirtualBox.
|
811
|
+
cloud_init_not_found: |-
|
812
|
+
cloud-init is not found. Please ensure that cloud-init is installed and
|
813
|
+
available on path for guest '%{guest_name}'.
|
814
|
+
cloud_init_command_failed: |-
|
815
|
+
cloud init command '%{cmd}' failed on guest '%{guest_name}'.
|
816
|
+
command_deprecated: |-
|
817
|
+
The command 'vagrant %{name}' has been deprecated and is no longer functional
|
818
|
+
within Vagrant.
|
819
|
+
command_suspend_all_arguments: |-
|
820
|
+
The suspend command with the `--all-global` flag does not take any arguments.
|
821
|
+
command_unavailable: |-
|
822
|
+
The executable '%{file}' Vagrant is trying to run was not
|
823
|
+
found in the PATH variable. This is an error. Please verify
|
824
|
+
this software is installed and on the path.
|
825
|
+
command_unavailable_windows: |-
|
826
|
+
The executable '%{file}' Vagrant is trying to run was not
|
827
|
+
found in the %PATH% variable. This is an error. Please verify
|
828
|
+
this software is installed and on the path.
|
829
|
+
communicator_not_found: |-
|
830
|
+
The requested communicator '%{comm}' could not be found.
|
831
|
+
Please verify the name is correct and try again.
|
832
|
+
config_invalid: |-
|
833
|
+
There are errors in the configuration of this machine. Please fix
|
834
|
+
the following errors and try again:
|
835
|
+
|
836
|
+
%{errors}
|
837
|
+
config_upgrade_errors: |-
|
838
|
+
Because there were errors upgrading your Vagrantfiles, Vagrant
|
839
|
+
can no longer continue. Please fix the errors above and try again.
|
840
|
+
copy_private_key_failed: |-
|
841
|
+
Vagrant failed to copy the default insecure private key into your
|
842
|
+
home directory. This is usually caused by a permissions error.
|
843
|
+
Please make sure the permissions of the source is readable and
|
844
|
+
the destination is writable.
|
845
|
+
|
846
|
+
Source: %{source}
|
847
|
+
Destination: %{destination}
|
848
|
+
corrupt_machine_index: |-
|
849
|
+
The machine index which stores all required information about
|
850
|
+
running Vagrant environments has become corrupt. This is usually
|
851
|
+
caused by external tampering of the Vagrant data folder.
|
852
|
+
|
853
|
+
Vagrant cannot manage any Vagrant environments if the index is
|
854
|
+
corrupt. Please attempt to manually correct it. If you are unable
|
855
|
+
to manually correct it, then remove the data file at the path below.
|
856
|
+
This will leave all existing Vagrant environments "orphaned" and
|
857
|
+
they'll have to be destroyed manually.
|
858
|
+
|
859
|
+
Path: %{path}
|
860
|
+
create_iso_host_cap_not_found: |-
|
861
|
+
Vagrant cannot create an iso due to the host capability for creating isos not existing.
|
862
|
+
Vagrant will now exit.
|
863
|
+
darwin_mount_failed: |-
|
864
|
+
Failed to mount folders in Darwin guest. The command attempted was:
|
865
|
+
|
866
|
+
%{command}
|
867
|
+
|
868
|
+
The error output from the last command was:
|
869
|
+
|
870
|
+
%{output}
|
871
|
+
darwin_version_failed: |-
|
872
|
+
Failed to determine macOS version.
|
873
|
+
|
874
|
+
Version string: %{version}
|
875
|
+
Error information: %{error}
|
876
|
+
destroy_requires_force: |-
|
877
|
+
Destroy doesn't have a TTY to ask for confirmation. Please pass the
|
878
|
+
`--force` flag to force a destroy, otherwise attach a TTY so that
|
879
|
+
the destroy can be confirmed.
|
880
|
+
dotfile_upgrade_json_error: |-
|
881
|
+
A Vagrant 1.0.x local state file was found. Vagrant is able to upgrade
|
882
|
+
this to the latest format automatically, however various checks are
|
883
|
+
put in place to verify data isn't incorrectly deleted. In this case,
|
884
|
+
the old state file was not valid JSON. Vagrant 1.0.x would store state
|
885
|
+
as valid JSON, meaning that this file was probably tampered with or
|
886
|
+
manually edited. Vagrant's auto-upgrade process cannot continue in this
|
887
|
+
case.
|
888
|
+
|
889
|
+
In most cases, this can be resolve by simply removing the state file.
|
890
|
+
Note however though that if Vagrant was previously managing virtual
|
891
|
+
machines, they may be left in an "orphan" state. That is, if they are
|
892
|
+
running or exist, they'll have to manually be removed.
|
893
|
+
|
894
|
+
If you're unsure what to do, ask the Vagrant mailing list or contact
|
895
|
+
support.
|
896
|
+
|
897
|
+
State file path: %{state_file}
|
898
|
+
download_already_in_progress_error: |-
|
899
|
+
Download to global Vagrant location already in progress. This
|
900
|
+
may be caused by other Vagrant processes attempting to download
|
901
|
+
a file to the same location.
|
902
|
+
|
903
|
+
Download path: %{dest_path}
|
904
|
+
Lock file path: %{lock_file_path}
|
905
|
+
downloader_error: |-
|
906
|
+
An error occurred while downloading the remote file. The error
|
907
|
+
message, if any, is reproduced below. Please fix this error and try
|
908
|
+
again.
|
909
|
+
|
910
|
+
%{message}
|
911
|
+
downloader_interrupted: |-
|
912
|
+
The download was interrupted by an external signal. It did not
|
913
|
+
complete.
|
914
|
+
downloader_checksum_error: |-
|
915
|
+
The calculated checksum of the requested file does not match the expected
|
916
|
+
checksum!
|
917
|
+
|
918
|
+
File source: %{source}
|
919
|
+
Checksum type: %{type}
|
920
|
+
Expected checksum: %{expected_checksum}
|
921
|
+
Calculated checksum: %{actual_checksum}
|
922
|
+
env_inval: |-
|
923
|
+
Vagrant received an "EINVAL" error while attempting to set some
|
924
|
+
environment variables. This is usually caused by the total size of your
|
925
|
+
environment variables being too large. Vagrant sets a handful of
|
926
|
+
environment variables to function and requires this to work. Please
|
927
|
+
delete some environment variables prior to executing Vagrant to
|
928
|
+
fix this.
|
929
|
+
environment_locked: |-
|
930
|
+
Vagrant attempted to acquire a lock named '%{name}', but this
|
931
|
+
lock is being held by another instance of Vagrant already. Please
|
932
|
+
wait and try again.
|
933
|
+
environment_non_existent_cwd: |-
|
934
|
+
The working directory for Vagrant doesn't exist! This is the
|
935
|
+
specified working directory:
|
936
|
+
|
937
|
+
%{cwd}
|
938
|
+
forward_port_adapter_not_found: |-
|
939
|
+
The adapter to attach a forwarded port to was not found. Please
|
940
|
+
verify that the given adapter is setup on the machine as a NAT
|
941
|
+
interface.
|
942
|
+
|
943
|
+
Host port: %{host}
|
944
|
+
Guest port: %{guest}
|
945
|
+
Adapter: %{adapter}
|
946
|
+
freebsd_nfs_whitespace: |-
|
947
|
+
FreeBSD hosts do not support sharing directories with whitespace in
|
948
|
+
their path. Please adjust your path accordingly.
|
949
|
+
guest_capability_invalid: |-
|
950
|
+
The registered guest capability '%{cap}' for the
|
951
|
+
detected guest OS '%{guest}' is invalid. The capability does
|
952
|
+
not implement the proper method. This is a bug with Vagrant or the
|
953
|
+
plugin that implements this capability. Please report a bug.
|
954
|
+
guest_capability_not_found: |-
|
955
|
+
Vagrant attempted to execute the capability '%{cap}'
|
956
|
+
on the detect guest OS '%{guest}', but the guest doesn't
|
957
|
+
support that capability. This capability is required for your
|
958
|
+
configuration of Vagrant. Please either reconfigure Vagrant to
|
959
|
+
avoid this capability or fix the issue by creating the capability.
|
960
|
+
guest_explicit_not_detected: |-
|
961
|
+
The guest implementation explicitly specified in your Vagrantfile
|
962
|
+
("%{value}") could not be found. Please verify that the plugin is
|
963
|
+
installed which implements this guest and that the value you
|
964
|
+
used for `config.vm.guest` is correct.
|
965
|
+
guest_not_detected: |-
|
966
|
+
The guest operating system of the machine could not be detected!
|
967
|
+
Vagrant requires this knowledge to perform specific tasks such
|
968
|
+
as mounting shared folders and configuring networks. Please add
|
969
|
+
the ability to detect this guest operating system to Vagrant
|
970
|
+
by creating a plugin or reporting a bug.
|
971
|
+
home_dir_later_version: |-
|
972
|
+
It appears that a newer version of Vagrant was run on this machine
|
973
|
+
at some point. The current version of Vagrant is unable to read
|
974
|
+
the configuration structure of this newer version. Please upgrade to
|
975
|
+
the latest version of Vagrant.
|
976
|
+
home_dir_not_accessible: |-
|
977
|
+
The home directory you specified is not accessible. The home
|
978
|
+
directory that Vagrant uses must be both readable and writable.
|
979
|
+
|
980
|
+
You specified: %{home_path}
|
981
|
+
home_dir_unknown_version: |-
|
982
|
+
The Vagrant app data directory (%{path}) is in a
|
983
|
+
structure Vagrant doesn't understand. This is a rare exception.
|
984
|
+
Please report an issue or ask the mailing list for help.
|
985
|
+
host_explicit_not_detected: |-
|
986
|
+
The host implementation explicitly specified in your Vagrantfile
|
987
|
+
("%{value}") could not be found. Please verify that the plugin is
|
988
|
+
installed which implements this host and that the value you used
|
989
|
+
for `config.vagrant.host` is correct.
|
990
|
+
iso_build_failed: |-
|
991
|
+
Failed to build iso image. The following command returned an error:
|
992
|
+
|
993
|
+
%{cmd}
|
994
|
+
|
995
|
+
Stdout from the command:
|
996
|
+
|
997
|
+
%{stdout}
|
998
|
+
|
999
|
+
Stderr from the command:
|
1000
|
+
|
1001
|
+
%{stderr}
|
1002
|
+
hyperv_virtualbox_error: |-
|
1003
|
+
Hyper-V and VirtualBox cannot be used together and will result in a
|
1004
|
+
system crash. Vagrant will now exit. Please disable Hyper-V if you wish
|
1005
|
+
to use VirtualBox.
|
1006
|
+
interrupted: |-
|
1007
|
+
Vagrant exited after cleanup due to external interrupt.
|
1008
|
+
local_data_dir_not_accessible: |-
|
1009
|
+
The directory Vagrant will use to store local environment-specific
|
1010
|
+
state is not accessible. The directory specified as the local data
|
1011
|
+
directory must be both readable and writable for the user that is
|
1012
|
+
running Vagrant.
|
1013
|
+
|
1014
|
+
Local data directory: %{local_data_path}
|
1015
|
+
linux_mount_failed: |-
|
1016
|
+
Failed to mount folders in Linux guest. This is usually because
|
1017
|
+
the "vboxsf" file system is not available. Please verify that
|
1018
|
+
the guest additions are properly installed in the guest and
|
1019
|
+
can work properly. The command attempted was:
|
1020
|
+
|
1021
|
+
%{command}
|
1022
|
+
|
1023
|
+
The error output from the last command was:
|
1024
|
+
|
1025
|
+
%{output}
|
1026
|
+
linux_rdp_client_not_found: |-
|
1027
|
+
An appropriate RDP client was not found. Vagrant requires either
|
1028
|
+
`xfreerdp` or `rdesktop` in order to connect via RDP to the Vagrant
|
1029
|
+
environment. Please ensure one of these applications is installed and
|
1030
|
+
available on the path and try again.
|
1031
|
+
machine_action_locked: |-
|
1032
|
+
An action '%{action}' was attempted on the machine '%{name}',
|
1033
|
+
but another process is already executing an action on the machine.
|
1034
|
+
Vagrant locks each machine for access by only one process at a time.
|
1035
|
+
Please wait until the other Vagrant process finishes modifying this
|
1036
|
+
machine, then try again.
|
1037
|
+
|
1038
|
+
If you believe this message is in error, please check the process
|
1039
|
+
listing for any "ruby" or "vagrant" processes and kill them. Then
|
1040
|
+
try again.
|
1041
|
+
machine_folder_not_accessible: |-
|
1042
|
+
Vagrant attempted to clean the machine folder for the machine '%{name}'
|
1043
|
+
but does not have permission to read the following path:
|
1044
|
+
|
1045
|
+
%{path}
|
1046
|
+
|
1047
|
+
Please ensure that Vagrant has the proper permissions to access the path
|
1048
|
+
above. You may need to grant this permission to the terminal emulator
|
1049
|
+
running Vagrant as well.
|
1050
|
+
machine_guest_not_ready: |-
|
1051
|
+
Guest-specific operations were attempted on a machine that is not
|
1052
|
+
ready for guest communication. This should not happen and a bug
|
1053
|
+
should be reported.
|
1054
|
+
machine_locked: |-
|
1055
|
+
Vagrant can't use the requested machine because it is locked! This
|
1056
|
+
means that another Vagrant process is currently reading or modifying
|
1057
|
+
the machine. Please wait for that Vagrant process to end and try
|
1058
|
+
again. Details about the machine are shown below:
|
1059
|
+
|
1060
|
+
Name: %{name}
|
1061
|
+
Provider: %{provider}
|
1062
|
+
machine_not_found: |-
|
1063
|
+
The machine with the name '%{name}' was not found configured for
|
1064
|
+
this Vagrant environment.
|
1065
|
+
machine_state_invalid: |-
|
1066
|
+
An internal error has occurred! The provider of the machine you're
|
1067
|
+
trying to work with reported an invalid state. This is a bug with
|
1068
|
+
the provider you're using, and not with Vagrant itself or with
|
1069
|
+
any configuration you may have done. Please report this bug to
|
1070
|
+
the proper location.
|
1071
|
+
multi_vm_target_required: |-
|
1072
|
+
This command requires a specific VM name to target in a multi-VM environment.
|
1073
|
+
netplan_no_available_renderers: |-
|
1074
|
+
No renderers compatible with netplan are available on guest. Please install
|
1075
|
+
a compatible renderer.
|
1076
|
+
net_ssh_exception: |-
|
1077
|
+
An error occurred in the underlying SSH library that Vagrant uses.
|
1078
|
+
The error message is shown below. In many cases, errors from this
|
1079
|
+
library are caused by ssh-agent issues. Try disabling your SSH
|
1080
|
+
agent or removing some keys and try again.
|
1081
|
+
|
1082
|
+
If the problem persists, please report a bug to the net-ssh project.
|
1083
|
+
|
1084
|
+
%{message}
|
1085
|
+
network_type_not_supported: |-
|
1086
|
+
The %{type} network type is not supported for this box or guest.
|
1087
|
+
network_address_invalid: |-
|
1088
|
+
Network settings specified in your Vagrantfile define an invalid
|
1089
|
+
IP address. Please review the error message below and update your
|
1090
|
+
Vagrantfile network settings:
|
1091
|
+
|
1092
|
+
Address: %{address}
|
1093
|
+
Netmask: %{mask}
|
1094
|
+
Error: %{error}
|
1095
|
+
network_manager_not_installed: |-
|
1096
|
+
Vagrant was instructed to configure the %{device} network device to
|
1097
|
+
be managed by NetworkManager. However, the configured guest VM does
|
1098
|
+
not have NetworkManager installed. To fix this error please remove
|
1099
|
+
the `nm_controlled` setting from local Vagrantfile. If NetworkManager
|
1100
|
+
is required to manage the network devices, please use a box with
|
1101
|
+
NetworkManager installed.
|
1102
|
+
nfs_bad_exports: |-
|
1103
|
+
NFS is reporting that your exports file is invalid. Vagrant does
|
1104
|
+
this check before making any changes to the file. Please correct
|
1105
|
+
the issues below and execute "vagrant reload":
|
1106
|
+
|
1107
|
+
%{output}
|
1108
|
+
nfs_exports_failed: |-
|
1109
|
+
Vagrant failed to install an updated NFS exports file. This may be
|
1110
|
+
due to overly restrictive permissions on your NFS exports file. Please
|
1111
|
+
validate them and try again.
|
1112
|
+
|
1113
|
+
command: %{command}
|
1114
|
+
stdout: %{stdout}
|
1115
|
+
stderr: %{stderr}
|
1116
|
+
nfs_dupe_permissions: |-
|
1117
|
+
You have attempted to export the same nfs host path at %{hostpath} with
|
1118
|
+
different nfs permissions. Please pick one permission and reload your guest.
|
1119
|
+
nfs_cant_read_exports: |-
|
1120
|
+
Vagrant can't read your current NFS exports! The exports file should be
|
1121
|
+
readable by any user. This is usually caused by invalid permissions
|
1122
|
+
on your NFS exports file. Please fix them and try again.
|
1123
|
+
nfs_mount_failed: |-
|
1124
|
+
Mounting NFS shared folders failed. This is most often caused by the NFS
|
1125
|
+
client software not being installed on the guest machine. Please verify
|
1126
|
+
that the NFS client software is properly installed, and consult any resources
|
1127
|
+
specific to the linux distro you're using for more information on how to
|
1128
|
+
do this.
|
1129
|
+
nfs_no_guest_ip: |-
|
1130
|
+
No guest IP was given to the Vagrant core NFS helper. This is an
|
1131
|
+
internal error that should be reported as a bug.
|
1132
|
+
nfs_no_host_ip: |-
|
1133
|
+
No host IP was given to the Vagrant core NFS helper. This is
|
1134
|
+
an internal error that should be reported as a bug.
|
1135
|
+
nfs_no_hostonly_network: |-
|
1136
|
+
NFS requires a host-only network to be created.
|
1137
|
+
Please add a host-only network to the machine (with either DHCP or a
|
1138
|
+
static IP) for NFS to work.
|
1139
|
+
nfs_no_valid_ids: |-
|
1140
|
+
No valid IDs were given to the NFS synced folder implementation to
|
1141
|
+
prune. This is an internal bug with Vagrant and an issue should be
|
1142
|
+
filed.
|
1143
|
+
nfs_not_supported: |-
|
1144
|
+
It appears your machine doesn't support NFS, or there is not an
|
1145
|
+
adapter to enable NFS on this machine for Vagrant. Please verify
|
1146
|
+
that `nfsd` is installed on your machine, and try again. If you're
|
1147
|
+
on Windows, NFS isn't supported. If the problem persists, please
|
1148
|
+
contact Vagrant support.
|
1149
|
+
nfs_client_not_installed_in_guest: |-
|
1150
|
+
No NFS client was detected as installed in your guest machine. This
|
1151
|
+
is required for NFS synced folders to work. In addition to this, Vagrant
|
1152
|
+
doesn't know how to automatically install NFS for your machine, so
|
1153
|
+
you must do this manually.
|
1154
|
+
|
1155
|
+
If this message is erroneous, you may disable this check by setting
|
1156
|
+
`config.nfs.verify_installed` to `false` in your Vagrantfile.
|
1157
|
+
no_default_provider: |-
|
1158
|
+
No usable default provider could be found for your system.
|
1159
|
+
|
1160
|
+
Vagrant relies on interactions with 3rd party systems, known as
|
1161
|
+
"providers", to provide Vagrant with resources to run development
|
1162
|
+
environments. Examples are VirtualBox, VMware, Hyper-V.
|
1163
|
+
|
1164
|
+
The easiest solution to this message is to install VirtualBox, which
|
1165
|
+
is available for free on all major platforms.
|
1166
|
+
|
1167
|
+
If you believe you already have a provider available, make sure it
|
1168
|
+
is properly installed and configured. You can see more details about
|
1169
|
+
why a particular provider isn't working by forcing usage with
|
1170
|
+
`vagrant up --provider=PROVIDER`, which should give you a more specific
|
1171
|
+
error message for that particular provider.
|
1172
|
+
no_default_synced_folder_impl: |-
|
1173
|
+
No synced folder implementation is available for your synced folders!
|
1174
|
+
Please consult the documentation to learn why this may be the case.
|
1175
|
+
You may force a synced folder implementation by specifying a "type:"
|
1176
|
+
option for the synced folders. Available synced folder implementations
|
1177
|
+
are listed below.
|
1178
|
+
|
1179
|
+
%{types}
|
1180
|
+
no_env: |-
|
1181
|
+
A Vagrant environment or target machine is required to run this
|
1182
|
+
command. Run `vagrant init` to create a new Vagrant environment. Or,
|
1183
|
+
get an ID of a target machine from `vagrant global-status` to run
|
1184
|
+
this command on. A final option is to change to a directory with a
|
1185
|
+
Vagrantfile and to try again.
|
1186
|
+
plugin_gem_not_found: |-
|
1187
|
+
The plugin '%{name}' could not be installed because it could not
|
1188
|
+
be found. Please double check the name and try again.
|
1189
|
+
plugin_install_license_not_found: |-
|
1190
|
+
The license file to install could not be found. Please verify
|
1191
|
+
the path you gave is correct. The path to the license file given
|
1192
|
+
was: '%{path}'
|
1193
|
+
plugin_install_failed: |-
|
1194
|
+
Vagrant was unable to install the requested plugin: '%{name}'
|
1195
|
+
Please try to install this plugin again. If Vagrant is still unable
|
1196
|
+
to install the requested plugin, please report this error.
|
1197
|
+
plugin_install_space: |-
|
1198
|
+
The directory where plugins are installed (the Vagrant home directory)
|
1199
|
+
has a space in it. On Windows, there is a bug in Ruby when compiling
|
1200
|
+
plugins into directories with spaces. Please move your Vagrant home
|
1201
|
+
directory to a path without spaces and try again.
|
1202
|
+
plugin_install_version_conflict: |-
|
1203
|
+
The plugin(s) can't be installed due to the version conflicts below.
|
1204
|
+
This means that the plugins depend on a library version that conflicts
|
1205
|
+
with other plugins or Vagrant itself, creating an impossible situation
|
1206
|
+
where Vagrant wouldn't be able to load the plugins.
|
1207
|
+
|
1208
|
+
You can fix the issue by either removing a conflicting plugin or
|
1209
|
+
by contacting a plugin author to see if they can address the conflict.
|
1210
|
+
|
1211
|
+
%{conflicts}
|
1212
|
+
plugin_init_error: |-
|
1213
|
+
The plugins failed to initialize correctly. This may be due to manual
|
1214
|
+
modifications made within the Vagrant home directory. Vagrant can
|
1215
|
+
attempt to automatically correct this issue by running:
|
1216
|
+
|
1217
|
+
vagrant plugin repair
|
1218
|
+
|
1219
|
+
If Vagrant was recently updated, this error may be due to incompatible
|
1220
|
+
versions of dependencies. To fix this problem please remove and re-install
|
1221
|
+
all plugins. Vagrant can attempt to do this automatically by running:
|
1222
|
+
|
1223
|
+
vagrant plugin expunge --reinstall
|
1224
|
+
|
1225
|
+
Or you may want to try updating the installed plugins to their latest
|
1226
|
+
versions:
|
1227
|
+
|
1228
|
+
vagrant plugin update
|
1229
|
+
|
1230
|
+
Error message given during initialization: %{message}
|
1231
|
+
plugin_load_error: |-
|
1232
|
+
The plugins failed to load properly. The error message given is
|
1233
|
+
shown below.
|
1234
|
+
|
1235
|
+
%{message}
|
1236
|
+
plugin_not_installed: |-
|
1237
|
+
The plugin '%{name}' is not currently installed.
|
1238
|
+
plugin_state_file_not_parsable: |-
|
1239
|
+
Failed to parse the state file "%{path}":
|
1240
|
+
%{message}
|
1241
|
+
|
1242
|
+
Please remove the file and reinstall the plugins.
|
1243
|
+
If this error recurs, please report a bug.
|
1244
|
+
plugin_uninstall_system: |-
|
1245
|
+
The plugin you're attempting to uninstall ('%{name}') is a
|
1246
|
+
system plugin. This means that the plugin is part of the installation
|
1247
|
+
of Vagrant. These plugins cannot be removed.
|
1248
|
+
|
1249
|
+
You can however, install a plugin with the same name to replace
|
1250
|
+
these plugins. User-installed plugins take priority over
|
1251
|
+
system-installed plugins.
|
1252
|
+
plugin_source_error: |-
|
1253
|
+
Vagrant failed to load a configured plugin source. This can be caused
|
1254
|
+
by a variety of issues including: transient connectivity issues, proxy
|
1255
|
+
filtering rejecting access to a configured plugin source, or a configured
|
1256
|
+
plugin source not responding correctly. Please review the error message
|
1257
|
+
below to help resolve the issue:
|
1258
|
+
|
1259
|
+
%{error_msg}
|
1260
|
+
|
1261
|
+
Source: %{source}
|
1262
|
+
plugin_no_local_error: |-
|
1263
|
+
Vagrant is not currently working within a Vagrant project directory. Local
|
1264
|
+
plugins are only supported within a Vagrant project directory.
|
1265
|
+
plugin_missing_local_error: |-
|
1266
|
+
Vagrant is missing plugins required by the currently loaded Vagrantfile.
|
1267
|
+
Please install the configured plugins and run this command again. The
|
1268
|
+
following plugins are currently missing:
|
1269
|
+
|
1270
|
+
%{plugins}
|
1271
|
+
|
1272
|
+
To install the plugins configured in the current Vagrantfile run the
|
1273
|
+
following command:
|
1274
|
+
|
1275
|
+
vagrant plugin install --local
|
1276
|
+
plugin_needs_developer_tools: |-
|
1277
|
+
Vagrant failed to install the requested plugin because development tools
|
1278
|
+
are required for installation but are not currently installed on this
|
1279
|
+
machine. Please install development tools and then try this command
|
1280
|
+
again.
|
1281
|
+
plugin_missing_library: |-
|
1282
|
+
Vagrant failed to install the requested plugin because it depends
|
1283
|
+
on a library which is not currently installed on this system. The
|
1284
|
+
following library is required by the '%{name}' plugin:
|
1285
|
+
|
1286
|
+
%{library}
|
1287
|
+
|
1288
|
+
Please install the library and then run the command again.
|
1289
|
+
plugin_missing_ruby_dev: |-
|
1290
|
+
Vagrant failed to install the requested plugin because the Ruby header
|
1291
|
+
files could not be found. Install the ruby development package for your
|
1292
|
+
system and then run this command again.
|
1293
|
+
powershell_not_found: |-
|
1294
|
+
Failed to locate the powershell executable on the available PATH. Please
|
1295
|
+
ensure powershell is installed and available on the local PATH, then
|
1296
|
+
run the command again.
|
1297
|
+
powershell_invalid_version: |-
|
1298
|
+
The version of powershell currently installed on this host is less than
|
1299
|
+
the required minimum version. Please upgrade the installed version of
|
1300
|
+
powershell to the minimum required version and run the command again.
|
1301
|
+
|
1302
|
+
Installed version: %{installed_version}
|
1303
|
+
Minimum required version: %{minimum_version}
|
1304
|
+
pushes_not_defined: |-
|
1305
|
+
The Vagrantfile does not define any 'push' strategies. In order to use
|
1306
|
+
`vagrant push`, you must define at least one push strategy:
|
1307
|
+
|
1308
|
+
config.push.define "ftp" do |push|
|
1309
|
+
# ... push-specific options
|
1310
|
+
end
|
1311
|
+
push_strategy_not_defined: |-
|
1312
|
+
The push strategy '%{name}' is not defined in the Vagrantfile. Defined
|
1313
|
+
strategy names are:
|
1314
|
+
|
1315
|
+
%{pushes}
|
1316
|
+
push_strategy_not_loaded: |-
|
1317
|
+
There are no push strategies named '%{name}'. Please make sure you
|
1318
|
+
spelled it correctly. If you are using an external push strategy, you
|
1319
|
+
may need to install a plugin. Loaded push strategies are:
|
1320
|
+
|
1321
|
+
%{pushes}
|
1322
|
+
push_strategy_not_provided: |-
|
1323
|
+
The Vagrantfile defines more than one 'push' strategy. Please specify a
|
1324
|
+
strategy. Defined strategy names are:
|
1325
|
+
|
1326
|
+
%{pushes}
|
1327
|
+
package_include_symlink: |-
|
1328
|
+
A file or directory you're attempting to include with your packaged
|
1329
|
+
box has symlinks in it. Vagrant cannot include symlinks in the
|
1330
|
+
resulting package. Please remove the symlinks and try again.
|
1331
|
+
package_invalid_info: |-
|
1332
|
+
The information file that you've attempted to include doesn't exist or isn't a valid JSON file.
|
1333
|
+
Please check that the file exists and is titled 'info.json' and try again.
|
1334
|
+
provider_cant_install: |-
|
1335
|
+
The provider '%{provider}' doesn't support automatic installation.
|
1336
|
+
This is a limitation of this provider. Please report this as a feature
|
1337
|
+
request to the provider in question. To install this provider, you'll
|
1338
|
+
have to do so manually.
|
1339
|
+
provider_checksum_mismatch: |-
|
1340
|
+
The checksum of the downloaded provider '%{provider}' did not match the
|
1341
|
+
expected value. If the problem persists, please install the provider
|
1342
|
+
manually.
|
1343
|
+
|
1344
|
+
Expected: %{expected}
|
1345
|
+
Received: %{actual}
|
1346
|
+
provider_install_failed: |-
|
1347
|
+
Installation of the provider '%{provider}' failed! The stdout
|
1348
|
+
and stderr are shown below. Please read the error output, resolve it,
|
1349
|
+
and try again. If problem persists, please install the provider
|
1350
|
+
manually.
|
1351
|
+
|
1352
|
+
Stdout: %{stdout}
|
1353
|
+
Stderr: %{stderr}
|
1354
|
+
provider_not_found: |-
|
1355
|
+
The provider '%{provider}' could not be found, but was requested to
|
1356
|
+
back the machine '%{machine}'. Please use a provider that exists.
|
1357
|
+
|
1358
|
+
Vagrant knows about the following providers: %{providers}
|
1359
|
+
provider_not_found_suggestion: |-
|
1360
|
+
The provider '%{provider}' could not be found, but was requested to
|
1361
|
+
back the machine '%{machine}'. Please use a provider that exists.
|
1362
|
+
|
1363
|
+
Did you mean '%{suggestion}'?
|
1364
|
+
|
1365
|
+
Vagrant knows about the following providers: %{providers}
|
1366
|
+
provider_not_usable: |-
|
1367
|
+
The provider '%{provider}' that was requested to back the machine
|
1368
|
+
'%{machine}' is reporting that it isn't usable on this system. The
|
1369
|
+
reason is shown below:
|
1370
|
+
|
1371
|
+
%{message}
|
1372
|
+
provisioner_flag_invalid: |-
|
1373
|
+
'%{name}' is not a known provisioner. Please specify a valid
|
1374
|
+
provisioner.
|
1375
|
+
provisioner_winrm_unsupported: |-
|
1376
|
+
The provisioner '%{name}' doesn't support provisioning on
|
1377
|
+
Windows guests via WinRM. This is likely not a limitation
|
1378
|
+
of the provisioner itself but rather that Vagrant doesn't know
|
1379
|
+
how to run this provisioner over WinRM.
|
1380
|
+
|
1381
|
+
If you'd like this provisioner to work over WinRM, please
|
1382
|
+
take a look at the Vagrant source code linked below and try
|
1383
|
+
to contribute back support. Thank you!
|
1384
|
+
|
1385
|
+
https://github.com/hashicorp/vagrant
|
1386
|
+
rsync_error: |-
|
1387
|
+
There was an error when attempting to rsync a synced folder.
|
1388
|
+
Please inspect the error message below for more info.
|
1389
|
+
|
1390
|
+
Host path: %{hostpath}
|
1391
|
+
Guest path: %{guestpath}
|
1392
|
+
Command: %{command}
|
1393
|
+
Error: %{stderr}
|
1394
|
+
rsync_post_command_error: |-
|
1395
|
+
There was an error while attempting to run the post rsync
|
1396
|
+
command for a synced folder. Please inspect the error message
|
1397
|
+
below for more info.
|
1398
|
+
|
1399
|
+
Host path: %{hostpath}
|
1400
|
+
Guest path: %{guestpath}
|
1401
|
+
Error: %{message}
|
1402
|
+
rsync_guest_install_error: |-
|
1403
|
+
Installation of rsync into the guest has failed! The stdout
|
1404
|
+
and stderr are shown below. Please read the error output, resolve
|
1405
|
+
it and try again. If the problem persists, please install rsync
|
1406
|
+
manually within the guest.
|
1407
|
+
|
1408
|
+
Command: %{command}
|
1409
|
+
Stdout: %{stdout}
|
1410
|
+
Stderr: %{stderr}
|
1411
|
+
rsync_not_found: |-
|
1412
|
+
"rsync" could not be found on your PATH. Make sure that rsync
|
1413
|
+
is properly installed on your system and available on the PATH.
|
1414
|
+
rsync_not_installed_in_guest: |-
|
1415
|
+
"rsync" was not detected as installed in your guest machine. This
|
1416
|
+
is required for rsync synced folders to work. In addition to this,
|
1417
|
+
Vagrant doesn't know how to automatically install rsync for your
|
1418
|
+
machine, so you must do this manually.
|
1419
|
+
scp_permission_denied: |-
|
1420
|
+
Failed to upload a file to the guest VM via SCP due to a permissions
|
1421
|
+
error. This is normally because the SSH user doesn't have permission
|
1422
|
+
to write to the destination location. Alternately, the user running
|
1423
|
+
Vagrant on the host machine may not have permission to read the file.
|
1424
|
+
|
1425
|
+
Source: %{from}
|
1426
|
+
Dest: %{to}
|
1427
|
+
scp_unavailable: |-
|
1428
|
+
SSH server on the guest doesn't support SCP. Please install the necessary
|
1429
|
+
software to enable SCP on your guest operating system.
|
1430
|
+
shared_folder_create_failed: |-
|
1431
|
+
Failed to create the following shared folder on the host system. This is
|
1432
|
+
usually because Vagrant does not have sufficient permissions to create
|
1433
|
+
the folder.
|
1434
|
+
|
1435
|
+
%{path}
|
1436
|
+
|
1437
|
+
Please create the folder manually or specify another path to share.
|
1438
|
+
shell_expand_failed: |-
|
1439
|
+
Vagrant failed to determine the shell expansion of a guest path
|
1440
|
+
(probably for one of your shared folders). This is an extremely rare
|
1441
|
+
error case and most likely indicates an unusual configuration of the
|
1442
|
+
guest system. Please report a bug with your Vagrantfile and debug log.
|
1443
|
+
snapshot_force: |-
|
1444
|
+
You must include the `--force` option to replace an existing snapshot.
|
1445
|
+
snapshot_not_supported: |-
|
1446
|
+
This provider doesn't support snapshots.
|
1447
|
+
|
1448
|
+
This may be intentional or this may be a bug. If this provider
|
1449
|
+
should support snapshots, then please report this as a bug to the
|
1450
|
+
maintainer of the provider.
|
1451
|
+
snapshot_not_found: |-
|
1452
|
+
The snapshot name `%{snapshot_name}` was not found for the
|
1453
|
+
virtual machine `%{machine}`.
|
1454
|
+
ssh_authentication_failed: |-
|
1455
|
+
SSH authentication failed! This is typically caused by the public/private
|
1456
|
+
keypair for the SSH user not being properly set on the guest VM. Please
|
1457
|
+
verify that the guest VM is setup with the proper public key, and that
|
1458
|
+
the private key path for Vagrant is setup properly as well.
|
1459
|
+
ssh_bad_exit_status: |-
|
1460
|
+
The following SSH command responded with a non-zero exit status.
|
1461
|
+
Vagrant assumes that this means the command failed!
|
1462
|
+
|
1463
|
+
%{command}
|
1464
|
+
|
1465
|
+
Stdout from the command:
|
1466
|
+
|
1467
|
+
%{stdout}
|
1468
|
+
|
1469
|
+
Stderr from the command:
|
1470
|
+
|
1471
|
+
%{stderr}
|
1472
|
+
ssh_bad_exit_status_muted: |-
|
1473
|
+
The SSH command responded with a non-zero exit status. Vagrant
|
1474
|
+
assumes that this means the command failed. The output for this command
|
1475
|
+
should be in the log above. Please read the output to determine what
|
1476
|
+
went wrong.
|
1477
|
+
ssh_channel_open_fail: |-
|
1478
|
+
Failed to open an SSH channel on the remote end! This typically
|
1479
|
+
means that the maximum number of active sessions was hit on the
|
1480
|
+
SSH server. Please configure your remote SSH server to resolve
|
1481
|
+
this issue.
|
1482
|
+
ssh_connect_eacces: |-
|
1483
|
+
SSH is getting permission denied errors when attempting to connect
|
1484
|
+
to the IP for SSH. This is usually caused by network rules and not being
|
1485
|
+
able to connect to the specified IP. Please try changing the IP on
|
1486
|
+
which the guest machine binds to for SSH.
|
1487
|
+
ssh_connection_refused: |-
|
1488
|
+
SSH connection was refused! This usually happens if the VM failed to
|
1489
|
+
boot properly. Some steps to try to fix this: First, try reloading your
|
1490
|
+
VM with `vagrant reload`, since a simple restart sometimes fixes things.
|
1491
|
+
If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
|
1492
|
+
followed by a `vagrant up`. If that doesn't work, contact a Vagrant
|
1493
|
+
maintainer (support channels listed on the website) for more assistance.
|
1494
|
+
ssh_connection_aborted: |-
|
1495
|
+
SSH connection was aborted! This usually happens when the machine is taking
|
1496
|
+
too long to reboot or the SSH daemon is not properly configured on the VM.
|
1497
|
+
First, try reloading your machine with `vagrant reload`, since a simple
|
1498
|
+
restart sometimes fixes things. If that doesn't work, destroy your machine
|
1499
|
+
and recreate it with a `vagrant destroy` followed by a `vagrant up`. If that
|
1500
|
+
doesn't work, contact support.
|
1501
|
+
ssh_connection_reset: |-
|
1502
|
+
SSH connection was reset! This usually happens when the machine is
|
1503
|
+
taking too long to reboot. First, try reloading your machine with
|
1504
|
+
`vagrant reload`, since a simple restart sometimes fixes things.
|
1505
|
+
If that doesn't work, destroy your machine and recreate it with
|
1506
|
+
a `vagrant destroy` followed by a `vagrant up`. If that doesn't work,
|
1507
|
+
contact support.
|
1508
|
+
ssh_connection_timeout: |-
|
1509
|
+
Vagrant timed out while attempting to connect via SSH. This usually
|
1510
|
+
means that the VM booted, but there are issues with the SSH configuration
|
1511
|
+
or network connectivity issues. Please try to `vagrant reload` or
|
1512
|
+
`vagrant up` again.
|
1513
|
+
ssh_disconnected: |-
|
1514
|
+
The SSH connection was unexpectedly closed by the remote end. This
|
1515
|
+
usually indicates that SSH within the guest machine was unable to
|
1516
|
+
properly start up. Please boot the VM in GUI mode to check whether
|
1517
|
+
it is booting properly.
|
1518
|
+
ssh_no_exit_status: |-
|
1519
|
+
The SSH command completed, but Vagrant did not receive an exit status.
|
1520
|
+
This indicates that the command was terminated unexpectedly. Please
|
1521
|
+
check that the VM has sufficient memory to run the command and that no
|
1522
|
+
processes were killed by the guest operating system.
|
1523
|
+
ssh_no_route: |-
|
1524
|
+
While attempting to connect with SSH, a "no route to host" (EHOSTUNREACH)
|
1525
|
+
error was received. Please verify your network settings are correct
|
1526
|
+
and try again.
|
1527
|
+
ssh_host_down: |-
|
1528
|
+
While attempting to connect with SSH, a "host is down" (EHOSTDOWN)
|
1529
|
+
error was received. Please verify your SSH settings are correct
|
1530
|
+
and try again.
|
1531
|
+
ssh_invalid_shell: |-
|
1532
|
+
The configured shell (config.ssh.shell) is invalid and unable
|
1533
|
+
to properly execute commands. The most common cause for this is
|
1534
|
+
using a shell that is unavailable on the system. Please verify
|
1535
|
+
you're using the full path to the shell and that the shell is
|
1536
|
+
executable by the SSH user.
|
1537
|
+
ssh_insert_key_unsupported: |-
|
1538
|
+
Vagrant is configured to generate a random keypair and insert it
|
1539
|
+
onto the guest machine, but it appears Vagrant doesn't know how to do
|
1540
|
+
this with your guest OS. Please disable key insertion by setting
|
1541
|
+
`config.ssh.insert_key = false` in the Vagrantfile.
|
1542
|
+
|
1543
|
+
After doing so, run `vagrant reload` for the setting to take effect.
|
1544
|
+
|
1545
|
+
If you'd like Vagrant to learn how to insert keys on this OS, please
|
1546
|
+
open an issue with details about your environment.
|
1547
|
+
ssh_is_putty_link: |-
|
1548
|
+
The `ssh` executable found in the PATH is a PuTTY Link SSH client.
|
1549
|
+
Vagrant is only compatible with OpenSSH SSH clients. Please install
|
1550
|
+
an OpenSSH SSH client or manually SSH in using your existing client
|
1551
|
+
using the information below.
|
1552
|
+
|
1553
|
+
Host: %{host}
|
1554
|
+
Port: %{port}
|
1555
|
+
Username: %{username}
|
1556
|
+
Private key: %{key_path}
|
1557
|
+
ssh_key_bad_owner: |-
|
1558
|
+
The private key to connect to the machine via SSH must be owned
|
1559
|
+
by the user running Vagrant. This is a strict requirement from
|
1560
|
+
SSH itself. Please fix the following key to be owned by the user
|
1561
|
+
running Vagrant:
|
1562
|
+
|
1563
|
+
%{key_path}
|
1564
|
+
ssh_key_bad_permissions: |-
|
1565
|
+
The private key to connect to this box via SSH has invalid permissions
|
1566
|
+
set on it. The permissions of the private key should be set to 0600, otherwise SSH will
|
1567
|
+
ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
|
1568
|
+
permissions on the following file to 0600 and then try running this command again:
|
1569
|
+
|
1570
|
+
%{key_path}
|
1571
|
+
|
1572
|
+
Note that this error occurs after Vagrant automatically tries to
|
1573
|
+
do this for you. The likely cause of this error is a lack of filesystem
|
1574
|
+
permissions or even filesystem functionality. For example, if your
|
1575
|
+
Vagrant data is on a USB stick, a common case is that chmod is
|
1576
|
+
not supported. The key will need to be moved to a filesystem that
|
1577
|
+
supports chmod.
|
1578
|
+
ssh_key_type_not_supported: |-
|
1579
|
+
The private key you're attempting to use with this Vagrant box uses
|
1580
|
+
an unsupported encryption type. The SSH library Vagrant uses does not support
|
1581
|
+
this key type. Please use `ssh-rsa` or `ssh-dss` instead. Note that
|
1582
|
+
sometimes keys in your ssh-agent can interfere with this as well,
|
1583
|
+
so verify the keys are valid there in addition to standard
|
1584
|
+
file paths.
|
1585
|
+
ssh_not_ready: |-
|
1586
|
+
The provider for this Vagrant-managed machine is reporting that it
|
1587
|
+
is not yet ready for SSH. Depending on your provider this can carry
|
1588
|
+
different meanings. Make sure your machine is created and running and
|
1589
|
+
try again. Additionally, check the output of `vagrant status` to verify
|
1590
|
+
that the machine is in the state that you expect. If you continue to
|
1591
|
+
get this error message, please view the documentation for the provider
|
1592
|
+
you're using.
|
1593
|
+
ssh_run_requires_keys: |-
|
1594
|
+
Using `vagrant ssh -c` requires key-based SSH authentication, but your
|
1595
|
+
Vagrant environment is configured to use only password-based authentication.
|
1596
|
+
Please configure your Vagrantfile with a private key to use this
|
1597
|
+
feature.
|
1598
|
+
|
1599
|
+
Note that Vagrant can automatically insert a keypair and use that
|
1600
|
+
keypair for you. Just set `config.ssh.insert_key = true` in your
|
1601
|
+
Vagrantfile.
|
1602
|
+
ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
|
1603
|
+
ssh_unavailable_windows: |-
|
1604
|
+
`ssh` executable not found in any directories in the %PATH% variable. Is an
|
1605
|
+
SSH client installed? Try installing Cygwin, MinGW or Git, all of which
|
1606
|
+
contain an SSH client. Or use your favorite SSH client with the following
|
1607
|
+
authentication information shown below:
|
1608
|
+
|
1609
|
+
Host: %{host}
|
1610
|
+
Port: %{port}
|
1611
|
+
Username: %{username}
|
1612
|
+
Private key: %{key_path}
|
1613
|
+
synced_folder_unusable: |-
|
1614
|
+
The synced folder type '%{type}' is reporting as unusable for
|
1615
|
+
your current setup. Please verify you have all the proper
|
1616
|
+
prerequisites for using this shared folder type and try again.
|
1617
|
+
|
1618
|
+
test_key: |-
|
1619
|
+
test value
|
1620
|
+
triggers_run_fail: |-
|
1621
|
+
Trigger run failed
|
1622
|
+
triggers_guest_not_running: |-
|
1623
|
+
Could not run remote script on %{machine_name} because its state is %{state}
|
1624
|
+
triggers_guest_not_exist: |-
|
1625
|
+
Could not run remote script on guest because it does not exist.
|
1626
|
+
triggers_bad_exit_codes: |-
|
1627
|
+
A script exited with an unacceptable exit code %{code}.
|
1628
|
+
triggers_no_block_given: |-
|
1629
|
+
There was an error parsing the Vagrantfile:
|
1630
|
+
No config was given for the trigger(s) %{command}.
|
1631
|
+
triggers_no_stage_given: |-
|
1632
|
+
The incorrect stage was given to the trigger plugin:
|
1633
|
+
Guest: %{guest_name}
|
1634
|
+
Name: %{name}
|
1635
|
+
Type: %{type}
|
1636
|
+
Stage: %{stage}
|
1637
|
+
|
1638
|
+
This is an internal error that should be reported as a bug.
|
1639
|
+
|
1640
|
+
ui_expects_tty: |-
|
1641
|
+
Vagrant is attempting to interface with the UI in a way that requires
|
1642
|
+
a TTY. Most actions in Vagrant that require a TTY have configuration
|
1643
|
+
switches to disable this requirement. Please do that or run Vagrant
|
1644
|
+
with TTY.
|
1645
|
+
unimplemented_provider_action: |-
|
1646
|
+
Vagrant attempted to call the action '%{action}' on the provider
|
1647
|
+
'%{provider}', but this provider doesn't support this action. This
|
1648
|
+
is probably a bug in either the provider or the plugin calling this
|
1649
|
+
action, and should be reported.
|
1650
|
+
upload_invalid_compression_type: |-
|
1651
|
+
The compression type requested for upload (`%{type}`) is not a
|
1652
|
+
supported value. Try uploading again using a valid compression
|
1653
|
+
type.
|
1654
|
+
|
1655
|
+
Supported types: %{valid_types}
|
1656
|
+
upload_missing_extract_capability: |-
|
1657
|
+
The guest does not provide extraction capability for the requested
|
1658
|
+
compression type (`%{type}`). Try a different compression type or
|
1659
|
+
upload without compression.
|
1660
|
+
upload_missing_temp_capability: |-
|
1661
|
+
The guest does not provide temporary path capabilities. Please
|
1662
|
+
try the upload again without requesting a temporary path.
|
1663
|
+
upload_source_missing: |-
|
1664
|
+
The source path provided for upload cannot be found. Please validate
|
1665
|
+
the source location for upload an try again.
|
1666
|
+
|
1667
|
+
Source Path: %{source}
|
1668
|
+
uploader_error: |-
|
1669
|
+
An error occurred while uploading the file. The error
|
1670
|
+
message, if any, is reproduced below. Please fix this error and try
|
1671
|
+
again.
|
1672
|
+
|
1673
|
+
exit code: %{exit_code}
|
1674
|
+
%{message}
|
1675
|
+
uploader_interrupted: |-
|
1676
|
+
The upload was interrupted by an external signal. It did not
|
1677
|
+
complete.
|
1678
|
+
vagrant_locked: |-
|
1679
|
+
The requested Vagrant action is locked. This may be caused
|
1680
|
+
by other Vagrant processes attempting to do a similar action.
|
1681
|
+
|
1682
|
+
Lock file path: %{lock_file_path}
|
1683
|
+
vagrantfile_exists: |-
|
1684
|
+
`Vagrantfile` already exists in this directory. Remove it before
|
1685
|
+
running `vagrant init`.
|
1686
|
+
vagrantfile_load_error: |-
|
1687
|
+
There was an error loading a Vagrantfile. The file being loaded
|
1688
|
+
and the error message are shown below. This is usually caused by
|
1689
|
+
a syntax error.
|
1690
|
+
|
1691
|
+
Path: %{path}
|
1692
|
+
Line number: %{line}
|
1693
|
+
Message: %{exception_class}: %{message}
|
1694
|
+
vagrantfile_name_error: |-
|
1695
|
+
There was an error loading a Vagrantfile. The file being loaded
|
1696
|
+
and the error message are shown below. This is usually caused by
|
1697
|
+
an invalid or undefined variable.
|
1698
|
+
|
1699
|
+
Path: %{path}
|
1700
|
+
Line number: %{line}
|
1701
|
+
Message: %{message}
|
1702
|
+
vagrant_remote_error: |-
|
1703
|
+
%{msg}
|
1704
|
+
vagrantfile_syntax_error: |-
|
1705
|
+
There is a syntax error in the following Vagrantfile. The syntax error
|
1706
|
+
message is reproduced below for convenience:
|
1707
|
+
|
1708
|
+
%{file}
|
1709
|
+
vagrantfile_template_not_found_error: |-
|
1710
|
+
The Vagrantfile template '%{path}' does not exist. Please double check
|
1711
|
+
the template path and try again.
|
1712
|
+
vagrantfile_write_error: |-
|
1713
|
+
The user that is running Vagrant doesn't have the proper permissions
|
1714
|
+
to write a Vagrantfile to the specified location. Please ensure that
|
1715
|
+
you call `vagrant init` in a location where the proper permissions
|
1716
|
+
are in place to create a Vagrantfile.
|
1717
|
+
vagrant_version_bad: |-
|
1718
|
+
This Vagrant environment has specified that it requires the Vagrant
|
1719
|
+
version to satisfy the following version requirements:
|
1720
|
+
|
1721
|
+
%{requirements}
|
1722
|
+
|
1723
|
+
You are running Vagrant %{version}, which does not satisfy
|
1724
|
+
these requirements. Please change your Vagrant version or update
|
1725
|
+
the Vagrantfile to allow this Vagrant version. However, be warned
|
1726
|
+
that if the Vagrantfile has specified another version, it probably has
|
1727
|
+
good reason to do so, and changing that may cause the environment to
|
1728
|
+
not function properly.
|
1729
|
+
vboxmanage_error: |-
|
1730
|
+
There was an error while executing `VBoxManage`, a CLI used by Vagrant
|
1731
|
+
for controlling VirtualBox. The command and stderr is shown below.
|
1732
|
+
|
1733
|
+
Command: %{command}
|
1734
|
+
|
1735
|
+
Stderr: %{stderr}
|
1736
|
+
vboxmanage_launch_error: |-
|
1737
|
+
There was an error running VBoxManage. This is usually a permissions
|
1738
|
+
problem or installation problem with VirtualBox itself, and not Vagrant.
|
1739
|
+
Please note the error message below (if any), resolve the issue, and
|
1740
|
+
try Vagrant again.
|
1741
|
+
|
1742
|
+
%{message}
|
1743
|
+
vboxmanage_not_found_error: |-
|
1744
|
+
The "VBoxManage" command or one of its dependencies could not
|
1745
|
+
be found. Please verify VirtualBox is properly installed. You can verify
|
1746
|
+
everything is okay by running "VBoxManage --version" and verifying
|
1747
|
+
that the VirtualBox version is outputted.
|
1748
|
+
|
1749
|
+
If you're on Windows and just installed VirtualBox, you have to
|
1750
|
+
log out and log back in for the new environmental variables to take
|
1751
|
+
effect. If you're on Linux or Mac, verify your PATH contains the folder
|
1752
|
+
that has VBoxManage in it.
|
1753
|
+
virtualbox_broken_version_040214: |-
|
1754
|
+
Vagrant detected you have VirtualBox 4.2.14 installed. VirtualBox
|
1755
|
+
4.2.14 contains a critical bug which prevents it from working with
|
1756
|
+
Vagrant. VirtualBox 4.2.16+ fixes this problem. Please upgrade
|
1757
|
+
VirtualBox.
|
1758
|
+
virtualbox_config_not_found: |-
|
1759
|
+
Vagrant was unable to locate the configuration file for the requested
|
1760
|
+
VirtualBox VM. Verify the requested VM exists and try again.
|
1761
|
+
|
1762
|
+
UUID provided: %{uuid}
|
1763
|
+
virtualbox_disks_controller_not_found: |-
|
1764
|
+
Vagrant expected to find a storage controller called '%{name}',
|
1765
|
+
but there is no controller with this name attached to the current VM.
|
1766
|
+
If you have changed or removed any storage controllers, please restore
|
1767
|
+
them to their previous configuration.
|
1768
|
+
virtualbox_disks_no_supported_controllers: |-
|
1769
|
+
Vagrant was unable to detect a disk controller with any of the
|
1770
|
+
following supported types:
|
1771
|
+
|
1772
|
+
%{supported_types}
|
1773
|
+
|
1774
|
+
Please add one of the supported controller types in order to use the
|
1775
|
+
disk configuration feature.
|
1776
|
+
virtualbox_disks_defined_exceed_limit: |-
|
1777
|
+
VirtualBox only allows up to %{limit} disks to be attached to the
|
1778
|
+
storage controller '%{name}'. Please remove some disks from your disk
|
1779
|
+
configuration, or attach a new storage controller.
|
1780
|
+
virtualbox_disks_primary_not_found: |-
|
1781
|
+
Vagrant was not able to detect a primary disk attached to the main
|
1782
|
+
controller. Vagrant Disks requires that the primary disk be attached
|
1783
|
+
to the first port of the main controller in order to manage it.
|
1784
|
+
virtualbox_disks_unsupported_controller: |-
|
1785
|
+
An disk operation was attempted on the controller '%{controller_name}',
|
1786
|
+
but Vagrant doesn't support this type of disk controller.
|
1787
|
+
virtualbox_guest_property_not_found: |-
|
1788
|
+
Could not find a required VirtualBox guest property:
|
1789
|
+
%{guest_property}
|
1790
|
+
This is an internal error that should be reported as a bug.
|
1791
|
+
virtualbox_invalid_version: |-
|
1792
|
+
Vagrant has detected that you have a version of VirtualBox installed
|
1793
|
+
that is not supported by this version of Vagrant. Please install one of
|
1794
|
+
the supported versions listed below to use Vagrant:
|
1795
|
+
|
1796
|
+
%{supported_versions}
|
1797
|
+
|
1798
|
+
A Vagrant update may also be available that adds support for the version
|
1799
|
+
you specified. Please check www.vagrantup.com/downloads.html to download
|
1800
|
+
the latest version.
|
1801
|
+
virtualbox_kernel_module_not_loaded: |-
|
1802
|
+
VirtualBox is complaining that the kernel module is not loaded. Please
|
1803
|
+
run `VBoxManage --version` or open the VirtualBox GUI to see the error
|
1804
|
+
message which should contain instructions on how to fix this error.
|
1805
|
+
virtualbox_install_incomplete: |-
|
1806
|
+
VirtualBox is complaining that the installation is incomplete. Please
|
1807
|
+
run `VBoxManage --version` to see the error message which should contain
|
1808
|
+
instructions on how to fix this error.
|
1809
|
+
virtualbox_machine_folder_not_found: |-
|
1810
|
+
Vagrant failed to determine the machine folder on this host from
|
1811
|
+
the VirtualBox system information. Try running the command again.
|
1812
|
+
If this error persists, please report this error as a bug.
|
1813
|
+
virtualbox_mount_failed: |-
|
1814
|
+
Vagrant was unable to mount VirtualBox shared folders. This is usually
|
1815
|
+
because the filesystem "vboxsf" is not available. This filesystem is
|
1816
|
+
made available via the VirtualBox Guest Additions and kernel module.
|
1817
|
+
Please verify that these guest additions are properly installed in the
|
1818
|
+
guest. This is not a bug in Vagrant and is usually caused by a faulty
|
1819
|
+
Vagrant box. For context, the command attempted was:
|
1820
|
+
|
1821
|
+
%{command}
|
1822
|
+
|
1823
|
+
The error output from the command was:
|
1824
|
+
|
1825
|
+
%{output}
|
1826
|
+
virtualbox_mount_not_supported_bsd: |-
|
1827
|
+
Vagrant is not able to mount VirtualBox shared folders on BSD-based
|
1828
|
+
guests. BSD-based guests do not support the VirtualBox filesystem at
|
1829
|
+
this time.
|
1830
|
+
|
1831
|
+
To change the type of the default synced folder, specify the type as
|
1832
|
+
rsync or nfs:
|
1833
|
+
|
1834
|
+
config.vm.synced_folder ".", "/vagrant", type: "nfs" # or "rsync"
|
1835
|
+
|
1836
|
+
Alternatively, if you do not need to mount the default synced folder,
|
1837
|
+
you can also disable it entirely:
|
1838
|
+
|
1839
|
+
config.vm.synced_folder ".", "/vagrant", disabled: true
|
1840
|
+
|
1841
|
+
You can read more about Vagrant's synced folder types and the various
|
1842
|
+
configuration options on the Vagrant website.
|
1843
|
+
|
1844
|
+
This is not a bug in Vagrant.
|
1845
|
+
virtualbox_name_exists: |-
|
1846
|
+
The name of your virtual machine couldn't be set because VirtualBox
|
1847
|
+
is reporting another VM with that name already exists. Most of the
|
1848
|
+
time, this is because of an error with VirtualBox not cleaning up
|
1849
|
+
properly. To fix this, verify that no VMs with that name do exist
|
1850
|
+
(by opening the VirtualBox GUI). If they don't, then look at the
|
1851
|
+
folder in the error message from VirtualBox below and remove it
|
1852
|
+
if there isn't any information you need in there.
|
1853
|
+
|
1854
|
+
VirtualBox error:
|
1855
|
+
|
1856
|
+
%{stderr}
|
1857
|
+
virtualbox_no_name: |-
|
1858
|
+
Vagrant was unable to determine the recommended name for your
|
1859
|
+
VirtualBox VM. This is usually an issue with VirtualBox. The output
|
1860
|
+
from VirtualBox is shown below, which may contain an error to fix.
|
1861
|
+
The best way to fix this issue is usually to uninstall VirtualBox,
|
1862
|
+
restart your computer, then reinstall VirtualBox.
|
1863
|
+
|
1864
|
+
VirtualBox output:
|
1865
|
+
|
1866
|
+
%{output}
|
1867
|
+
virtualbox_no_room_for_high_level_network: |-
|
1868
|
+
There is no available slots on the VirtualBox VM for the configured
|
1869
|
+
high-level network interfaces. "private_network" and "public_network"
|
1870
|
+
network configurations consume a single network adapter slot on the
|
1871
|
+
VirtualBox VM. VirtualBox limits the number of slots to 8, and it
|
1872
|
+
appears that every slot is in use. Please lower the number of used
|
1873
|
+
network adapters.
|
1874
|
+
virtualbox_not_detected: |-
|
1875
|
+
Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
|
1876
|
+
Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
|
1877
|
+
this to be available on the PATH. If VirtualBox is installed, please find the
|
1878
|
+
`VBoxManage` binary and add it to the PATH environmental variable.
|
1879
|
+
virtualbox_user_mismatch: |-
|
1880
|
+
The VirtualBox VM was created with a user that doesn't match the
|
1881
|
+
current user running Vagrant. VirtualBox requires that the same user
|
1882
|
+
be used to manage the VM that was created. Please re-run Vagrant with
|
1883
|
+
that user. This is not a Vagrant issue.
|
1884
|
+
|
1885
|
+
The UID used to create the VM was: %{original_uid}
|
1886
|
+
Your UID is: %{uid}
|
1887
|
+
virtualbox_version_empty: |-
|
1888
|
+
Vagrant detected that VirtualBox appears installed on your system,
|
1889
|
+
but calls to detect the version are returning empty. This is often
|
1890
|
+
indicative of installation issues with VirtualBox. Please verify
|
1891
|
+
that VirtualBox is properly installed. As a final verification,
|
1892
|
+
please run the following command manually and verify a version is
|
1893
|
+
outputted:
|
1894
|
+
|
1895
|
+
%{vboxmanage} --version
|
1896
|
+
virtualbox_invalid_host_subnet: |-
|
1897
|
+
The IP address configured for the host-only network is not within the
|
1898
|
+
allowed ranges. Please update the address used to be within the allowed
|
1899
|
+
ranges and run the command again.
|
1900
|
+
|
1901
|
+
Address: %{address}
|
1902
|
+
Ranges: %{ranges}
|
1903
|
+
|
1904
|
+
Valid ranges can be modified in the /etc/vbox/networks.conf file. For
|
1905
|
+
more information including valid format see:
|
1906
|
+
|
1907
|
+
https://www.virtualbox.org/manual/ch06.html#network_hostonly
|
1908
|
+
vm_creation_required: |-
|
1909
|
+
VM must be created before running this command. Run `vagrant up` first.
|
1910
|
+
vm_inaccessible: |-
|
1911
|
+
Your VM has become "inaccessible." Unfortunately, this is a critical error
|
1912
|
+
with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
|
1913
|
+
and clear out your inaccessible virtual machines or find a way to fix
|
1914
|
+
them.
|
1915
|
+
vm_name_exists: |-
|
1916
|
+
A VirtualBox machine with the name '%{name}' already exists.
|
1917
|
+
Please use another name or delete the machine with the existing
|
1918
|
+
name, and try again.
|
1919
|
+
vm_no_match: |-
|
1920
|
+
No virtual machines matched the regular expression given.
|
1921
|
+
vm_not_found: |-
|
1922
|
+
A VM by the name of %{name} was not found.
|
1923
|
+
vm_not_running: |-
|
1924
|
+
VM must be running to open SSH connection. Run `vagrant up`
|
1925
|
+
to start the virtual machine.
|
1926
|
+
winrm_invalid_communicator: |-
|
1927
|
+
The winrm command requires a WinRM communicator to be used when connecting
|
1928
|
+
to the guest. Please update your configuration and try the command again.
|
1929
|
+
wsl_vagrant_version_mismatch: |-
|
1930
|
+
Vagrant cannot currently enable access to manage machines within the Windows
|
1931
|
+
environment because the version of Vagrant installed on Windows does not
|
1932
|
+
match this version of Vagrant running within the Windows Subsystem for Linux.
|
1933
|
+
Please ensure both installation of Vagrant are the same. If you do not want
|
1934
|
+
update your Vagrant installations you can disable Windows access by unsetting
|
1935
|
+
the `VAGRANT_WSL_ACCESS_WINDOWS_USER` environment variable.
|
1936
|
+
|
1937
|
+
Windows Vagrant version: %{windows_version}
|
1938
|
+
Windows Subsystem for Linux Vagrant version: %{wsl_version}
|
1939
|
+
wsl_vagrant_access_error: |-
|
1940
|
+
Vagrant will not operate outside the Windows Subsystem for Linux unless explicitly
|
1941
|
+
instructed. Due to the inability to enforce expected Linux file ownership and
|
1942
|
+
permissions on the Windows system, Vagrant will not make modifications to prevent
|
1943
|
+
unexpected errors. To learn more about this, and the options that are available,
|
1944
|
+
please refer to the Vagrant documentation:
|
1945
|
+
|
1946
|
+
https://www.vagrantup.com/docs/other/wsl.html
|
1947
|
+
wsl_virtualbox_windows_access: |-
|
1948
|
+
Vagrant is unable to use the VirtualBox provider from the Windows Subsystem for
|
1949
|
+
Linux without access to the Windows environment. Enabling this access must be
|
1950
|
+
done with caution and an understanding of the implications. For more information
|
1951
|
+
on enabling Windows access and using VirtualBox from the Windows Subsystem for
|
1952
|
+
Linux, please refer to the Vagrant documentation:
|
1953
|
+
|
1954
|
+
https://www.vagrantup.com/docs/other/wsl.html
|
1955
|
+
wsl_rootfs_not_found_error: |-
|
1956
|
+
Vagrant is unable to determine the location of this instance of the Windows
|
1957
|
+
Subsystem for Linux. If this error persists it may be resolved by destroying
|
1958
|
+
this subsystem and installing it again.
|
1959
|
+
#-------------------------------------------------------------------------------
|
1960
|
+
# Translations for config validation errors
|
1961
|
+
#-------------------------------------------------------------------------------
|
1962
|
+
config:
|
1963
|
+
disk:
|
1964
|
+
dvd_type_file_required:
|
1965
|
+
A 'file' option is required when defining a disk of type ':dvd' for guest '%{machine}'.
|
1966
|
+
dvd_type_primary: |-
|
1967
|
+
Disks of type ':dvd' cannot be defined as a primary disks. Please
|
1968
|
+
remove the 'primary' argument for disk '%{name}' on guest '%{machine}'.
|
1969
|
+
invalid_ext: |-
|
1970
|
+
Disk type '%{ext}' is not a valid disk extension for '%{name}'. Please pick one of the following supported disk types: %{exts}
|
1971
|
+
invalid_type: |-
|
1972
|
+
Disk type '%{type}' is not a valid type. Please pick one of the following supported disk types: %{types}
|
1973
|
+
invalid_size: |-
|
1974
|
+
Config option 'size' for disk '%{name}' on guest '%{machine}' is not an integer
|
1975
|
+
invalid_file_type: |-
|
1976
|
+
Disk config option 'file' for '%{machine}' is not a string.
|
1977
|
+
missing_file: |-
|
1978
|
+
Disk file '%{file_path}' for disk '%{name}' on machine '%{machine}' does not exist.
|
1979
|
+
missing_provider: |-
|
1980
|
+
Guest '%{machine}' using provider '%{provider_name}' has provider specific config options for a provider other than '%{provider_name}'. These provider config options will be ignored for this guest
|
1981
|
+
no_name_set: |-
|
1982
|
+
A 'name' option is required when defining a disk for guest '%{machine}'.
|
1983
|
+
common:
|
1984
|
+
bad_field: "The following settings shouldn't exist: %{fields}"
|
1985
|
+
chef:
|
1986
|
+
cookbooks_path_empty: |-
|
1987
|
+
Missing required value for `chef.cookbooks_path'.
|
1988
|
+
nodes_path_empty: |-
|
1989
|
+
Missing required value for `chef.nodes_path'.
|
1990
|
+
environment_path_missing: |-
|
1991
|
+
Environment path not found: %{path}
|
1992
|
+
nodes_path_missing: |-
|
1993
|
+
Path specified for `nodes_path` does not exist: %{path}
|
1994
|
+
environment_path_required: |-
|
1995
|
+
When 'environment' is specified, you must provide 'environments_path'.
|
1996
|
+
cookbooks_path_missing: |-
|
1997
|
+
Cookbook path doesn't exist: %{path}
|
1998
|
+
custom_config_path_missing: |-
|
1999
|
+
Path specified for "custom_config_path" does not exist.
|
2000
|
+
server_url_empty: "Chef Server URL must be populated."
|
2001
|
+
validation_key_path: "Validation key path must be valid path to your Chef Server validation key."
|
2002
|
+
loader:
|
2003
|
+
bad_v1_key: |-
|
2004
|
+
Unknown configuration section '%{key}'. If this section was part of
|
2005
|
+
a Vagrant 1.0.x plugin, note that 1.0.x plugins are incompatible with 1.1+.
|
2006
|
+
root:
|
2007
|
+
sensitive_bad_type: |-
|
2008
|
+
Invalid type provided for `sensitive`. The sensitive option expects a string
|
2009
|
+
or an array of strings.
|
2010
|
+
plugins_invalid_format: |-
|
2011
|
+
Invalid type provided for `plugins`.
|
2012
|
+
plugins_bad_key: |-
|
2013
|
+
Invalid plugin configuration detected for `%{plugin_name}` plugin.
|
2014
|
+
|
2015
|
+
Unknown keys: %{plugin_key}
|
2016
|
+
bad_key: |-
|
2017
|
+
Unknown configuration section '%{key}'.
|
2018
|
+
ssh:
|
2019
|
+
private_key_missing: "`private_key_path` file must exist: %{path}"
|
2020
|
+
paranoid_deprecated: |-
|
2021
|
+
The key `paranoid` is deprecated. Please use `verify_host_key`. Supported
|
2022
|
+
values are exactly the same, only the name of the option has changed.
|
2023
|
+
ssh_config_missing: "`config` file must exist: %{path}"
|
2024
|
+
connect_timeout_invalid_type: |-
|
2025
|
+
The `connect_timeout` key only accepts values of Integer type. Received
|
2026
|
+
`%{given}` type which cannot be converted to an Integer type.
|
2027
|
+
connect_timeout_invalid_value: |-
|
2028
|
+
The `connect_timeout` key only accepts values greater than 1 (received `%{given}`)
|
2029
|
+
triggers:
|
2030
|
+
bad_trigger_type: |-
|
2031
|
+
The type '%{type}' defined for trigger '%{trigger}' is not valid. Must be one of the following types: '%{types}'
|
2032
|
+
bad_command_warning: |-
|
2033
|
+
The command '%{cmd}' was not found for this trigger.
|
2034
|
+
name_bad_type: |-
|
2035
|
+
Invalid type set for `name` on trigger for command '%{cmd}'. `name` should be a String.
|
2036
|
+
info_bad_type: |-
|
2037
|
+
Invalid type set for `info` on trigger for command '%{cmd}'. `info` should be a String.
|
2038
|
+
warn_bad_type: |-
|
2039
|
+
Invalid type set for `warn` on trigger for command '%{cmd}'. `warn` should be a String.
|
2040
|
+
on_error_bad_type: |-
|
2041
|
+
Invalid type set for `on_error` on trigger for command '%{cmd}'. `on_error` can
|
2042
|
+
only be `:halt` (default) or `:continue`.
|
2043
|
+
abort_bad_type: |-
|
2044
|
+
Trigger option `abort` for command '%{cmd}' must be either set to
|
2045
|
+
`true` (defaults to exit code 1) or an integer to use as an exit code.
|
2046
|
+
abort_false_type: |-
|
2047
|
+
`false` is not a valid option for the `abort` option for a trigger. This
|
2048
|
+
will be ignored...
|
2049
|
+
exit_codes_bad_type: |-
|
2050
|
+
Invalid type set for `exit_codes` on trigger for command '%{cmd}'. `exit_codes` can
|
2051
|
+
only be a single integer or an array of integers.
|
2052
|
+
only_on_bad_type: |-
|
2053
|
+
Invalid type found for `only_on`. All values must be a `String` or `Regexp`.
|
2054
|
+
ruby_bad_type: |-
|
2055
|
+
Invalid type for `ruby` option on trigger for command '%{cmd}'. Only `proc`
|
2056
|
+
types are allowed.
|
2057
|
+
privileged_ignored: |-
|
2058
|
+
The `privileged` setting for option `run` for trigger command '%{command}' will be ignored and set to false.
|
2059
|
+
powershell_args_ignored: |-
|
2060
|
+
The setting `powershell_args` is not supported for the trigger option `run` and will be ignored.
|
2061
|
+
run:
|
2062
|
+
bad_type: |-
|
2063
|
+
Invalid type set for `run` on trigger for command '%{cmd}'. `run`
|
2064
|
+
must be a Hash.
|
2065
|
+
run_remote:
|
2066
|
+
bad_type: |-
|
2067
|
+
Invalid type set for `run` on trigger for command '%{cmd}'. `run`
|
2068
|
+
must be a Hash.
|
2069
|
+
|
2070
|
+
vm:
|
2071
|
+
bad_version: |-
|
2072
|
+
Invalid box version constraints: %{version}
|
2073
|
+
box_download_ca_cert_not_found: |-
|
2074
|
+
"box_download_ca_cert" file not found: %{path}
|
2075
|
+
box_download_ca_path_not_found: |-
|
2076
|
+
"box_download_ca_path" directory not found: %{path}
|
2077
|
+
box_download_checksum_blank: |-
|
2078
|
+
Checksum type specified but "box_download_checksum" is blank
|
2079
|
+
box_download_checksum_notblank: |-
|
2080
|
+
Checksum specified but must also specify "box_download_checksum_type"
|
2081
|
+
box_empty: "Box value for guest '%{machine_name}' is an empty string."
|
2082
|
+
box_missing: "A box must be specified."
|
2083
|
+
box_download_options_type: |-
|
2084
|
+
Found "box_download_options" specified as type '%{type}', should be a Hash
|
2085
|
+
box_download_options_not_converted: |-
|
2086
|
+
Something went wrong converting VM config `box_download_options`. Value for provided key '%{missing_key}' is invalid type. Should be String or Bool
|
2087
|
+
clone_and_box: "Only one of clone or box can be specified."
|
2088
|
+
config_type: "Found '%{option}' specified as type '%{given}', should be '%{required}'"
|
2089
|
+
hostname_invalid_characters: |-
|
2090
|
+
The hostname set for the VM '%{name}' should only contain letters, numbers,
|
2091
|
+
hyphens or dots. It cannot start with a hyphen or dot.
|
2092
|
+
ignore_provider_config: |-
|
2093
|
+
Ignoring provider config for validation...
|
2094
|
+
multiple_primary_disks_error: |-
|
2095
|
+
There are more than one primary disks defined for guest '%{name}'. Please ensure that only one disk has been defined as a primary disk.
|
2096
|
+
multiple_disk_files_error: |-
|
2097
|
+
The following disk files are used multiple times in the disk
|
2098
|
+
configuration for the VM '%{name}':
|
2099
|
+
|
2100
|
+
%{disk_files}
|
2101
|
+
|
2102
|
+
Each disk file may only be attached to a VM once.
|
2103
|
+
multiple_disk_names_error: |-
|
2104
|
+
The following disks names are defined multiple times in the disk
|
2105
|
+
configuration for the VM '%{name}':
|
2106
|
+
|
2107
|
+
%{disk_names}
|
2108
|
+
|
2109
|
+
Disk names must be unique.
|
2110
|
+
multiple_networks_set_hostname: "Multiple networks have set `:hostname`"
|
2111
|
+
name_invalid: |-
|
2112
|
+
The sub-VM name '%{name}' is invalid. Please don't use special characters.
|
2113
|
+
network_ip_ends_in_one: |-
|
2114
|
+
You assigned a static IP ending in ".1" to this machine.
|
2115
|
+
This is very often used by the router and can cause the
|
2116
|
+
network to not work properly. If the network doesn't work
|
2117
|
+
properly, try changing this IP.
|
2118
|
+
network_ip_required: |-
|
2119
|
+
An IP is required for a private network.
|
2120
|
+
network_fp_invalid_port: |-
|
2121
|
+
Ports to forward must be 1 to 65535
|
2122
|
+
network_fp_host_not_unique: |-
|
2123
|
+
Forwarded port '%{host}' (host port) is declared multiple times
|
2124
|
+
with the protocol '%{protocol}'.
|
2125
|
+
network_fp_requires_ports: |-
|
2126
|
+
Forwarded port definitions require a "host" and "guest" value
|
2127
|
+
network_type_invalid: |-
|
2128
|
+
Network type '%{type}' is invalid. Please use a valid network type.
|
2129
|
+
network_with_hostname_must_set_ip: "Network specified with `:hostname` must provide a static ip"
|
2130
|
+
provisioner_not_found: |-
|
2131
|
+
The '%{name}' provisioner could not be found.
|
2132
|
+
shared_folder_guestpath_duplicate: |-
|
2133
|
+
A shared folder guest path is used multiple times. Shared
|
2134
|
+
folders must all map to a unique guest path: %{path}
|
2135
|
+
shared_folder_guestpath_relative: |-
|
2136
|
+
The shared folder guest path must be absolute: %{path}
|
2137
|
+
shared_folder_hostpath_missing: |-
|
2138
|
+
The host path of the shared folder is missing: %{path}
|
2139
|
+
shared_folder_invalid_option_type: |-
|
2140
|
+
The type '%{type}' is not a valid synced folder type. If 'type' is not
|
2141
|
+
specified, Vagrant will automatically choose the best synced folder
|
2142
|
+
option for your guest. Otherwise, please pick from the following available options:
|
2143
|
+
|
2144
|
+
%{options}
|
2145
|
+
shared_folder_nfs_owner_group: |-
|
2146
|
+
Shared folders that have NFS enabled do not support owner/group
|
2147
|
+
attributes. Host path: %{path}
|
2148
|
+
shared_folder_mount_options_array: |-
|
2149
|
+
Shared folder mount options specified by 'mount_options' must
|
2150
|
+
be an array of options.
|
2151
|
+
shared_folder_requires_guestpath_or_name: |-
|
2152
|
+
Shared folder options must include a guestpath and/or name.
|
2153
|
+
shared_folder_wsl_not_drvfs: |-
|
2154
|
+
The host path of the shared folder is not supported from WSL. Host
|
2155
|
+
path of the shared folder must be located on a file system with
|
2156
|
+
DrvFs type. Host path: %{path}
|
2157
|
+
|
2158
|
+
#-------------------------------------------------------------------------------
|
2159
|
+
# Translations for guests
|
2160
|
+
#-------------------------------------------------------------------------------
|
2161
|
+
guests:
|
2162
|
+
capabilities:
|
2163
|
+
rebooting: |-
|
2164
|
+
Waiting for machine to reboot...
|
2165
|
+
|
2166
|
+
#-------------------------------------------------------------------------------
|
2167
|
+
# Translations for commands. e.g. `vagrant x`
|
2168
|
+
#-------------------------------------------------------------------------------
|
2169
|
+
commands:
|
2170
|
+
deprecated: |-
|
2171
|
+
[DEPRECATION WARNING]: The Vagrant command 'vagrant %{name}' is scheduled be
|
2172
|
+
deprecated in an upcoming Vagrant release.
|
2173
|
+
common:
|
2174
|
+
vm_already_running: |-
|
2175
|
+
VirtualBox VM is already running.
|
2176
|
+
vm_not_created: "VM not created. Moving on..."
|
2177
|
+
vm_not_running: "VM is not currently running. Please, first bring it up with `vagrant up` then run this command."
|
2178
|
+
box:
|
2179
|
+
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
2180
|
+
remove_in_use_query: |-
|
2181
|
+
Box '%{name}' (v%{version}) with provider '%{provider}' appears
|
2182
|
+
to still be in use by at least one Vagrant environment. Removing
|
2183
|
+
the box could corrupt the environment. We recommend destroying
|
2184
|
+
these environments first:
|
2185
|
+
|
2186
|
+
%{users}
|
2187
|
+
|
2188
|
+
Are you sure you want to remove this box? [y/N]
|
2189
|
+
removing: |-
|
2190
|
+
Removing box '%{name}' (v%{version}) with provider '%{provider}'...
|
2191
|
+
destroy:
|
2192
|
+
confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
|
2193
|
+
will_not_destroy: |-
|
2194
|
+
The VM '%{name}' will not be destroyed, since the confirmation
|
2195
|
+
was declined.
|
2196
|
+
warning: |-
|
2197
|
+
Destroying guests with `--parallel` automatically enables `--force`.
|
2198
|
+
Press ctrl-c to cancel.
|
2199
|
+
init:
|
2200
|
+
success: |-
|
2201
|
+
A `Vagrantfile` has been placed in this directory. You are now
|
2202
|
+
ready to `vagrant up` your first virtual environment! Please read
|
2203
|
+
the comments in the Vagrantfile as well as documentation on
|
2204
|
+
`vagrantup.com` for more information on using Vagrant.
|
2205
|
+
plugin:
|
2206
|
+
expunge_confirm: |-
|
2207
|
+
|
2208
|
+
This command permanently deletes all currently installed user plugins. It
|
2209
|
+
should only be used when a repair command is unable to properly fix the
|
2210
|
+
system.
|
2211
|
+
|
2212
|
+
Continue?
|
2213
|
+
expunge_request_reinstall: |-
|
2214
|
+
Would you like Vagrant to attempt to reinstall current plugins?
|
2215
|
+
expunge_complete: |-
|
2216
|
+
|
2217
|
+
All user installed plugins have been removed from this Vagrant environment!
|
2218
|
+
expunge_reinstall: |-
|
2219
|
+
|
2220
|
+
Vagrant will now attempt to reinstall user plugins that were removed.
|
2221
|
+
expunge_aborted: |-
|
2222
|
+
|
2223
|
+
Vagrant expunge has been declined. Skipping removal of plugins.
|
2224
|
+
installed_license: |-
|
2225
|
+
The license for '%{name}' was successfully installed!
|
2226
|
+
installing_license: |-
|
2227
|
+
Installing license for '%{name}'...
|
2228
|
+
no_plugins: |-
|
2229
|
+
No plugins installed.
|
2230
|
+
plugin_require: " - Custom entrypoint: %{require}"
|
2231
|
+
plugin_version: " - Version Constraint: %{version}"
|
2232
|
+
installed: |-
|
2233
|
+
Installed the plugin '%{name} (%{version})'!
|
2234
|
+
installing: |-
|
2235
|
+
Installing the '%{name}' plugin. This can take a few minutes...
|
2236
|
+
uninstalling: |-
|
2237
|
+
Uninstalling the '%{name}' plugin...
|
2238
|
+
up_to_date: |-
|
2239
|
+
All plugins are up to date.
|
2240
|
+
updated: |-
|
2241
|
+
Updated '%{name}' to version '%{version}'!
|
2242
|
+
updating: |-
|
2243
|
+
Updating installed plugins...
|
2244
|
+
updating_specific: |-
|
2245
|
+
Updating plugins: %{names}. This may take a few minutes...
|
2246
|
+
post_install: |-
|
2247
|
+
Post install message from the '%{name}' plugin:
|
2248
|
+
|
2249
|
+
%{message}
|
2250
|
+
repairing: |-
|
2251
|
+
Repairing currently installed global plugins. This may take a few minutes...
|
2252
|
+
repairing_local: |-
|
2253
|
+
Repairing currently installed local project plugins. This may take a few minutes...
|
2254
|
+
repair_complete: |-
|
2255
|
+
Installed plugins successfully repaired!
|
2256
|
+
repair_local_complete: |-
|
2257
|
+
Local project plugins successfully repaired!
|
2258
|
+
repair_failed: |-
|
2259
|
+
Failed to automatically repair installed Vagrant plugins. To fix this
|
2260
|
+
problem remove all user installed plugins and reinstall. Vagrant can
|
2261
|
+
do this for you automatically by running the following command:
|
2262
|
+
|
2263
|
+
vagrant plugin expunge --reinstall
|
2264
|
+
|
2265
|
+
Failure message received during repair:
|
2266
|
+
|
2267
|
+
%{message}
|
2268
|
+
snapshot:
|
2269
|
+
not_supported: |-
|
2270
|
+
This provider doesn't support snapshots.
|
2271
|
+
|
2272
|
+
This may be intentional or this may be a bug. If this provider
|
2273
|
+
should support snapshots, then please report this as a bug to the
|
2274
|
+
maintainer of the provider.
|
2275
|
+
no_push_snapshot: |-
|
2276
|
+
No pushed snapshot found!
|
2277
|
+
|
2278
|
+
Use `vagrant snapshot push` to push a snapshot to restore to.
|
2279
|
+
save:
|
2280
|
+
vm_not_created: |-
|
2281
|
+
Machine '%{name}' has not been created yet, and therefore cannot save snapshots. Skipping...
|
2282
|
+
status:
|
2283
|
+
aborted: |-
|
2284
|
+
The VM is in an aborted state. This means that it was abruptly
|
2285
|
+
stopped without properly closing the session. Run `vagrant up`
|
2286
|
+
to resume this virtual machine. If any problems persist, you may
|
2287
|
+
have to destroy and restart the virtual machine.
|
2288
|
+
gurumeditation: |-
|
2289
|
+
The VM is in the "guru meditation" state. This is a rare case which means
|
2290
|
+
that an internal error in VirtualBox caused the VM to fail. This is always
|
2291
|
+
the sign of a bug in VirtualBox. You can try to bring your VM back online
|
2292
|
+
with a `vagrant up`.
|
2293
|
+
inaccessible: |-
|
2294
|
+
The VM is inaccessible! This is a rare case which means that VirtualBox
|
2295
|
+
can't find your VM configuration. This usually happens when upgrading
|
2296
|
+
VirtualBox, moving to a new computer, etc. Please consult VirtualBox
|
2297
|
+
for how to handle this issue.
|
2298
|
+
output: |-
|
2299
|
+
Current machine states:
|
2300
|
+
|
2301
|
+
%{states}
|
2302
|
+
|
2303
|
+
%{message}
|
2304
|
+
not_created: |-
|
2305
|
+
The environment has not yet been created. Run `vagrant up` to
|
2306
|
+
create the environment. If a machine is not created, only the
|
2307
|
+
default provider will be shown. So if a provider is not listed,
|
2308
|
+
then the machine is not created for that environment.
|
2309
|
+
paused: |-
|
2310
|
+
The VM is paused. This VM may have been paused via the VirtualBox
|
2311
|
+
GUI or the VBoxManage command line interface. To unpause, please
|
2312
|
+
use the VirtualBox GUI and/or VBoxManage command line interface so
|
2313
|
+
that vagrant would be able to control the VM again.
|
2314
|
+
poweroff: |-
|
2315
|
+
The VM is powered off. To restart the VM, simply run `vagrant up`
|
2316
|
+
stopping: |-
|
2317
|
+
The VM is stopping.
|
2318
|
+
running: |-
|
2319
|
+
The VM is running. To stop this VM, you can run `vagrant halt` to
|
2320
|
+
shut it down forcefully, or you can run `vagrant suspend` to simply
|
2321
|
+
suspend the virtual machine. In either case, to restart it again,
|
2322
|
+
simply run `vagrant up`.
|
2323
|
+
saving: |-
|
2324
|
+
The VM is currently saving its state. In a few moments this state
|
2325
|
+
should transition to "saved." Please run `vagrant status` again
|
2326
|
+
in a few seconds.
|
2327
|
+
saved: |-
|
2328
|
+
To resume this VM, simply run `vagrant up`.
|
2329
|
+
stuck: |-
|
2330
|
+
The VM is "stuck!" This is a very rare state which means that
|
2331
|
+
VirtualBox is unable to recover the current state of the VM.
|
2332
|
+
The only known solution to this problem is to restart your
|
2333
|
+
machine, sorry.
|
2334
|
+
listing: |-
|
2335
|
+
This environment represents multiple VMs. The VMs are all listed
|
2336
|
+
above with their current state. For more information about a specific
|
2337
|
+
VM, run `vagrant status NAME`.
|
2338
|
+
up:
|
2339
|
+
upping: |-
|
2340
|
+
Bringing machine '%{name}' up with '%{provider}' provider...
|
2341
|
+
upload:
|
2342
|
+
compress: |-
|
2343
|
+
Compressing %{source} to %{type} for upload...
|
2344
|
+
complete: |-
|
2345
|
+
Upload has completed successfully!
|
2346
|
+
|
2347
|
+
Source: %{source}
|
2348
|
+
Destination: %{destination}
|
2349
|
+
decompress: |-
|
2350
|
+
Decompressing %{type} upload to %{destination}...
|
2351
|
+
start: |-
|
2352
|
+
Uploading %{source} to %{destination}
|
2353
|
+
validate:
|
2354
|
+
success: |-
|
2355
|
+
Vagrantfile validated successfully.
|
2356
|
+
|
2357
|
+
#-------------------------------------------------------------------------------
|
2358
|
+
# Translations for Vagrant middleware actions
|
2359
|
+
#-------------------------------------------------------------------------------
|
2360
|
+
cap:
|
2361
|
+
cleanup_disks:
|
2362
|
+
disk_cleanup: |-
|
2363
|
+
Disk '%{name}' no longer exists in Vagrant config. Removing and closing medium from guest...
|
2364
|
+
disk_not_found: |-
|
2365
|
+
Disk '%{name}' could not be found, and could not be properly removed. Please remove this disk manually if it still exists
|
2366
|
+
configure_disks:
|
2367
|
+
create_disk: |-
|
2368
|
+
Disk '%{name}' not found in guest. Creating and attaching disk to guest...
|
2369
|
+
floppy_not_supported: "Floppy disk configuration not yet supported. Skipping disk '%{name}'..."
|
2370
|
+
shrink_size_not_supported: |-
|
2371
|
+
VirtualBox does not support shrinking disk sizes. Cannot shrink '%{name}' disks size.
|
2372
|
+
resize_disk: |-
|
2373
|
+
Disk '%{name}' needs to be resized. Resizing disk...
|
2374
|
+
recovery_from_resize: |-
|
2375
|
+
Vagrant has encountered an exception while trying to resize a disk. It will now attempt to reattach the original disk, as to prevent any data loss.
|
2376
|
+
The original disk is located at %{location}
|
2377
|
+
If Vagrant fails to reattach the original disk, it is recommended that you open the VirtualBox GUI and navigate to the current guests settings for '%{name}' and look at the 'storage' section. Here is where you can reattach a missing disk if Vagrant fails to do so...
|
2378
|
+
recovery_attached_disks: |-
|
2379
|
+
Disk has been reattached. Vagrant will now continue on an raise the exception receieved
|
2380
|
+
start: "Configuring storage mediums..."
|
2381
|
+
cloud_init:
|
2382
|
+
content_type_not_set: |-
|
2383
|
+
'content_type' must be defined for a cloud_init config. Guest '%{machine}'
|
2384
|
+
has not defined a 'content_type' for its cloud_init config. Valid options
|
2385
|
+
supported by Vagrant are listed below:
|
2386
|
+
|
2387
|
+
%{accepted_types}
|
2388
|
+
incorrect_content_type: |-
|
2389
|
+
Content-type "%{content_type}" is not supported by Vagrant and
|
2390
|
+
cloud-init on machine '%{machine}'. Valid options supported by Vagrant are
|
2391
|
+
listed below:
|
2392
|
+
|
2393
|
+
%{accepted_types}
|
2394
|
+
incorrect_inline_type: |-
|
2395
|
+
The inline config cloud_init option for guest '%{machine}' is of type '%{type}', but
|
2396
|
+
should be a String.
|
2397
|
+
incorrect_path_type: |-
|
2398
|
+
The path '%{path}' given for guest '%{machine}' is of type '%{type}'.
|
2399
|
+
Config option 'path' must be a String.
|
2400
|
+
incorrect_type_set: |-
|
2401
|
+
The type '%{type}' defined for a cloud_init config with guest '%{machine}'
|
2402
|
+
is not a valid type. Currently, Vagrant only supports type: '%{default_type}'.
|
2403
|
+
path_and_inline_set: |-
|
2404
|
+
Guest '%{machine}' defines both a 'path' and 'inline' for its cloud_init config,
|
2405
|
+
however only one config option should be defined for cloud_init.
|
2406
|
+
path_invalid: |-
|
2407
|
+
The path '%{path}' defined for guest '%{machine}' cloud_init config was
|
2408
|
+
not found on the system.
|
2409
|
+
actions:
|
2410
|
+
runner:
|
2411
|
+
waiting_cleanup: "Waiting for cleanup before exiting..."
|
2412
|
+
exit_immediately: "Exiting immediately, without cleanup!"
|
2413
|
+
disk:
|
2414
|
+
cleanup_provider_unsupported: |-
|
2415
|
+
Guest provider '%{provider}' does not support the cleaning up disks, and will not attempt to clean up attached disks on the guest..
|
2416
|
+
provider_unsupported: |-
|
2417
|
+
Guest provider '%{provider}' does not support the disk feature, and will not use the disk configuration defined.
|
2418
|
+
vm:
|
2419
|
+
boot:
|
2420
|
+
booting: Booting VM...
|
2421
|
+
bridged_networking:
|
2422
|
+
available: |-
|
2423
|
+
Available bridged network interfaces:
|
2424
|
+
bridging: |-
|
2425
|
+
Bridging adapter #%{adapter} to '%{bridge}'
|
2426
|
+
enabling: |-
|
2427
|
+
Enabling bridged network...
|
2428
|
+
preparing: |-
|
2429
|
+
Preparing bridged networking...
|
2430
|
+
choice_help: |-
|
2431
|
+
When choosing an interface, it is usually the one that is
|
2432
|
+
being used to connect to the internet.
|
2433
|
+
select_interface: |-
|
2434
|
+
Which interface should the network bridge to?
|
2435
|
+
specific_not_found: |-
|
2436
|
+
Specific bridge '%{bridge}' not found. You may be asked to specify
|
2437
|
+
which network to bridge to.
|
2438
|
+
check_box:
|
2439
|
+
not_found: |-
|
2440
|
+
Box '%{name}' was not found. Fetching box from specified URL for
|
2441
|
+
the provider '%{provider}'. Note that if the URL does not have
|
2442
|
+
a box for this provider, you should interrupt Vagrant now and add
|
2443
|
+
the box yourself. Otherwise Vagrant will attempt to download the
|
2444
|
+
full box prior to discovering this error.
|
2445
|
+
check_guest_additions:
|
2446
|
+
not_detected: |-
|
2447
|
+
No guest additions were detected on the base box for this VM! Guest
|
2448
|
+
additions are required for forwarded ports, shared folders, host only
|
2449
|
+
networking, and more. If SSH fails on this machine, please install
|
2450
|
+
the guest additions and repackage the box to continue.
|
2451
|
+
|
2452
|
+
This is not an error message; everything may continue to work properly,
|
2453
|
+
in which case you may ignore this message.
|
2454
|
+
version_mismatch: |-
|
2455
|
+
The guest additions on this VM do not match the installed version of
|
2456
|
+
VirtualBox! In most cases this is fine, but in rare cases it can
|
2457
|
+
prevent things such as shared folders from working properly. If you see
|
2458
|
+
shared folder errors, please make sure the guest additions within the
|
2459
|
+
virtual machine match the version of VirtualBox you have installed on
|
2460
|
+
your host and reload your VM.
|
2461
|
+
|
2462
|
+
Guest Additions Version: %{guest_version}
|
2463
|
+
VirtualBox Version: %{virtualbox_version}
|
2464
|
+
clear_forward_ports:
|
2465
|
+
deleting: Clearing any previously set forwarded ports...
|
2466
|
+
clear_network_interfaces:
|
2467
|
+
deleting: Clearing any previously set network interfaces...
|
2468
|
+
clear_shared_folders:
|
2469
|
+
deleting: Cleaning previously set shared folders...
|
2470
|
+
clone:
|
2471
|
+
setup_master: Preparing master VM for linked clones...
|
2472
|
+
setup_master_detail: |-
|
2473
|
+
This is a one time operation. Once the master VM is prepared,
|
2474
|
+
it will be used as a base for linked clones, making the creation
|
2475
|
+
of new VMs take milliseconds on a modern system.
|
2476
|
+
creating: Cloning VM...
|
2477
|
+
failure: Creation of the linked clone failed.
|
2478
|
+
create_master:
|
2479
|
+
failure: |-
|
2480
|
+
Failed to create lock-file for master VM creation for box %{box}.
|
2481
|
+
cloud_init_user_data_setup: |-
|
2482
|
+
Preparing user data for cloud-init...
|
2483
|
+
customize:
|
2484
|
+
failure: |-
|
2485
|
+
A customization command failed:
|
2486
|
+
|
2487
|
+
%{command}
|
2488
|
+
|
2489
|
+
The following error was experienced:
|
2490
|
+
|
2491
|
+
%{error}
|
2492
|
+
|
2493
|
+
Please fix this customization and try again.
|
2494
|
+
running: Running '%{event}' VM customizations...
|
2495
|
+
destroy:
|
2496
|
+
destroying: Destroying VM and associated drives...
|
2497
|
+
destroy_network:
|
2498
|
+
destroying: Destroying unused networking interface...
|
2499
|
+
disable_networks:
|
2500
|
+
disabling: Disabling host only networks...
|
2501
|
+
discard_state:
|
2502
|
+
discarding: Discarding saved state of VM...
|
2503
|
+
export:
|
2504
|
+
create_dir: Creating temporary directory for export...
|
2505
|
+
exporting: Exporting VM...
|
2506
|
+
power_off: "The Vagrant virtual environment you are trying to package must be powered off."
|
2507
|
+
forward_ports:
|
2508
|
+
auto_empty: |-
|
2509
|
+
Vagrant found a port collision for the specified port and virtual machine.
|
2510
|
+
While this port was marked to be auto-corrected, the ports in the
|
2511
|
+
auto-correction range are all also used.
|
2512
|
+
|
2513
|
+
VM: %{vm_name}
|
2514
|
+
Forwarded port: %{guest_port} => %{host_port}
|
2515
|
+
collision_error: |-
|
2516
|
+
Vagrant cannot forward the specified ports on this VM, since they
|
2517
|
+
would collide with some other application that is already listening
|
2518
|
+
on these ports. The forwarded port to %{host_port} is already in use
|
2519
|
+
on the host machine.
|
2520
|
+
|
2521
|
+
To fix this, modify your current project's Vagrantfile to use another
|
2522
|
+
port. Example, where '1234' would be replaced by a unique host port:
|
2523
|
+
|
2524
|
+
config.vm.network :forwarded_port, guest: %{guest_port}, host: 1234
|
2525
|
+
|
2526
|
+
Sometimes, Vagrant will attempt to auto-correct this for you. In this
|
2527
|
+
case, Vagrant was unable to. This is usually because the guest machine
|
2528
|
+
is in a state which doesn't allow modifying port forwarding. You could
|
2529
|
+
try 'vagrant reload' (equivalent of running a halt followed by an up)
|
2530
|
+
so vagrant can attempt to auto-correct this upon booting. Be warned
|
2531
|
+
that any unsaved work might be lost.
|
2532
|
+
|
2533
|
+
fixed_collision: |-
|
2534
|
+
Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
|
2535
|
+
forwarding: Forwarding ports...
|
2536
|
+
forwarding_entry: |-
|
2537
|
+
%{guest_port} (guest) => %{host_port} (host) (adapter %{adapter})
|
2538
|
+
host_ip_not_found: |-
|
2539
|
+
You are trying to forward a host IP that does not exist. Please set `host_ip`
|
2540
|
+
to the address of an existing IPv4 network interface, or remove the option
|
2541
|
+
from your port forward configuration.
|
2542
|
+
|
2543
|
+
VM: %{name}
|
2544
|
+
Host IP: %{host_ip}
|
2545
|
+
non_nat: |-
|
2546
|
+
VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
|
2547
|
+
forwards on this adapter.
|
2548
|
+
privileged_ports: |-
|
2549
|
+
You are trying to forward to privileged ports (ports <= 1024). Most
|
2550
|
+
operating systems restrict this to only privileged process (typically
|
2551
|
+
processes running as an administrative user). This is a warning in case
|
2552
|
+
the port forwarding doesn't work. If any problems occur, please try a
|
2553
|
+
port higher than 1024.
|
2554
|
+
halt:
|
2555
|
+
force: |-
|
2556
|
+
Forcing shutdown of VM...
|
2557
|
+
graceful: |-
|
2558
|
+
Attempting graceful shutdown of VM...
|
2559
|
+
guest_not_ready: |-
|
2560
|
+
Guest communication could not be established! This is usually because
|
2561
|
+
SSH is not running, the authentication information was changed,
|
2562
|
+
or some other networking issue. Vagrant will force halt, if
|
2563
|
+
capable.
|
2564
|
+
hostname:
|
2565
|
+
setting: "Setting hostname..."
|
2566
|
+
import:
|
2567
|
+
importing: Importing base box '%{name}'...
|
2568
|
+
failure: |-
|
2569
|
+
The VM import failed! Try running `VBoxManage import` on the box file
|
2570
|
+
manually for more verbose error output.
|
2571
|
+
match_mac:
|
2572
|
+
matching: Matching MAC address for NAT networking...
|
2573
|
+
generating: Generating MAC address for NAT networking...
|
2574
|
+
no_base_mac: |-
|
2575
|
+
No base MAC address was specified. This is required for the NAT networking
|
2576
|
+
to work properly (and hence port forwarding, SSH, etc.). Specifying this
|
2577
|
+
MAC address is typically up to the box and box maintainer. Please contact
|
2578
|
+
the relevant person to solve this issue.
|
2579
|
+
network:
|
2580
|
+
configuring: |-
|
2581
|
+
Configuring and enabling network interfaces...
|
2582
|
+
dhcp_already_attached: |-
|
2583
|
+
A host only network interface you're attempting to configure via DHCP
|
2584
|
+
already has a conflicting host only adapter with DHCP enabled. The
|
2585
|
+
DHCP on this adapter is incompatible with the DHCP settings. Two
|
2586
|
+
host only network interfaces are not allowed to overlap, and each
|
2587
|
+
host only network interface can have only one DHCP server. Please
|
2588
|
+
reconfigure your host only network or remove the virtual machine
|
2589
|
+
using the other host only network.
|
2590
|
+
preparing: |-
|
2591
|
+
Preparing network interfaces based on configuration...
|
2592
|
+
cleanup_vbox_default_dhcp: |-
|
2593
|
+
Found default DHCP server from initial VirtualBox install. Cleaning it up...
|
2594
|
+
host_only_network:
|
2595
|
+
collides: |-
|
2596
|
+
The specified host network collides with a non-hostonly network!
|
2597
|
+
This will cause your specified IP to be inaccessible. Please change
|
2598
|
+
the IP or name of your host only network so that it no longer matches that of
|
2599
|
+
a bridged or non-hostonly network.
|
2600
|
+
|
2601
|
+
Bridged Network Address: '%{netaddr}'
|
2602
|
+
Host-only Network '%{interface_name}': '%{that_netaddr}'
|
2603
|
+
creating: "Creating new host only network for environment..."
|
2604
|
+
enabling: "Enabling host only network..."
|
2605
|
+
not_found: |-
|
2606
|
+
The specified host network could not be found: '%{name}.'
|
2607
|
+
If the name specification is removed, Vagrant will create a new
|
2608
|
+
host only network for you. Alternatively, please create the
|
2609
|
+
specified network manually.
|
2610
|
+
preparing: "Preparing host only network..."
|
2611
|
+
nfs:
|
2612
|
+
exporting: Exporting NFS shared folders...
|
2613
|
+
installing: "Installing NFS client..."
|
2614
|
+
mounting: Mounting NFS shared folders...
|
2615
|
+
v4_with_udp_warning: |-
|
2616
|
+
|
2617
|
+
WARNING: Invalid NFS settings detected!
|
2618
|
+
|
2619
|
+
Detected UDP enabled with NFSv4. NFSv4 does not support UDP.
|
2620
|
+
If folder mount fails disable UDP using the following option:
|
2621
|
+
|
2622
|
+
nfs_udp: false
|
2623
|
+
|
2624
|
+
For more information see:
|
2625
|
+
RFC5661: https://tools.ietf.org/html/rfc5661#section-2.9.1
|
2626
|
+
RFC7530: https://tools.ietf.org/html/rfc7530#section-3.1
|
2627
|
+
smb:
|
2628
|
+
mfsymlink_warning: |-
|
2629
|
+
Vagrant is currently configured to mount SMB folders with the
|
2630
|
+
`mfsymlink` option enabled. This is equivalent to adding the
|
2631
|
+
following to your Vagrantfile:
|
2632
|
+
|
2633
|
+
config.vm.synced_folder '/host/path', '/guest/path', type: "smb", mount_options: ['mfsymlink']
|
2634
|
+
|
2635
|
+
This option may be globally disabled with an environment variable:
|
2636
|
+
|
2637
|
+
VAGRANT_DISABLE_SMBMFSYMLINKS=1
|
2638
|
+
|
2639
|
+
provision:
|
2640
|
+
beginning: "Running provisioner: %{provisioner}..."
|
2641
|
+
disabled_by_config: |-
|
2642
|
+
Machine not provisioned because `--no-provision` is specified.
|
2643
|
+
disabled_by_sentinel: |-
|
2644
|
+
Machine already provisioned. Run `vagrant provision` or use the `--provision`
|
2645
|
+
flag to force provisioning. Provisioners marked to run always will still run.
|
2646
|
+
file:
|
2647
|
+
locations: "%{src} => %{dst}"
|
2648
|
+
resume:
|
2649
|
+
resuming: Resuming suspended VM...
|
2650
|
+
unpausing: |-
|
2651
|
+
Unpausing the VM...
|
2652
|
+
share_folders:
|
2653
|
+
creating: Creating shared folders metadata...
|
2654
|
+
mounting: Mounting shared folders...
|
2655
|
+
mounting_entry: "%{guestpath} => %{hostpath}"
|
2656
|
+
nomount_entry: "Automounting disabled: %{hostpath}"
|
2657
|
+
set_default_nic_type:
|
2658
|
+
e1000_warning: |-
|
2659
|
+
Vagrant has detected a configuration issue which exposes a
|
2660
|
+
vulnerability with the installed version of VirtualBox. The
|
2661
|
+
current guest is configured to use an E1000 NIC type for a
|
2662
|
+
network adapter which is vulnerable in this version of VirtualBox.
|
2663
|
+
Ensure the guest is trusted to use this configuration or update
|
2664
|
+
the NIC type using one of the methods below:
|
2665
|
+
|
2666
|
+
https://www.vagrantup.com/docs/virtualbox/configuration.html#default-nic-type
|
2667
|
+
https://www.vagrantup.com/docs/virtualbox/networking.html#virtualbox-nic-type
|
2668
|
+
set_name:
|
2669
|
+
setting_name: |-
|
2670
|
+
Setting the name of the VM: %{name}
|
2671
|
+
snapshot:
|
2672
|
+
deleting: |-
|
2673
|
+
Deleting the snapshot '%{name}'...
|
2674
|
+
deleted: |-
|
2675
|
+
Snapshot deleted!
|
2676
|
+
list_none: |-
|
2677
|
+
No snapshots have been taken yet!
|
2678
|
+
list_none_detail: |-
|
2679
|
+
You can take a snapshot using `vagrant snapshot save`. Note that
|
2680
|
+
not all providers support this yet. Once a snapshot is taken, you
|
2681
|
+
can list them using this command, and use commands such as
|
2682
|
+
`vagrant snapshot restore` to go back to a certain snapshot.
|
2683
|
+
restoring: |-
|
2684
|
+
Restoring the snapshot '%{name}'...
|
2685
|
+
saving: |-
|
2686
|
+
Snapshotting the machine as '%{name}'...
|
2687
|
+
saved: |-
|
2688
|
+
Snapshot saved! You can restore the snapshot at any time by
|
2689
|
+
using `vagrant snapshot restore`. You can delete it using
|
2690
|
+
`vagrant snapshot delete`.
|
2691
|
+
suspend:
|
2692
|
+
suspending: Saving VM state and suspending execution...
|
2693
|
+
|
2694
|
+
box:
|
2695
|
+
unpackage:
|
2696
|
+
untar_failure: |-
|
2697
|
+
The box failed to unpackage properly. Please verify that the box
|
2698
|
+
file you're trying to add is not corrupted and that enough disk space
|
2699
|
+
is available and then try again.
|
2700
|
+
The output from attempting to unpackage (if any):
|
2701
|
+
|
2702
|
+
%{output}
|
2703
|
+
add:
|
2704
|
+
adding: |-
|
2705
|
+
Extracting box...
|
2706
|
+
checksumming: |-
|
2707
|
+
Calculating and comparing box checksum...
|
2708
|
+
destroy:
|
2709
|
+
destroying: "Deleting box '%{name}'..."
|
2710
|
+
download:
|
2711
|
+
cleaning: "Cleaning up downloaded box..."
|
2712
|
+
download_failed: |-
|
2713
|
+
Download failed. Will try another box URL if there is one.
|
2714
|
+
interrupted: "Box download was interrupted. Exiting."
|
2715
|
+
resuming: "Box download is resuming from prior download progress"
|
2716
|
+
verify:
|
2717
|
+
verifying: "Verifying box..."
|
2718
|
+
failed: |-
|
2719
|
+
The box file you're attempting to add is invalid. This can be
|
2720
|
+
commonly attributed to typos in the path given to the box add
|
2721
|
+
command. Another common case of this is invalid packaging of the
|
2722
|
+
box itself.
|
2723
|
+
|
2724
|
+
general:
|
2725
|
+
package:
|
2726
|
+
packaging: "Packaging additional file: %{file}"
|
2727
|
+
compressing: "Compressing package to: %{fullpath}"
|
2728
|
+
box_folder: "Creating new folder: %{folder_path}"
|
2729
|
+
output_exists: |-
|
2730
|
+
The specified file '%{filename}' to save the package as already exists. Please
|
2731
|
+
remove this file or specify a different file name for outputting.
|
2732
|
+
output_is_directory: |-
|
2733
|
+
The specified output is a directory. Please specify a path including
|
2734
|
+
a filename.
|
2735
|
+
requires_directory: |-
|
2736
|
+
A directory was not specified to package. This should never happen
|
2737
|
+
and is a result of an internal inconsistency. Please report a bug
|
2738
|
+
on the Vagrant bug tracker.
|
2739
|
+
include_file_missing: |-
|
2740
|
+
Package include file doesn't exist: %{file}
|
2741
|
+
|
2742
|
+
hosts:
|
2743
|
+
bsd:
|
2744
|
+
nfs_export: |-
|
2745
|
+
Preparing to edit /etc/exports. Administrator privileges will be required...
|
2746
|
+
nfs_prune: |-
|
2747
|
+
Pruning invalid NFS exports. Administrator privileges will be required...
|
2748
|
+
darwin:
|
2749
|
+
virtualbox_install_download: |-
|
2750
|
+
Downloading VirtualBox %{version}...
|
2751
|
+
virtualbox_install_detail: |-
|
2752
|
+
This may not be the latest version of VirtualBox, but it is a version
|
2753
|
+
that is known to work well. Over time, we'll update the version that
|
2754
|
+
is installed.
|
2755
|
+
virtualbox_install_install: |-
|
2756
|
+
Installing VirtualBox. This will take a few minutes...
|
2757
|
+
virtualbox_install_install_detail: |-
|
2758
|
+
You may be asked for your administrator password during this time.
|
2759
|
+
If you're uncomfortable entering your password here, please install
|
2760
|
+
VirtualBox manually.
|
2761
|
+
virtualbox_install_success: |-
|
2762
|
+
VirtualBox has successfully been installed!
|
2763
|
+
linux:
|
2764
|
+
nfs_export: |-
|
2765
|
+
Preparing to edit /etc/exports. Administrator privileges will be required...
|
2766
|
+
nfs_prune: |-
|
2767
|
+
Pruning invalid NFS exports. Administrator privileges will be required...
|
2768
|
+
arch:
|
2769
|
+
nfs_export:
|
2770
|
+
prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
|
2771
|
+
windows:
|
2772
|
+
virtualbox_install_download: |-
|
2773
|
+
Downloading VirtualBox %{version}...
|
2774
|
+
virtualbox_install_detail: |-
|
2775
|
+
This may not be the latest version of VirtualBox, but it is a version
|
2776
|
+
that is known to work well. Over time, we'll update the version that
|
2777
|
+
is installed.
|
2778
|
+
virtualbox_install_install: |-
|
2779
|
+
Installing VirtualBox. This will take a few minutes...
|
2780
|
+
virtualbox_install_install_detail: |-
|
2781
|
+
A couple pop-ups will occur during this installation process to
|
2782
|
+
ask for admin privileges as well as to install Oracle drivers.
|
2783
|
+
Please say yes to both. If you're uncomfortable with this, please
|
2784
|
+
install VirtualBox manually.
|
2785
|
+
virtualbox_install_success: |-
|
2786
|
+
VirtualBox has successfully been installed!
|
2787
|
+
|
2788
|
+
provisioners:
|
2789
|
+
base:
|
2790
|
+
both_before_after_set: |-
|
2791
|
+
Dependency provisioners cannot currently set both `before` and `after` options.
|
2792
|
+
dependency_provisioner_dependency: |-
|
2793
|
+
Dependency provisioner "%{name}" relies on another dependency provisioner "%{dep_name}". This is currently not supported.
|
2794
|
+
invalid_alias_value: |-
|
2795
|
+
Provisioner option `%{opt}` is not set as a valid type. Must be a string, or one of the alias shortcuts: %{alias}
|
2796
|
+
missing_provisioner_name: |-
|
2797
|
+
Could not find provisioner name `%{name}` defined for machine `%{machine_name}` to run provisioner "%{provisioner_name}" `%{action}`.
|
2798
|
+
wrong_type: |-
|
2799
|
+
Provisioner option `%{opt}` is not set as a valid type. Must be a %{type}.
|
2800
|
+
chef:
|
2801
|
+
chef_not_detected: |-
|
2802
|
+
The chef binary (either `chef-solo` or `chef-client`) was not found on
|
2803
|
+
the VM and is required for chef provisioning. Please verify that chef
|
2804
|
+
is installed and that the binary is available on the PATH.
|
2805
|
+
cookbooks_folder_not_found_warning:
|
2806
|
+
"The cookbook path '%{path}' doesn't exist. Ignoring..."
|
2807
|
+
nodes_folder_not_found_warning:
|
2808
|
+
"The node path '%{path}' doesn't exist. Ignoring..."
|
2809
|
+
data_bags_folder_not_found_warning:
|
2810
|
+
"The databag path '%{path}' doesn't exist. Ignoring..."
|
2811
|
+
roles_folder_not_found_warning:
|
2812
|
+
"The role path '%{path}' doesn't exist. Ignoring..."
|
2813
|
+
environments_folder_not_found_warning:
|
2814
|
+
"The environment path '%{path}' doesn't exist. Ignoring..."
|
2815
|
+
json: "Generating chef JSON and uploading..."
|
2816
|
+
client_key_folder: "Creating folder to hold client key..."
|
2817
|
+
generating_node_name: |-
|
2818
|
+
Auto-generating node name for Chef...
|
2819
|
+
using_hostname_node_name: |-
|
2820
|
+
Using hostname "%{hostname}" as node name for Chef...
|
2821
|
+
install_failed: |-
|
2822
|
+
Vagrant could not detect Chef on the guest! Even after Vagrant
|
2823
|
+
attempted to install Chef, it could still not find Chef on the system.
|
2824
|
+
Please make sure you are connected to the Internet and can access
|
2825
|
+
Chef's package distribution servers. If you already have Chef
|
2826
|
+
installed on this guest, you can disable the automatic Chef detection
|
2827
|
+
by setting the 'install' option in the Chef configuration section of
|
2828
|
+
your Vagrantfile:
|
2829
|
+
|
2830
|
+
chef.install = false
|
2831
|
+
log_level_empty: |-
|
2832
|
+
The Chef provisioner requires a log level. If you did not set a
|
2833
|
+
log level, this is probably a bug and should be reported.
|
2834
|
+
upload_validation_key: "Uploading chef client validation key..."
|
2835
|
+
upload_encrypted_data_bag_secret_key: "Uploading chef encrypted data bag secret key..."
|
2836
|
+
recipe_empty: |-
|
2837
|
+
Chef Apply provisioning requires that the `config.chef.recipe` be set
|
2838
|
+
to a string containing the recipe contents you want to execute on the
|
2839
|
+
guest.
|
2840
|
+
running_client: "Running chef-client..."
|
2841
|
+
running_client_again: "Running chef-client again (failed to converge)..."
|
2842
|
+
running_apply: "Running chef-apply..."
|
2843
|
+
running_solo: "Running chef-solo..."
|
2844
|
+
running_solo_again: "Running chef-solo again (failed to converge)..."
|
2845
|
+
running_zero: "Running chef-client (local-mode)..."
|
2846
|
+
running_zero_again: "Running chef-client (local-mode) again (failed to converge)..."
|
2847
|
+
missing_shared_folders: |-
|
2848
|
+
Shared folders that Chef requires are missing on the virtual machine.
|
2849
|
+
This is usually due to configuration changing after already booting the
|
2850
|
+
machine. The fix is to run a `vagrant reload` so that the proper shared
|
2851
|
+
folders will be prepared and mounted on the VM.
|
2852
|
+
no_convergence: |-
|
2853
|
+
Chef never successfully completed! Any errors should be visible in the
|
2854
|
+
output above. Please fix your recipes so that they properly complete.
|
2855
|
+
not_detected: |-
|
2856
|
+
The `%{binary}` binary appears not to be in the PATH of the guest. This
|
2857
|
+
could be because the PATH is not properly setup or perhaps chef is not
|
2858
|
+
installed on this guest. Chef provisioning can not continue without
|
2859
|
+
chef properly installed.
|
2860
|
+
server_url_required: |-
|
2861
|
+
Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
|
2862
|
+
URL of your chef server. Examples include "http://12.12.12.12:4000" and
|
2863
|
+
"http://example.com:4000" (the port of course can be different, but 4000 is the default)
|
2864
|
+
server_validation_key_required: |-
|
2865
|
+
Chef server provisioning requires that the `config.chef.validation_key_path` configuration
|
2866
|
+
be set to a path on your local machine of the validation key used to register the
|
2867
|
+
VM with the chef server.
|
2868
|
+
server_validation_key_doesnt_exist: |-
|
2869
|
+
The validation key set for `config.chef.validation_key_path` does not exist! This
|
2870
|
+
file needs to exist so it can be uploaded to the virtual machine.
|
2871
|
+
upload_path_empty: |-
|
2872
|
+
The Chef Apply provisioner requires that the `config.chef.upload_path`
|
2873
|
+
be set to a non-nil, non-empty value.
|
2874
|
+
missing_node_name: |-
|
2875
|
+
The Chef Client provisioner cannot delete the %{deletable} from
|
2876
|
+
the Chef server because Vagrant does not know the `node_name'! You
|
2877
|
+
need to manually delete the %{deletable} from the Chef server. You
|
2878
|
+
can specify the `node_name' in the Chef configuration to prevent this
|
2879
|
+
in the future.
|
2880
|
+
deleting_from_server: "Deleting %{deletable} \"%{name}\" from Chef server..."
|
2881
|
+
|
2882
|
+
file:
|
2883
|
+
no_dest_file: "File destination must be specified."
|
2884
|
+
no_source_file: "File source must be specified."
|
2885
|
+
path_invalid: "File upload source file %{path} must exist"
|
2886
|
+
|
2887
|
+
puppet:
|
2888
|
+
not_detected: |-
|
2889
|
+
The `%{binary}` binary appears not to be in the PATH of the guest. This
|
2890
|
+
could be because the PATH is not properly setup or perhaps Puppet is not
|
2891
|
+
installed on this guest. Puppet provisioning can not continue without
|
2892
|
+
Puppet properly installed.
|
2893
|
+
running_puppet: "Running Puppet with %{manifest}..."
|
2894
|
+
running_puppet_env: "Running Puppet with environment %{environment}..."
|
2895
|
+
manifest_missing: |-
|
2896
|
+
The configured Puppet manifest is missing. Please specify a path to an
|
2897
|
+
existing manifest:
|
2898
|
+
|
2899
|
+
%{manifest}
|
2900
|
+
environment_missing: |-
|
2901
|
+
The configured Puppet environment folder %{environment} was not found in the
|
2902
|
+
specified environmentpath %{environmentpath}.
|
2903
|
+
Please specify a path to an existing Puppet directory environment.
|
2904
|
+
environment_path_missing: "The environment path specified for Puppet does not exist: %{path}"
|
2905
|
+
manifests_path_missing: "The manifests path specified for Puppet does not exist: %{path}"
|
2906
|
+
missing_shared_folders: |-
|
2907
|
+
Shared folders that Puppet requires are missing on the virtual machine.
|
2908
|
+
This is usually due to configuration changing after already booting the
|
2909
|
+
machine. The fix is to run a `vagrant reload` so that the proper shared
|
2910
|
+
folders will be prepared and mounted on the VM.
|
2911
|
+
module_path_missing: "The configured module path doesn't exist: %{path}"
|
2912
|
+
|
2913
|
+
puppet_server:
|
2914
|
+
cert_requires_node: |-
|
2915
|
+
"puppet_node" is required when a client cert or key is specified
|
2916
|
+
client_cert_and_private_key: |-
|
2917
|
+
Both a client certificate and private key must be specified, if any
|
2918
|
+
client_cert_not_found: |-
|
2919
|
+
The specified client cert path could not be found
|
2920
|
+
client_private_key_not_found: |-
|
2921
|
+
The specified client private key path could not be found
|
2922
|
+
not_detected: |-
|
2923
|
+
The `%{binary}` binary appears not to be in the PATH of the guest. This
|
2924
|
+
could be because the PATH is not properly setup or perhaps Puppet is not
|
2925
|
+
installed on this guest. Puppet provisioning can not continue without
|
2926
|
+
Puppet properly installed.
|
2927
|
+
running_puppetd: "Running Puppet agent..."
|
2928
|
+
uploading_client_cert: |-
|
2929
|
+
Uploading client certificate and private key...
|
2930
|
+
|
2931
|
+
shell:
|
2932
|
+
args_bad_type: "Shell provisioner `args` must be a string or array."
|
2933
|
+
invalid_encoding: |-
|
2934
|
+
Invalid encoding '%{actual}' for script at '%{path}'.
|
2935
|
+
Must be '%{default}' or UTF-8.
|
2936
|
+
env_must_be_a_hash: |-
|
2937
|
+
The shell provisioner's `env' option must be a hash.
|
2938
|
+
no_path_or_inline: "One of `path` or `inline` must be set."
|
2939
|
+
path_and_inline_set: "Only one of `path` or `inline` may be set."
|
2940
|
+
path_invalid: "`path` for shell provisioner does not exist on the host system: %{path}"
|
2941
|
+
running: "Running: %{script}"
|
2942
|
+
runningas: "Running: %{local} as %{remote}"
|
2943
|
+
upload_path_not_set: "`upload_path` must be set for the shell provisioner."
|
2944
|
+
interactive_not_elevated: "To be interactive, it must also be privileged."
|
2945
|
+
|
2946
|
+
ansible:
|
2947
|
+
ansible_host_pattern_detected: |-
|
2948
|
+
Vagrant has detected a host range pattern in the `groups` option.
|
2949
|
+
Vagrant doesn't fully check the validity of these parameters!
|
2950
|
+
|
2951
|
+
Please check https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#inventory-basics-formats-hosts-and-groups
|
2952
|
+
for more information.
|
2953
|
+
cannot_detect: |-
|
2954
|
+
Vagrant does not support detecting whether Ansible is installed
|
2955
|
+
for the guest OS running in the machine. Vagrant will assume it is
|
2956
|
+
installed and attempt to continue.
|
2957
|
+
|
2958
|
+
If you'd like this provisioner to be improved, please
|
2959
|
+
take a look at the Vagrant source code linked below and try
|
2960
|
+
to contribute back support. Thank you!
|
2961
|
+
|
2962
|
+
https://github.com/hashicorp/vagrant
|
2963
|
+
errors:
|
2964
|
+
ansible_command_failed: |-
|
2965
|
+
Ansible failed to complete successfully. Any error output should be
|
2966
|
+
visible above. Please fix these errors and try again.
|
2967
|
+
ansible_compatibility_mode_conflict: |-
|
2968
|
+
The requested Ansible compatibility mode (%{compatibility_mode}) is in conflict with
|
2969
|
+
the Ansible installation on your Vagrant %{system} system (currently: %{ansible_version}).
|
2970
|
+
See https://docs.vagrantup.com/v2/provisioning/ansible_common.html#compatibility_mode
|
2971
|
+
for more information.
|
2972
|
+
ansible_not_found_on_guest: |-
|
2973
|
+
The Ansible software could not be found! Please verify
|
2974
|
+
that Ansible is correctly installed on your guest system.
|
2975
|
+
|
2976
|
+
If you haven't installed Ansible yet, please install Ansible
|
2977
|
+
on your Vagrant basebox, or enable the automated setup with the
|
2978
|
+
ansible_local provisioner `install` option. Please check
|
2979
|
+
https://docs.vagrantup.com/v2/provisioning/ansible_local.html#install
|
2980
|
+
for more information.
|
2981
|
+
ansible_not_found_on_host: |-
|
2982
|
+
The Ansible software could not be found! Please verify
|
2983
|
+
that Ansible is correctly installed on your host system.
|
2984
|
+
|
2985
|
+
If you haven't installed Ansible yet, please install Ansible
|
2986
|
+
on your host system. Vagrant can't do this for you in a safe and
|
2987
|
+
automated way.
|
2988
|
+
Please check https://docs.ansible.com for more information.
|
2989
|
+
ansible_programming_error: |-
|
2990
|
+
Ansible Provisioner Programming Error:
|
2991
|
+
|
2992
|
+
%{message}
|
2993
|
+
|
2994
|
+
Internal Details:
|
2995
|
+
|
2996
|
+
%{details}
|
2997
|
+
|
2998
|
+
Sorry, but this Vagrant error should never occur.
|
2999
|
+
Please check https://github.com/hashicorp/vagrant/issues for any
|
3000
|
+
existing bug report. If needed, please create a new issue. Thank you!
|
3001
|
+
cannot_support_pip_install: |-
|
3002
|
+
Unfortunately Vagrant does not support yet installing Ansible
|
3003
|
+
from pip for the guest OS running in the machine.
|
3004
|
+
|
3005
|
+
If you'd like this provisioner to be improved, please
|
3006
|
+
take a look at the Vagrant source code linked below and try
|
3007
|
+
to contribute back support. Thank you!
|
3008
|
+
|
3009
|
+
https://github.com/hashicorp/vagrant
|
3010
|
+
ansible_version_mismatch: |-
|
3011
|
+
The requested Ansible version (%{required_version}) was not found on the %{system}.
|
3012
|
+
Please check the Ansible installation on your Vagrant %{system} system (currently: %{current_version}),
|
3013
|
+
or adapt the provisioner `version` option in your Vagrantfile.
|
3014
|
+
See https://docs.vagrantup.com/v2/provisioning/ansible_common.html#version
|
3015
|
+
for more information.
|
3016
|
+
config_file_not_found: |-
|
3017
|
+
`%{config_option}` does not exist on the %{system}: %{path}
|
3018
|
+
extra_vars_invalid: |-
|
3019
|
+
`extra_vars` must be a hash or a path to an existing file. Received: %{value} (as %{type})
|
3020
|
+
no_compatibility_mode: |-
|
3021
|
+
`compatibility_mode` must be a valid mode (possible values: %{valid_modes}).
|
3022
|
+
no_playbook: |-
|
3023
|
+
`playbook` file path must be set.
|
3024
|
+
raw_arguments_invalid: |-
|
3025
|
+
`raw_arguments` must be an array of strings. Received: %{value} (as %{type})
|
3026
|
+
raw_ssh_args_invalid: |-
|
3027
|
+
`raw_ssh_args` must be an array of strings. Received: %{value} (as %{type})
|
3028
|
+
installing: "Installing Ansible..."
|
3029
|
+
installing_pip: "Installing pip... (for Ansible installation)"
|
3030
|
+
running_galaxy: "Running ansible-galaxy..."
|
3031
|
+
running_playbook: "Running ansible-playbook..."
|
3032
|
+
windows_not_supported_for_control_machine: |-
|
3033
|
+
Windows is not officially supported for the Ansible Control Machine.
|
3034
|
+
Please check https://docs.ansible.com/intro_installation.html#control-machine-requirements
|
3035
|
+
compatibility_mode_not_detected: |-
|
3036
|
+
Vagrant gathered an unknown Ansible version:
|
3037
|
+
|
3038
|
+
%{gathered_version}
|
3039
|
+
and falls back on the compatibility mode '%{compatibility_mode}'.
|
3040
|
+
|
3041
|
+
Alternatively, the compatibility mode can be specified in your Vagrantfile:
|
3042
|
+
https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode
|
3043
|
+
compatibility_mode_warning: |-
|
3044
|
+
Vagrant has automatically selected the compatibility mode '%{compatibility_mode}'
|
3045
|
+
according to the Ansible version installed (%{ansible_version}).
|
3046
|
+
|
3047
|
+
Alternatively, the compatibility mode can be specified in your Vagrantfile:
|
3048
|
+
https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode
|
3049
|
+
|
3050
|
+
docker:
|
3051
|
+
wrong_provisioner: |-
|
3052
|
+
The Docker post-install provisioner cannot also take a Docker post-install
|
3053
|
+
provisioner
|
3054
|
+
not_running: "Docker is not running on the guest VM."
|
3055
|
+
install_failed: "Docker installation failed."
|
3056
|
+
|
3057
|
+
podman:
|
3058
|
+
wrong_provisioner: |-
|
3059
|
+
The Podman post-install provisioner cannot also take a Podman post-install
|
3060
|
+
provisioner
|
3061
|
+
install_failed: "Podman installation failed."
|
3062
|
+
|
3063
|
+
salt:
|
3064
|
+
minion_config_nonexist: |-
|
3065
|
+
The specified minion_config '%{missing_config_file}' file could not be found.
|
3066
|
+
master_config_nonexist: |-
|
3067
|
+
The specified master_config '%{missing_config_file}' file could not be found.
|
3068
|
+
grains_config_nonexist: |-
|
3069
|
+
The specified grains_config file could not be found.
|
3070
|
+
missing_key: |-
|
3071
|
+
You must include both public and private keys.
|
3072
|
+
must_accept_keys: |-
|
3073
|
+
You must accept keys when running highstate with master!
|
3074
|
+
args_array: |-
|
3075
|
+
You must set `args_array` value as an array.
|
3076
|
+
python_version: |-
|
3077
|
+
You must set `python_version` as an integer or string that represents an integer.
|
3078
|
+
version_type_missing: |-
|
3079
|
+
You must set the option `install_type` when specifying a `version`.
|
3080
|
+
salt_invalid_shasum_error: |-
|
3081
|
+
The bootstrap-salt script downloaded from '%{source}' couldn't be verified. Expected SHA256 '%{expected_sha}', but computed '%{computed_sha}'
|
3082
|
+
|
3083
|
+
pushes:
|
3084
|
+
file:
|
3085
|
+
no_destination: "File destination must be specified."
|
3086
|
+
|
3087
|
+
autocomplete:
|
3088
|
+
installed: |-
|
3089
|
+
Autocomplete installed at paths:
|
3090
|
+
- %{paths}
|
3091
|
+
not_installed: "Autocomplete not installed"
|