vagrant-unbundled 2.0.0.1 → 2.0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -2
- data/CHANGELOG.md +34 -0
- data/Gemfile.lock +10 -10
- data/README.md +2 -2
- data/contrib/sudoers/linux-suse +6 -7
- data/lib/vagrant/plugin/v2/command.rb +3 -0
- data/lib/vagrant/plugin/v2/communicator.rb +1 -1
- data/lib/vagrant/registry.rb +1 -1
- data/lib/vagrant/util/downloader.rb +1 -2
- data/lib/vagrant/util/is_port_open.rb +2 -1
- data/lib/vagrant/util/keypair.rb +1 -1
- data/lib/vagrant/util/platform.rb +39 -23
- data/plugins/commands/destroy/command.rb +31 -10
- data/plugins/communicators/ssh/communicator.rb +1 -0
- data/plugins/communicators/winrm/helper.rb +6 -1
- data/plugins/guests/solaris11/cap/change_host_name.rb +0 -2
- data/plugins/guests/solaris11/cap/configure_networks.rb +1 -7
- data/plugins/guests/solaris11/plugin.rb +5 -35
- data/plugins/guests/windows/cap/public_key.rb +2 -0
- data/plugins/guests/windows/guest_network.rb +3 -3
- data/plugins/guests/windows/scripts/reboot_detect.ps1 +5 -0
- data/plugins/providers/docker/driver.rb +1 -1
- data/plugins/providers/docker/executor/local.rb +4 -0
- data/plugins/providers/docker/executor/vagrant.rb +4 -0
- data/plugins/providers/hyperv/scripts/import_vm_vmcx.ps1 +1 -1
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_2.rb +16 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/providers/virtualbox/synced_folder.rb +1 -1
- data/plugins/provisioners/chef/provisioner/chef_client.rb +30 -23
- data/plugins/provisioners/chef/provisioner/chef_solo.rb +26 -19
- data/plugins/provisioners/chef/provisioner/chef_zero.rb +29 -22
- data/plugins/provisioners/puppet/provisioner/puppet.rb +23 -4
- data/plugins/provisioners/salt/bootstrap-salt.ps1 +15 -3
- data/plugins/provisioners/salt/bootstrap-salt.sh +2 -0
- data/plugins/provisioners/salt/config.rb +11 -0
- data/plugins/provisioners/salt/provisioner.rb +10 -7
- data/plugins/provisioners/shell/provisioner.rb +1 -1
- data/templates/locales/en.yml +5 -0
- data/test/unit/base.rb +2 -0
- data/test/unit/plugins/commands/destroy/command_test.rb +155 -0
- data/test/unit/plugins/communicators/winrm/helper_test.rb +33 -0
- data/test/unit/plugins/guests/solaris11/cap/change_host_name_test.rb +36 -0
- data/test/unit/plugins/guests/solaris11/cap/configure_networks_test.rb +56 -0
- data/test/unit/plugins/providers/virtualbox/synced_folder_test.rb +26 -0
- data/test/unit/plugins/provisioners/salt/config_test.rb +42 -0
- data/test/unit/plugins/provisioners/salt/provisioner_test.rb +16 -1
- data/test/unit/plugins/provisioners/shell/config_test.rb +3 -3
- data/test/unit/plugins/pushes/local-exec/config_test.rb +2 -2
- data/test/unit/vagrant/util/downloader_test.rb +28 -0
- data/test/unit/vagrant/util/platform_test.rb +58 -0
- data/vagrant.gemspec +1 -1
- data/vendor/bundle/ruby/2.4.0/bin/rwinrmcp +5 -0
- data/vendor/bundle/ruby/2.4.0/bin/vagrant +5 -0
- data/vendor/bundle/ruby/2.4.0/bin/vagrant-spec +5 -0
- data/vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-spec-af86757912f7/vagrant-spec.gemspec +3 -3
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/CHANGELOG.md +216 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/Gemfile +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/LICENSE.txt +202 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/README.md +121 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/Rakefile +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/data/unicode.data +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/idna/native.rb +59 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/idna/pure.rb +677 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/idna.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/template.rb +1065 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/uri.rb +2492 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable/version.rb +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/lib/addressable.rb +2 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/idna_spec.rb +298 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/net_http_compat_spec.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/rack_mount_compat_spec.rb +104 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/security_spec.rb +57 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/template_spec.rb +1419 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/addressable/uri_spec.rb +6468 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/spec/spec_helper.rb +21 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/clobber.rake +2 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/gem.rake +91 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/git.rake +45 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/metrics.rake +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/rspec.rake +21 -0
- data/vendor/bundle/ruby/2.4.0/gems/addressable-2.5.2/tasks/yard.rake +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/.gitignore +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/.rspec +1 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/.travis.yml +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/.yardopts +1 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/Gemfile +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/LICENSE +19 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/README.md +265 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/Rakefile +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/changelog.md +72 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/hashdiff.gemspec +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/diff.rb +232 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/lcs.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/linear_compare_array.rb +155 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/patch.rb +88 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/util.rb +146 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff/version.rb +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/lib/hashdiff.rb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/best_diff_spec.rb +74 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/diff_array_spec.rb +60 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/diff_spec.rb +339 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/lcs_spec.rb +75 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/linear_compare_array_spec.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/patch_spec.rb +183 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/hashdiff/util_spec.rb +78 -0
- data/vendor/bundle/ruby/2.4.0/gems/hashdiff-0.3.7/spec/spec_helper.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/CHANGELOG.md +250 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/CONTRIBUTING.md +46 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/LICENSE.md +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/README.md +122 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapter.rb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapter_error.rb +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/gson.rb +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/jr_jackson.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/json_common.rb +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/json_gem.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/json_pure.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/nsjsonserialization.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/oj.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/ok_json.rb +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/adapters/yajl.rb +19 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/convertible_hash_keys.rb +43 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/options.rb +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/options_cache.rb +29 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/parse_error.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/vendor/okjson.rb +606 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json/version.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/multi_json-1.12.2/lib/multi_json.rb +161 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/.gitignore +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/.rubocop.yml +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/.rubocop_defaults.yml +177 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/.travis.yml +24 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/.yardopts +1 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/2.0-Upgrade.md +52 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/CHANGELOG.md +330 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/Gemfile +10 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/README.md +202 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/Rakefile +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/bin/console +14 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/data/list.txt +12288 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix/domain.rb +235 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix/errors.rb +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix/list.rb +243 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix/rule.rb +348 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix/version.rb +10 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/lib/public_suffix.rb +175 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/public_suffix.gemspec +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/.empty +2 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/acceptance_test.rb +127 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_find.rb +66 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_find_all.rb +102 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_names.rb +91 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_select.rb +26 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_select_incremental.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/benchmarks/bm_valid.rb +101 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/domain_profiler.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/find_profiler.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/find_profiler_jp.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/initialization_profiler.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/list_profsize.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/profilers/object_binsize.rb +57 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/psl_test.rb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/test_helper.rb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/tests.txt +98 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/unit/domain_test.rb +104 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/unit/errors_test.rb +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/unit/list_test.rb +239 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/unit/public_suffix_test.rb +186 -0
- data/vendor/bundle/ruby/2.4.0/gems/public_suffix-3.0.1/test/unit/rule_test.rb +220 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/.gemtest +0 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/.gitignore +34 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/.rspec-tm +2 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/.travis.yml +24 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/CHANGELOG.md +1460 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/Gemfile +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/LICENSE +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/README.md +1045 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/Rakefile +30 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/api.rb +97 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/assertion_failure.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/callback_registry.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/config.rb +18 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/cucumber.rb +10 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/deprecation.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/errors.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/curb_adapter.rb +337 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +228 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/excon_adapter.rb +162 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_lib_adapter.rb +7 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +19 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb/client.rb +14 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb/request.rb +10 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb/response.rb +43 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb/streamer.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb/webmock.rb +68 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/http_rb_adapter.rb +37 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/httpclient_adapter.rb +240 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/manticore_adapter.rb +127 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/net_http.rb +362 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/net_http_response.rb +34 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/patron_adapter.rb +130 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +174 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/matchers/hash_including_matcher.rb +36 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/minitest.rb +41 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/rack_response.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_body_diff.rb +64 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_execution_verifier.rb +78 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_pattern.rb +343 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_registry.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_signature.rb +54 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_signature_snippet.rb +61 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/request_stub.rb +100 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/response.rb +153 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/responses_sequence.rb +40 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/rspec/matchers/request_pattern_matcher.rb +78 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/rspec/matchers/webmock_matcher.rb +52 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/rspec/matchers.rb +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/rspec.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/stub_registry.rb +67 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/stub_request_snippet.rb +34 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/test_unit.rb +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/hash_counter.rb +32 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/hash_keys_stringifier.rb +25 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/hash_validator.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/headers.rb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/json.rb +78 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/query_mapper.rb +279 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/uri.rb +111 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/util/version_checker.rb +111 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/version.rb +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock/webmock.rb +156 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/lib/webmock.rb +54 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/minitest/test_helper.rb +34 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/minitest/test_webmock.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/minitest/webmock_spec.rb +60 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/curb/curb_spec.rb +466 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/curb/curb_spec_helper.rb +147 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/em_http_request/em_http_request_spec.rb +406 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/em_http_request/em_http_request_spec_helper.rb +77 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/excon/excon_spec.rb +75 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/excon/excon_spec_helper.rb +50 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/http_rb/http_rb_spec.rb +73 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/http_rb/http_rb_spec_helper.rb +51 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/httpclient/httpclient_spec.rb +209 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/httpclient/httpclient_spec_helper.rb +57 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/manticore/manticore_spec.rb +56 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/manticore/manticore_spec_helper.rb +35 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_shared.rb +142 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_spec.rb +317 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_spec_helper.rb +64 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/net_http/real_net_http_spec.rb +20 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/patron/patron_spec.rb +118 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/patron/patron_spec_helper.rb +54 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/allowing_and_disabling_net_connect.rb +313 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/callbacks.rb +147 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/complex_cross_concern_behaviors.rb +36 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/enabling_and_disabling_webmock.rb +95 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/precedence_of_stubs.rb +15 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/request_expectations.rb +916 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/returning_declared_responses.rb +388 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/shared/stubbing_requests.rb +583 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb +135 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb +60 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/acceptance/webmock_shared.rb +41 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/fixtures/test.txt +1 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/quality_spec.rb +84 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/spec_helper.rb +48 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/support/example_curl_output.txt +22 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/support/failures.rb +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/support/my_rack_app.rb +53 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/support/network_connection.rb +19 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/support/webmock_server.rb +69 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/api_spec.rb +75 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/errors_spec.rb +129 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb +17 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb +12 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/matchers/hash_including_matcher_spec.rb +87 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/rack_response_spec.rb +112 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_body_diff_spec.rb +90 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_execution_verifier_spec.rb +208 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_pattern_spec.rb +590 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_registry_spec.rb +76 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_signature_snippet_spec.rb +89 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_signature_spec.rb +155 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/request_stub_spec.rb +199 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/response_spec.rb +282 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/stub_registry_spec.rb +103 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/stub_request_snippet_spec.rb +95 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/hash_counter_spec.rb +39 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/hash_keys_stringifier_spec.rb +27 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/headers_spec.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/json_spec.rb +33 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/query_mapper_spec.rb +138 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/uri_spec.rb +299 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/util/version_checker_spec.rb +65 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/spec/unit/webmock_spec.rb +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/test/http_request.rb +24 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/test/shared_test.rb +95 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/test/test_helper.rb +23 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/test/test_webmock.rb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/webmock-2.3.2/webmock.gemspec +46 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/.gitignore +11 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/.rspec +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/.rubocop.yml +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/.travis.yml +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/Gemfile +5 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/LICENSE +202 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/README.md +79 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/Rakefile +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/VERSION +1 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/Vagrantfile +9 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/appveyor.yml +38 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/bin/rwinrmcp +86 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/changelog.md +60 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/core/file_transporter.rb +527 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/core/tmp_zip.rb +177 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/exceptions.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/file_manager.rb +118 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/check_files.ps1.erb +49 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/checksum.ps1.erb +13 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/create_dir.ps1.erb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/delete.ps1.erb +6 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/download.ps1.erb +8 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/exists.ps1.erb +10 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/extract_files.ps1.erb +52 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs/scripts/scripts.rb +31 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/lib/winrm-fs.rb +28 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/config-example.yml +3 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/integration/file_manager_spec.rb +224 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/integration/tmp_zip_spec.rb +26 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/matchers.rb +58 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/spec_helper.rb +71 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/spec/unit/tmp_zip_spec.rb +79 -0
- data/vendor/bundle/ruby/2.4.0/gems/winrm-fs-1.1.1/winrm-fs.gemspec +37 -0
- data/vendor/bundle/ruby/2.4.0/specifications/addressable-2.5.2.gemspec +39 -0
- data/vendor/bundle/ruby/2.4.0/specifications/hashdiff-0.3.7.gemspec +39 -0
- data/vendor/bundle/ruby/2.4.0/specifications/multi_json-1.12.2.gemspec +33 -0
- data/vendor/bundle/ruby/2.4.0/specifications/public_suffix-3.0.1.gemspec +41 -0
- data/vendor/bundle/ruby/2.4.0/specifications/webmock-2.3.2.gemspec +79 -0
- data/vendor/bundle/ruby/2.4.0/specifications/winrm-fs-1.1.1.gemspec +57 -0
- data/version.txt +1 -1
- metadata +295 -11
- data/plugins/guests/solaris11/cap/halt.rb +0 -26
- data/plugins/guests/solaris11/cap/insert_public_key.rb +0 -21
- data/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb +0 -45
- data/plugins/guests/solaris11/cap/remove_public_key.rb +0 -21
- data/plugins/guests/solaris11/cap/rsync.rb +0 -29
- data/test/unit/plugins/guests/solaris11/cap/halt_test.rb +0 -44
@@ -1,5 +1,6 @@
|
|
1
1
|
Param(
|
2
2
|
[string]$version,
|
3
|
+
[string]$pythonVersion = "2",
|
3
4
|
[string]$runservice,
|
4
5
|
[string]$minion,
|
5
6
|
[string]$master
|
@@ -11,7 +12,12 @@ $startupType = "Manual"
|
|
11
12
|
|
12
13
|
# Version to install - default to latest if there is an issue
|
13
14
|
If ($version -notmatch "2\d{3}\.\d{1,2}\.\d+(\-\d{1})?"){
|
14
|
-
$version = '
|
15
|
+
$version = '2017.7.1'
|
16
|
+
}
|
17
|
+
|
18
|
+
If ($pythonVersion -notmatch "\d+") {
|
19
|
+
$pythonVersion = "2"
|
20
|
+
Write-Host "Defaulting to minion Python version $pythonVersion"
|
15
21
|
}
|
16
22
|
|
17
23
|
If ($runservice.ToLower() -eq "true"){
|
@@ -49,9 +55,15 @@ If ([IntPtr]::Size -eq 4) {
|
|
49
55
|
}
|
50
56
|
|
51
57
|
# Download minion setup file
|
52
|
-
|
58
|
+
$minionFilename = "Salt-Minion-$version-$arch-Setup.exe"
|
59
|
+
$versionYear = [regex]::Match($version, "\d+").Value
|
60
|
+
If ([convert]::ToInt32($versionYear) -ge 2017)
|
61
|
+
{
|
62
|
+
$minionFilename = "Salt-Minion-$version-Py$pythonVersion-$arch-Setup.exe"
|
63
|
+
}
|
64
|
+
Write-Host "Downloading Salt minion installer $minionFilename"
|
53
65
|
$webclient = New-Object System.Net.WebClient
|
54
|
-
$url = "https://repo.saltstack.com/windows
|
66
|
+
$url = "https://repo.saltstack.com/windows/$minionFilename"
|
55
67
|
$file = "C:\tmp\salt.exe"
|
56
68
|
$webclient.DownloadFile($url, $file)
|
57
69
|
|
@@ -5,6 +5,8 @@ if [ -x /usr/bin/fetch ]; then
|
|
5
5
|
/usr/bin/fetch -o bootstrap-salt.sh https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
6
6
|
elif [ -x /usr/bin/curl ]; then
|
7
7
|
/usr/bin/curl -L -O https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
8
|
+
elif [ -x /usr/bin/wget ]; then
|
9
|
+
/usr/bin/wget -O bootstrap-salt.sh https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
8
10
|
else
|
9
11
|
python -c 'import urllib; urllib.urlretrieve("https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh", "bootstrap-salt.sh")'
|
10
12
|
fi
|
@@ -36,6 +36,7 @@ module VagrantPlugins
|
|
36
36
|
attr_accessor :no_minion
|
37
37
|
attr_accessor :bootstrap_options
|
38
38
|
attr_accessor :version
|
39
|
+
attr_accessor :python_version
|
39
40
|
attr_accessor :run_service
|
40
41
|
attr_accessor :master_id
|
41
42
|
|
@@ -66,6 +67,7 @@ module VagrantPlugins
|
|
66
67
|
@masterless = UNSET_VALUE
|
67
68
|
@minion_id = UNSET_VALUE
|
68
69
|
@version = UNSET_VALUE
|
70
|
+
@python_version = UNSET_VALUE
|
69
71
|
@run_service = UNSET_VALUE
|
70
72
|
@master_id = UNSET_VALUE
|
71
73
|
@salt_call_args = UNSET_VALUE
|
@@ -93,6 +95,7 @@ module VagrantPlugins
|
|
93
95
|
@masterless = false if @masterless == UNSET_VALUE
|
94
96
|
@minion_id = nil if @minion_id == UNSET_VALUE
|
95
97
|
@version = nil if @version == UNSET_VALUE
|
98
|
+
@python_version = nil if @python_version == UNSET_VALUE
|
96
99
|
@run_service = nil if @run_service == UNSET_VALUE
|
97
100
|
@master_id = nil if @master_id == UNSET_VALUE
|
98
101
|
@salt_call_args = nil if @salt_call_args == UNSET_VALUE
|
@@ -160,6 +163,14 @@ module VagrantPlugins
|
|
160
163
|
errors << I18n.t("vagrant.provisioners.salt.args_array")
|
161
164
|
end
|
162
165
|
|
166
|
+
if @python_version && @python_version.is_a?(String) && !@python_version.scan(/\D/).empty?
|
167
|
+
errors << I18n.t("vagrant.provisioners.salt.python_version")
|
168
|
+
end
|
169
|
+
|
170
|
+
if @python_version && !(@python_version.is_a?(Integer) || @python_version.is_a?(String))
|
171
|
+
errors << I18n.t("vagrant.provisioners.salt.python_version")
|
172
|
+
end
|
173
|
+
|
163
174
|
return {"salt provisioner" => errors}
|
164
175
|
end
|
165
176
|
end
|
@@ -121,7 +121,7 @@ module VagrantPlugins
|
|
121
121
|
options = "%s -F -c %s" % [options, config_dir]
|
122
122
|
end
|
123
123
|
|
124
|
-
if @config.seed_master && @config.install_master
|
124
|
+
if @config.seed_master && @config.install_master && @machine.config.vm.communicator != :winrm
|
125
125
|
seed_dir = "/tmp/minion-seed-keys"
|
126
126
|
@machine.communicate.sudo("mkdir -p -m777 #{seed_dir}")
|
127
127
|
@config.seed_master.each do |name, keyfile|
|
@@ -132,27 +132,27 @@ module VagrantPlugins
|
|
132
132
|
options = "#{options} -k #{seed_dir}"
|
133
133
|
end
|
134
134
|
|
135
|
-
if configure && !install
|
135
|
+
if configure && !install && @machine.config.vm.communicator != :winrm
|
136
136
|
options = "%s -C" % options
|
137
137
|
end
|
138
138
|
|
139
|
-
if @config.install_master
|
139
|
+
if @config.install_master && @machine.config.vm.communicator != :winrm
|
140
140
|
options = "%s -M" % options
|
141
141
|
end
|
142
142
|
|
143
|
-
if @config.install_syndic
|
143
|
+
if @config.install_syndic && @machine.config.vm.communicator != :winrm
|
144
144
|
options = "%s -S" % options
|
145
145
|
end
|
146
146
|
|
147
|
-
if @config.no_minion
|
147
|
+
if @config.no_minion && @machine.config.vm.communicator != :winrm
|
148
148
|
options = "%s -N" % options
|
149
149
|
end
|
150
150
|
|
151
|
-
if @config.install_type
|
151
|
+
if @config.install_type && @machine.config.vm.communicator != :winrm
|
152
152
|
options = "%s %s" % [options, @config.install_type]
|
153
153
|
end
|
154
154
|
|
155
|
-
if @config.install_args
|
155
|
+
if @config.install_args && @machine.config.vm.communicator != :winrm
|
156
156
|
options = "%s %s" % [options, @config.install_args]
|
157
157
|
end
|
158
158
|
|
@@ -277,6 +277,9 @@ module VagrantPlugins
|
|
277
277
|
if @config.version
|
278
278
|
options += " -version %s" % @config.version
|
279
279
|
end
|
280
|
+
if @config.python_version
|
281
|
+
options += " -pythonVersion %s" % @config.python_version
|
282
|
+
end
|
280
283
|
if @config.run_service
|
281
284
|
@machine.env.ui.info "Salt minion will be stopped after installing."
|
282
285
|
options += " -runservice %s" % @config.run_service
|
data/templates/locales/en.yml
CHANGED
@@ -1697,6 +1697,9 @@ en:
|
|
1697
1697
|
will_not_destroy: |-
|
1698
1698
|
The VM '%{name}' will not be destroyed, since the confirmation
|
1699
1699
|
was declined.
|
1700
|
+
warning: |-
|
1701
|
+
Destroying guests with `--parallel` automatically enables `--force`.
|
1702
|
+
Press ctrl-c to cancel.
|
1700
1703
|
init:
|
1701
1704
|
success: |-
|
1702
1705
|
A `Vagrantfile` has been placed in this directory. You are now
|
@@ -2444,6 +2447,8 @@ en:
|
|
2444
2447
|
You must accept keys when running highstate with master!
|
2445
2448
|
args_array: |-
|
2446
2449
|
You must set this value as an array.
|
2450
|
+
python_version: |-
|
2451
|
+
You must set this as an integer or string that represents an integer.
|
2447
2452
|
|
2448
2453
|
pushes:
|
2449
2454
|
file:
|
data/test/unit/base.rb
CHANGED
@@ -0,0 +1,155 @@
|
|
1
|
+
require File.expand_path("../../../../base", __FILE__)
|
2
|
+
|
3
|
+
require Vagrant.source_root.join("plugins/commands/destroy/command")
|
4
|
+
|
5
|
+
describe VagrantPlugins::CommandDestroy::Command do
|
6
|
+
include_context "unit"
|
7
|
+
|
8
|
+
let(:entry_klass) { Vagrant::MachineIndex::Entry }
|
9
|
+
let(:argv) { [] }
|
10
|
+
let(:vagrantfile_content){ "" }
|
11
|
+
let(:iso_env) do
|
12
|
+
env = isolated_environment
|
13
|
+
env.vagrantfile(vagrantfile_content)
|
14
|
+
env.create_vagrant_env
|
15
|
+
end
|
16
|
+
|
17
|
+
subject { described_class.new(argv, iso_env) }
|
18
|
+
|
19
|
+
let(:action_runner) { double("action_runner") }
|
20
|
+
|
21
|
+
def new_entry(name)
|
22
|
+
entry_klass.new.tap do |e|
|
23
|
+
e.name = name
|
24
|
+
e.vagrantfile_path = "/bar"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
before do
|
29
|
+
allow(iso_env).to receive(:action_runner).and_return(action_runner)
|
30
|
+
end
|
31
|
+
|
32
|
+
context "with no argument" do
|
33
|
+
before { @state_var = :running }
|
34
|
+
let(:vagrantfile_content){ "Vagrant.configure(2){|config| config.vm.box = 'dummy'}" }
|
35
|
+
let(:state) { double("state", id: :running) }
|
36
|
+
let(:machine) do
|
37
|
+
iso_env.machine(iso_env.machine_names[0], :dummy).tap do |m|
|
38
|
+
allow(m).to receive(:state).and_return(state)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
before do
|
43
|
+
allow(subject).to receive(:with_target_vms) { |&block| block.call machine }
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should destroy the default box" do
|
47
|
+
allow_any_instance_of(Vagrant::BatchAction).to receive(:action) .with(machine, :destroy, anything)
|
48
|
+
|
49
|
+
expect(machine.state).to receive(:id).and_return(:running)
|
50
|
+
expect(machine.state).to receive(:id).and_return(:dead)
|
51
|
+
expect(subject.execute).to eq(0)
|
52
|
+
end
|
53
|
+
|
54
|
+
it "exits 1 if a vms destroy was declined" do
|
55
|
+
allow_any_instance_of(Vagrant::BatchAction).to receive(:action) .with(machine, :destroy, anything)
|
56
|
+
|
57
|
+
expect(machine.state).to receive(:id).and_return(:running)
|
58
|
+
expect(machine.state).to receive(:id).and_return(:running)
|
59
|
+
expect(subject.execute).to eq(1)
|
60
|
+
end
|
61
|
+
|
62
|
+
context "with VAGRANT_DEFAULT_PROVIDER set" do
|
63
|
+
before do
|
64
|
+
if ENV["VAGRANT_DEFAULT_PROVIDER"]
|
65
|
+
@original_default = ENV["VAGRANT_DEFAULT_PROVIDER"]
|
66
|
+
end
|
67
|
+
ENV["VAGRANT_DEFAULT_PROVIDER"] = "unknown"
|
68
|
+
end
|
69
|
+
after do
|
70
|
+
if @original_default
|
71
|
+
ENV["VAGRANT_DEFAULT_PROVIDER"] = @original_default
|
72
|
+
else
|
73
|
+
ENV.delete("VAGRANT_DEFAULT_PROVIDER")
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should attempt to use dummy provider" do
|
78
|
+
expect{ subject.execute }.to raise_error(Vagrant::Errors::UnimplementedProviderAction)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
context "with --parallel set" do
|
84
|
+
let(:argv){ ["--parallel", "--force"] }
|
85
|
+
|
86
|
+
it "passes in true to batch" do
|
87
|
+
batch = double("environment_batch")
|
88
|
+
expect(iso_env).to receive(:batch).with(true).and_yield(batch)
|
89
|
+
expect(batch).to receive(:action).with(anything, :destroy, anything) do |machine,action,args|
|
90
|
+
expect(machine).to be_kind_of(Vagrant::Machine)
|
91
|
+
expect(action).to eq(:destroy)
|
92
|
+
end
|
93
|
+
subject.execute
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
context "with a global machine" do
|
98
|
+
let(:argv){ ["1234"] }
|
99
|
+
|
100
|
+
it "destroys a vm with an id" do
|
101
|
+
|
102
|
+
global_env = isolated_environment
|
103
|
+
global_env.vagrantfile("Vagrant.configure(2){|config| config.vm.box = 'dummy'}")
|
104
|
+
global_venv = global_env.create_vagrant_env
|
105
|
+
global_machine = global_venv.machine(global_venv.machine_names[0], :dummy)
|
106
|
+
global_machine.id = "1234"
|
107
|
+
global = new_entry(global_machine.name)
|
108
|
+
global.provider = "dummy"
|
109
|
+
global.vagrantfile_path = global_env.workdir
|
110
|
+
locked = iso_env.machine_index.set(global)
|
111
|
+
iso_env.machine_index.release(locked)
|
112
|
+
|
113
|
+
allow(subject).to receive(:with_target_vms) { |&block| block.call global_machine }
|
114
|
+
|
115
|
+
|
116
|
+
batch = double("environment_batch")
|
117
|
+
expect(iso_env).to receive(:batch).and_yield(batch)
|
118
|
+
expect(batch).to receive(:action).with(global_machine, :destroy, anything) do |machine,action,args|
|
119
|
+
expect(machine).to be_kind_of(Vagrant::Machine)
|
120
|
+
expect(action).to eq(:destroy)
|
121
|
+
end
|
122
|
+
subject.execute
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
context "with an argument" do
|
127
|
+
let(:vagrantfile_content) do
|
128
|
+
<<-VF
|
129
|
+
Vagrant.configure("2") do |config|
|
130
|
+
config.vm.define "app"
|
131
|
+
config.vm.define "db"
|
132
|
+
end
|
133
|
+
VF
|
134
|
+
end
|
135
|
+
let(:argv){ ["app"] }
|
136
|
+
let(:machine) { iso_env.machine(iso_env.machine_names[0], :dummy) }
|
137
|
+
|
138
|
+
it "destroys a vm" do
|
139
|
+
batch = double("environment_batch")
|
140
|
+
expect(iso_env).to receive(:batch).and_yield(batch)
|
141
|
+
expect(batch).to receive(:action).with(machine, :destroy, anything) do |machine,action,args|
|
142
|
+
expect(machine).to be_kind_of(Vagrant::Machine)
|
143
|
+
expect(action).to eq(:destroy)
|
144
|
+
end
|
145
|
+
subject.execute
|
146
|
+
end
|
147
|
+
|
148
|
+
context "with an invalid argument" do
|
149
|
+
let(:argv){ ["notweb"] }
|
150
|
+
it "raises an exception" do
|
151
|
+
expect { subject.execute }.to raise_error(Vagrant::Errors::MachineNotFound)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
@@ -48,6 +48,12 @@ describe VagrantPlugins::CommunicatorWinRM::Helper do
|
|
48
48
|
expect { subject.winrm_address(machine) }.
|
49
49
|
to raise_error(VagrantPlugins::CommunicatorWinRM::Errors::WinRMNotReady)
|
50
50
|
end
|
51
|
+
|
52
|
+
it "raise an exception if it detects an APIPA" do
|
53
|
+
allow(machine).to receive(:ssh_info).and_return({ host: "169.254.123.123" })
|
54
|
+
expect { subject.winrm_address(machine) }.
|
55
|
+
to raise_error(VagrantPlugins::CommunicatorWinRM::Errors::WinRMNotReady)
|
56
|
+
end
|
51
57
|
end
|
52
58
|
|
53
59
|
describe ".winrm_info" do
|
@@ -142,4 +148,31 @@ describe VagrantPlugins::CommunicatorWinRM::Helper do
|
|
142
148
|
expect(subject.winrm_port(machine)).to eq(2456)
|
143
149
|
end
|
144
150
|
end
|
151
|
+
|
152
|
+
describe ".winrm_info_invalid?" do
|
153
|
+
it "returns true if it can't detect a host" do
|
154
|
+
allow(machine).to receive(:ssh_info).and_return(nil)
|
155
|
+
expect(subject).to be_winrm_info_invalid(machine.ssh_info)
|
156
|
+
end
|
157
|
+
|
158
|
+
it "returns true if it detects an empty host ip" do
|
159
|
+
allow(machine).to receive(:ssh_info).and_return({ host: "" })
|
160
|
+
expect(subject).to be_winrm_info_invalid(machine.ssh_info)
|
161
|
+
end
|
162
|
+
|
163
|
+
it "returns true if it detects an unset host ip" do
|
164
|
+
allow(machine).to receive(:ssh_info).and_return({ host: nil })
|
165
|
+
expect(subject).to be_winrm_info_invalid(machine.ssh_info)
|
166
|
+
end
|
167
|
+
|
168
|
+
it "returns true if it detects an APIPA" do
|
169
|
+
allow(machine).to receive(:ssh_info).and_return({ host: "169.254.123.123" })
|
170
|
+
expect(subject).to be_winrm_info_invalid(machine.ssh_info)
|
171
|
+
end
|
172
|
+
|
173
|
+
it "returns false if the IP is valid" do
|
174
|
+
allow(machine).to receive(:ssh_info).and_return({ host: "192.168.123.123" })
|
175
|
+
expect(subject).not_to be_winrm_info_invalid(machine.ssh_info)
|
176
|
+
end
|
177
|
+
end
|
145
178
|
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require_relative "../../../../base"
|
2
|
+
|
3
|
+
describe "VagrantPlugins::GuestSolaris11::Cap::ChangeHostName" do
|
4
|
+
let(:caps) do
|
5
|
+
VagrantPlugins::GuestSolaris11::Plugin
|
6
|
+
.components
|
7
|
+
.guest_capabilities[:solaris11]
|
8
|
+
end
|
9
|
+
|
10
|
+
let(:machine) { double("machine", config: double("config", solaris11: double("solaris11", suexec_cmd: 'sudo'))) }
|
11
|
+
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
|
+
|
13
|
+
before do
|
14
|
+
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
+
end
|
16
|
+
|
17
|
+
after do
|
18
|
+
comm.verify_expectations!
|
19
|
+
end
|
20
|
+
|
21
|
+
describe ".change_host_name" do
|
22
|
+
let(:cap) { caps.get(:change_host_name) }
|
23
|
+
let(:name) { "solaris11.domain.com" }
|
24
|
+
|
25
|
+
it "changes the hostname" do
|
26
|
+
allow(machine.communicate).to receive(:test).and_return(false)
|
27
|
+
allow(machine.communicate).to receive(:execute)
|
28
|
+
|
29
|
+
expect(machine.communicate).to receive(:execute).with("sudo /usr/sbin/svccfg -s system/identity:node setprop config/nodename=\"#{name}\"")
|
30
|
+
expect(machine.communicate).to receive(:execute).with("sudo /usr/sbin/svccfg -s system/identity:node setprop config/loopback=\"#{name}\"")
|
31
|
+
expect(machine.communicate).to receive(:execute).with("sudo /usr/sbin/svccfg -s system/identity:node refresh ")
|
32
|
+
expect(machine.communicate).to receive(:execute).with("sudo /usr/sbin/svcadm restart system/identity:node ")
|
33
|
+
cap.change_host_name(machine, name)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require_relative "../../../../base"
|
2
|
+
|
3
|
+
describe "VagrantPlugins::GuestSolaris11::Cap::ConfigureNetworks" do
|
4
|
+
let(:caps) do
|
5
|
+
VagrantPlugins::GuestSolaris11::Plugin
|
6
|
+
.components
|
7
|
+
.guest_capabilities[:solaris11]
|
8
|
+
end
|
9
|
+
|
10
|
+
let(:machine) { double("machine", config: double("config", solaris11: double("solaris11", suexec_cmd: 'sudo', device: 'net'))) }
|
11
|
+
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
|
+
|
13
|
+
before do
|
14
|
+
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
+
end
|
16
|
+
|
17
|
+
after do
|
18
|
+
comm.verify_expectations!
|
19
|
+
end
|
20
|
+
|
21
|
+
describe ".configufre_networks" do
|
22
|
+
let(:cap) { caps.get(:configure_networks) }
|
23
|
+
let(:network_1) do
|
24
|
+
{
|
25
|
+
interface: 0,
|
26
|
+
type: "dhcp",
|
27
|
+
}
|
28
|
+
end
|
29
|
+
|
30
|
+
let(:network_2) do
|
31
|
+
{
|
32
|
+
interface: 1,
|
33
|
+
type: "static",
|
34
|
+
ip: "33.33.33.10",
|
35
|
+
netmask: "255.255.0.0",
|
36
|
+
gateway: "33.33.0.1",
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
let(:networks) { [network_1, network_2] }
|
41
|
+
|
42
|
+
it "configures the guests network if static" do
|
43
|
+
allow(machine.communicate).to receive(:test).and_return(true)
|
44
|
+
|
45
|
+
cap.configure_networks(machine, networks)
|
46
|
+
expect(comm.received_commands[1]).to eq("sudo ipadm delete-addr net1/v4")
|
47
|
+
expect(comm.received_commands[2]).to eq("sudo ipadm create-addr -T static -a 33.33.33.10/16 net1/v4")
|
48
|
+
end
|
49
|
+
|
50
|
+
it "configures the guests network if dhcp" do
|
51
|
+
allow(machine.communicate).to receive(:test).and_return(true)
|
52
|
+
cap.configure_networks(machine, networks)
|
53
|
+
expect(comm.received_commands[0]).to eq("sudo ipadm create-addr -T addrconf net0/v4")
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|