vagrant-aws-mkubenka 0.7.2.pre.8 → 0.7.2.pre.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1423) hide show
  1. checksums.yaml +4 -4
  2. data/vagrant-aws-mkubenka.gemspec +1 -1
  3. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/.gitignore +50 -0
  4. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/.travis.yml +24 -0
  5. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/.vimrc +5 -0
  6. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/.yardopts +1 -0
  7. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/CHANGELOG.md +3328 -0
  8. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/Gemfile +9 -0
  9. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/LICENSE +21 -0
  10. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/README.md +90 -0
  11. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/RELEASE.md +51 -0
  12. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/Rakefile +18 -0
  13. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/bin/vagrant +170 -0
  14. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/README.md +16 -0
  15. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/bash/completion.sh +149 -0
  16. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/emacs/vagrant.el +8 -0
  17. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/st/Ruby.sublime-settings +6 -0
  18. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/sudoers/linux-fedora +7 -0
  19. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/sudoers/linux-suse +7 -0
  20. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/sudoers/linux-ubuntu +9 -0
  21. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/sudoers/osx +5 -0
  22. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/contrib/vim/vagrantfile.vim +9 -0
  23. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/keys/README.md +10 -0
  24. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/keys/vagrant +27 -0
  25. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/keys/vagrant.pub +1 -0
  26. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant.rb +346 -0
  27. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action.rb +70 -0
  28. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builder.rb +174 -0
  29. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/box_add.rb +551 -0
  30. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/box_check_outdated.rb +107 -0
  31. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/box_remove.rb +125 -0
  32. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/box_update.rb +20 -0
  33. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/call.rb +66 -0
  34. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/config_validate.rb +30 -0
  35. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/confirm.rb +48 -0
  36. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/destroy_confirm.rb +21 -0
  37. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/env_set.rb +24 -0
  38. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/graceful_halt.rb +85 -0
  39. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/handle_box.rb +104 -0
  40. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/handle_box_url.rb +14 -0
  41. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +279 -0
  42. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/is_env_set.rb +22 -0
  43. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/is_state.rb +32 -0
  44. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/lock.rb +57 -0
  45. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/message.rb +26 -0
  46. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/mixin_provisioners.rb +53 -0
  47. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/mixin_synced_folders.rb +260 -0
  48. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/prepare_clone.rb +38 -0
  49. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/provision.rb +143 -0
  50. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/provisioner_cleanup.rb +54 -0
  51. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/set_hostname.rb +27 -0
  52. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/ssh_exec.rb +44 -0
  53. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/ssh_run.rb +63 -0
  54. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/synced_folder_cleanup.rb +33 -0
  55. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/synced_folders.rb +135 -0
  56. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/builtin/wait_for_communicator.rb +79 -0
  57. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/general/package.rb +192 -0
  58. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/general/package_setup_files.rb +51 -0
  59. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/general/package_setup_folders.rb +37 -0
  60. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/hook.rb +107 -0
  61. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/runner.rb +74 -0
  62. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/action/warden.rb +104 -0
  63. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/batch_action.rb +165 -0
  64. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/box.rb +198 -0
  65. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/box_collection.rb +471 -0
  66. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/box_metadata.rb +143 -0
  67. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/bundler.rb +539 -0
  68. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/capability_host.rb +177 -0
  69. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/cli.rb +96 -0
  70. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config.rb +61 -0
  71. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/loader.rb +243 -0
  72. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v1.rb +9 -0
  73. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v1/dummy_config.rb +13 -0
  74. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v1/loader.rb +105 -0
  75. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v1/root.rb +60 -0
  76. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v2.rb +9 -0
  77. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v2/dummy_config.rb +13 -0
  78. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v2/loader.rb +151 -0
  79. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v2/root.rb +112 -0
  80. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/v2/util.rb +21 -0
  81. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/config/version_base.rb +80 -0
  82. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/environment.rb +1000 -0
  83. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/errors.rb +919 -0
  84. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/guest.rb +70 -0
  85. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/host.rb +16 -0
  86. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/machine.rb +590 -0
  87. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/machine_index.rb +481 -0
  88. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/machine_state.rb +51 -0
  89. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin.rb +8 -0
  90. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/manager.rb +185 -0
  91. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/state_file.rb +128 -0
  92. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1.rb +19 -0
  93. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/command.rb +169 -0
  94. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/communicator.rb +98 -0
  95. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/config.rb +112 -0
  96. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/errors.rb +15 -0
  97. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/guest.rb +92 -0
  98. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/host.rb +66 -0
  99. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/manager.rb +131 -0
  100. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/plugin.rb +229 -0
  101. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/provider.rb +68 -0
  102. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v1/provisioner.rb +50 -0
  103. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2.rb +24 -0
  104. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/command.rb +296 -0
  105. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/communicator.rb +123 -0
  106. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/components.rb +85 -0
  107. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/config.rb +143 -0
  108. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/errors.rb +15 -0
  109. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/guest.rb +23 -0
  110. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/host.rb +19 -0
  111. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/manager.rb +236 -0
  112. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/plugin.rb +278 -0
  113. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/provider.rb +115 -0
  114. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/provisioner.rb +53 -0
  115. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/push.rb +27 -0
  116. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/plugin/v2/synced_folder.rb +60 -0
  117. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/registry.rb +101 -0
  118. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/shared_helpers.rb +119 -0
  119. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/ui.rb +388 -0
  120. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util.rb +21 -0
  121. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/ansi_escape_code_remover.rb +34 -0
  122. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/busy.rb +59 -0
  123. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/command_deprecation.rb +56 -0
  124. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/counter.rb +24 -0
  125. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/credential_scrubber.rb +29 -0
  126. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/deep_merge.rb +20 -0
  127. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/downloader.rb +308 -0
  128. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/env.rb +53 -0
  129. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/file_checksum.rb +45 -0
  130. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/file_mode.rb +12 -0
  131. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/guest_inspection.rb +47 -0
  132. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/hash_with_indifferent_access.rb +63 -0
  133. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/io.rb +70 -0
  134. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/is_port_open.rb +39 -0
  135. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/keypair.rb +56 -0
  136. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/line_ending_helpers.rb +14 -0
  137. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/network_ip.rb +39 -0
  138. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/platform.rb +431 -0
  139. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/powershell.rb +77 -0
  140. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/presence.rb +45 -0
  141. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/retryable.rb +31 -0
  142. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/safe_chdir.rb +33 -0
  143. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/safe_env.rb +14 -0
  144. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/safe_exec.rb +64 -0
  145. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/safe_puts.rb +31 -0
  146. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/scoped_hash_override.rb +44 -0
  147. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/shell_quote.rb +15 -0
  148. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/silence_warnings.rb +14 -0
  149. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/ssh.rb +205 -0
  150. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/stacked_proc_runner.rb +35 -0
  151. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/string_block_editor.rb +77 -0
  152. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/subprocess.rb +342 -0
  153. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/template_renderer.rb +88 -0
  154. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/which.rb +45 -0
  155. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/util/windows_path.rb +38 -0
  156. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/vagrantfile.rb +265 -0
  157. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/lib/vagrant/version.rb +7 -0
  158. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/README.md +5 -0
  159. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/add.rb +101 -0
  160. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/download_mixins.rb +29 -0
  161. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/list.rb +71 -0
  162. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/outdated.rb +96 -0
  163. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/prune.rb +128 -0
  164. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/remove.rb +66 -0
  165. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/repackage.rb +43 -0
  166. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/root.rb +94 -0
  167. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/command/update.rb +161 -0
  168. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/box/plugin.rb +15 -0
  169. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/cap/command.rb +75 -0
  170. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/cap/plugin.rb +17 -0
  171. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/destroy/command.rb +50 -0
  172. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/destroy/plugin.rb +18 -0
  173. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/global-status/command.rb +100 -0
  174. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/global-status/plugin.rb +18 -0
  175. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/halt/command.rb +39 -0
  176. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/halt/plugin.rb +18 -0
  177. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/help/command.rb +16 -0
  178. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/help/plugin.rb +17 -0
  179. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/init/command.rb +86 -0
  180. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/init/plugin.rb +18 -0
  181. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/list-commands/command.rb +43 -0
  182. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/list-commands/plugin.rb +18 -0
  183. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/client.rb +151 -0
  184. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/command.rb +102 -0
  185. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/errors.rb +17 -0
  186. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/locales/en.yml +34 -0
  187. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/middleware/add_authentication.rb +56 -0
  188. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/login/plugin.rb +35 -0
  189. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/package/command.rb +94 -0
  190. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/package/plugin.rb +18 -0
  191. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action.rb +71 -0
  192. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/expunge_plugins.rb +66 -0
  193. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/install_gem.rb +75 -0
  194. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/license_plugin.rb +45 -0
  195. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/list_plugins.rb +73 -0
  196. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/plugin_exists_check.rb +25 -0
  197. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/repair_plugins.rb +39 -0
  198. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/uninstall_plugin.rb +25 -0
  199. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/action/update_gems.rb +49 -0
  200. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/base.rb +19 -0
  201. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/expunge.rb +80 -0
  202. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/install.rb +47 -0
  203. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/license.rb +31 -0
  204. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/list.rb +28 -0
  205. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/mixin_install_opts.rb +31 -0
  206. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/repair.rb +28 -0
  207. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/root.rb +94 -0
  208. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/uninstall.rb +30 -0
  209. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/command/update.rb +33 -0
  210. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/gem_helper.rb +86 -0
  211. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/plugin/plugin.rb +20 -0
  212. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/port/command.rb +90 -0
  213. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/port/locales/en.yml +20 -0
  214. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/port/plugin.rb +27 -0
  215. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/powershell/command.rb +119 -0
  216. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/powershell/errors.rb +22 -0
  217. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/powershell/plugin.rb +30 -0
  218. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/powershell/scripts/enable_psremoting.ps1 +60 -0
  219. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/powershell/scripts/reset_trustedhosts.ps1 +12 -0
  220. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/provider/command.rb +74 -0
  221. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/provider/plugin.rb +18 -0
  222. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/provision/command.rb +38 -0
  223. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/provision/plugin.rb +18 -0
  224. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/push/command.rb +75 -0
  225. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/push/plugin.rb +17 -0
  226. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/rdp/command.rb +111 -0
  227. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/rdp/config.rb +26 -0
  228. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/rdp/errors.rb +18 -0
  229. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/rdp/plugin.rb +36 -0
  230. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/reload/command.rb +61 -0
  231. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/reload/plugin.rb +18 -0
  232. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/resume/command.rb +43 -0
  233. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/resume/plugin.rb +17 -0
  234. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/delete.rb +47 -0
  235. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/list.rb +46 -0
  236. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/pop.rb +43 -0
  237. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/push.rb +33 -0
  238. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/push_shared.rb +55 -0
  239. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/restore.rb +60 -0
  240. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/root.rb +89 -0
  241. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/command/save.rb +59 -0
  242. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/snapshot/plugin.rb +15 -0
  243. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/ssh/command.rb +77 -0
  244. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/ssh/plugin.rb +17 -0
  245. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/ssh_config/command.rb +64 -0
  246. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/ssh_config/plugin.rb +18 -0
  247. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/status/command.rb +56 -0
  248. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/status/plugin.rb +18 -0
  249. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/suspend/command.rb +29 -0
  250. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/suspend/plugin.rb +18 -0
  251. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/up/command.rb +184 -0
  252. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/up/plugin.rb +17 -0
  253. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/up/start_mixins.rb +55 -0
  254. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/validate/command.rb +31 -0
  255. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/validate/plugin.rb +17 -0
  256. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/version/command.rb +57 -0
  257. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/commands/version/plugin.rb +18 -0
  258. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/ssh/communicator.rb +714 -0
  259. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/ssh/plugin.rb +19 -0
  260. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filter.rb +46 -0
  261. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/cat.rb +23 -0
  262. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/chmod.rb +17 -0
  263. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/chown.rb +17 -0
  264. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/grep.rb +23 -0
  265. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/mkdir.rb +25 -0
  266. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/rm.rb +45 -0
  267. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/test.rb +63 -0
  268. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/uname.rb +27 -0
  269. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/command_filters/which.rb +22 -0
  270. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/communicator.rb +223 -0
  271. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/config.rb +73 -0
  272. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/errors.rb +69 -0
  273. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/helper.rb +83 -0
  274. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/plugin.rb +44 -0
  275. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winrm/shell.rb +208 -0
  276. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winssh/communicator.rb +161 -0
  277. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winssh/config.rb +30 -0
  278. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/communicators/winssh/plugin.rb +21 -0
  279. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/amazon/cap/flavor.rb +14 -0
  280. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/amazon/guest.rb +9 -0
  281. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/amazon/plugin.rb +20 -0
  282. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/cap/change_host_name.rb +24 -0
  283. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/cap/configure_networks.rb +57 -0
  284. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/cap/nfs.rb +33 -0
  285. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/cap/rsync.rb +16 -0
  286. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/cap/smb.rb +17 -0
  287. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/guest.rb +11 -0
  288. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/arch/plugin.rb +50 -0
  289. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/atomic/cap/change_host_name.rb +24 -0
  290. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/atomic/cap/docker.rb +11 -0
  291. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/atomic/guest.rb +11 -0
  292. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/atomic/plugin.rb +25 -0
  293. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/cap/halt.rb +16 -0
  294. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/cap/nfs.rb +47 -0
  295. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/cap/public_key.rb +66 -0
  296. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/cap/virtualbox.rb +16 -0
  297. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/guest.rb +9 -0
  298. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/bsd/plugin.rb +40 -0
  299. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/coreos/cap/change_host_name.rb +21 -0
  300. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/coreos/cap/configure_networks.rb +86 -0
  301. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/coreos/cap/docker.rb +11 -0
  302. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/coreos/guest.rb +11 -0
  303. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/coreos/plugin.rb +30 -0
  304. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/change_host_name.rb +36 -0
  305. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/choose_addressable_ip_addr.rb +20 -0
  306. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/configure_networks.rb +123 -0
  307. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/halt.rb +18 -0
  308. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +37 -0
  309. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +36 -0
  310. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/rsync.rb +11 -0
  311. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/shell_expand_guest_path.rb +26 -0
  312. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +12 -0
  313. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/guest.rb +15 -0
  314. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/darwin/plugin.rb +75 -0
  315. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/cap/change_host_name.rb +41 -0
  316. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/cap/configure_networks.rb +73 -0
  317. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/cap/nfs.rb +16 -0
  318. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/cap/rsync.rb +15 -0
  319. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/cap/smb.rb +17 -0
  320. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/guest.rb +10 -0
  321. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/debian/plugin.rb +40 -0
  322. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/dragonflybsd/guest.rb +9 -0
  323. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/dragonflybsd/plugin.rb +15 -0
  324. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/elementary/guest.rb +10 -0
  325. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/elementary/plugin.rb +15 -0
  326. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/cap/change_host_name.rb +13 -0
  327. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/cap/configure_networks.rb +38 -0
  328. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/cap/halt.rb +16 -0
  329. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/cap/mount_nfs_folder.rb +40 -0
  330. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/cap/public_key.rb +63 -0
  331. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/guest.rb +11 -0
  332. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/esxi/plugin.rb +46 -0
  333. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/fedora/cap/flavor.rb +23 -0
  334. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/fedora/guest.rb +11 -0
  335. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/fedora/plugin.rb +20 -0
  336. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/cap/change_host_name.rb +27 -0
  337. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/cap/configure_networks.rb +67 -0
  338. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/cap/rsync.rb +15 -0
  339. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/cap/shell_expand_guest_path.rb +27 -0
  340. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/guest.rb +14 -0
  341. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/freebsd/plugin.rb +55 -0
  342. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/funtoo/cap/configure_networks.rb +47 -0
  343. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/funtoo/guest.rb +9 -0
  344. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/funtoo/plugin.rb +20 -0
  345. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/gentoo/cap/change_host_name.rb +32 -0
  346. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/gentoo/cap/configure_networks.rb +89 -0
  347. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/gentoo/guest.rb +9 -0
  348. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/gentoo/plugin.rb +25 -0
  349. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/kali/guest.rb +10 -0
  350. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/kali/plugin.rb +15 -0
  351. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +19 -0
  352. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/halt.rb +16 -0
  353. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/mount_smb_shared_folder.rb +72 -0
  354. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +61 -0
  355. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/network_interfaces.rb +75 -0
  356. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/nfs.rb +48 -0
  357. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/port.rb +11 -0
  358. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/public_key.rb +62 -0
  359. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/read_ip_address.rb +17 -0
  360. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/rsync.rb +11 -0
  361. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/cap/shell_expand_guest_path.rb +31 -0
  362. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/guest.rb +23 -0
  363. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/linux/plugin.rb +101 -0
  364. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/mint/guest.rb +10 -0
  365. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/mint/plugin.rb +15 -0
  366. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/change_host_name.rb +17 -0
  367. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/configure_networks.rb +53 -0
  368. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/rsync.rb +20 -0
  369. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/cap/shell_expand_guest_path.rb +26 -0
  370. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/guest.rb +11 -0
  371. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/netbsd/plugin.rb +55 -0
  372. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/nixos/cap/change_host_name.rb +44 -0
  373. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/nixos/cap/configure_networks.rb +132 -0
  374. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/nixos/cap/nfs_client.rb +11 -0
  375. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/nixos/guest.rb +17 -0
  376. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/nixos/plugin.rb +30 -0
  377. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/omnios/cap/change_host_name.rb +26 -0
  378. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/omnios/cap/mount_nfs_folder.rb +21 -0
  379. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/omnios/cap/rsync.rb +11 -0
  380. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/omnios/guest.rb +9 -0
  381. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/omnios/plugin.rb +30 -0
  382. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/cap/change_host_name.rb +28 -0
  383. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/cap/configure_networks.rb +53 -0
  384. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/cap/halt.rb +19 -0
  385. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/cap/rsync.rb +29 -0
  386. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/cap/shell_expand_guest_path.rb +26 -0
  387. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/guest.rb +11 -0
  388. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/openbsd/plugin.rb +60 -0
  389. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/photon/cap/change_host_name.rb +25 -0
  390. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/photon/cap/configure_networks.rb +30 -0
  391. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/photon/cap/docker.rb +11 -0
  392. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/photon/guest.rb +9 -0
  393. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/photon/plugin.rb +30 -0
  394. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/pld/cap/change_host_name.rb +29 -0
  395. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/pld/cap/flavor.rb +11 -0
  396. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/pld/cap/network_scripts_dir.rb +11 -0
  397. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/pld/guest.rb +9 -0
  398. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/pld/plugin.rb +30 -0
  399. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/change_host_name.rb +39 -0
  400. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/configure_networks.rb +87 -0
  401. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/flavor.rb +22 -0
  402. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/network_scripts_dir.rb +11 -0
  403. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/nfs_client.rb +24 -0
  404. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/cap/rsync.rb +17 -0
  405. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/guest.rb +9 -0
  406. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/redhat/plugin.rb +45 -0
  407. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/slackware/cap/change_host_name.rb +27 -0
  408. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/slackware/cap/configure_networks.rb +48 -0
  409. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/slackware/guest.rb +9 -0
  410. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/slackware/plugin.rb +25 -0
  411. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/change_host_name.rb +17 -0
  412. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/configure_networks.rb +27 -0
  413. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/halt.rb +22 -0
  414. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/insert_public_key.rb +28 -0
  415. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/mount_nfs.rb +19 -0
  416. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/remove_public_key.rb +25 -0
  417. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/cap/rsync.rb +33 -0
  418. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/config.rb +15 -0
  419. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/guest.rb +11 -0
  420. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/smartos/plugin.rb +71 -0
  421. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/change_host_name.rb +17 -0
  422. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/configure_networks.rb +25 -0
  423. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/halt.rb +22 -0
  424. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/insert_public_key.rb +22 -0
  425. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +41 -0
  426. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/remove_public_key.rb +22 -0
  427. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/cap/rsync.rb +33 -0
  428. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/config.rb +31 -0
  429. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/guest.rb +14 -0
  430. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris/plugin.rb +70 -0
  431. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/change_host_name.rb +25 -0
  432. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/configure_networks.rb +37 -0
  433. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/halt.rb +26 -0
  434. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/insert_public_key.rb +21 -0
  435. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb +45 -0
  436. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/remove_public_key.rb +21 -0
  437. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/cap/rsync.rb +29 -0
  438. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/config.rb +34 -0
  439. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/guest.rb +15 -0
  440. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/solaris11/plugin.rb +64 -0
  441. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/change_host_name.rb +24 -0
  442. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/configure_networks.rb +50 -0
  443. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/halt.rb +16 -0
  444. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/network_scripts_dir.rb +11 -0
  445. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/nfs_client.rb +15 -0
  446. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/cap/rsync.rb +15 -0
  447. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/guest.rb +9 -0
  448. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/suse/plugin.rb +50 -0
  449. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/cap/change_host_name.rb +13 -0
  450. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/cap/configure_networks.rb +26 -0
  451. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/cap/halt.rb +16 -0
  452. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/cap/mount_nfs.rb +41 -0
  453. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/cap/rsync.rb +17 -0
  454. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/guest.rb +10 -0
  455. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/tinycore/plugin.rb +40 -0
  456. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/trisquel/guest.rb +9 -0
  457. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/trisquel/plugin.rb +15 -0
  458. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/ubuntu/guest.rb +10 -0
  459. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/ubuntu/plugin.rb +15 -0
  460. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/change_host_name.rb +36 -0
  461. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/choose_addressable_ip_addr.rb +20 -0
  462. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/configure_networks.rb +80 -0
  463. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/halt.rb +16 -0
  464. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/mount_shared_folder.rb +53 -0
  465. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/reboot.rb +23 -0
  466. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/cap/rsync.rb +22 -0
  467. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/config.rb +23 -0
  468. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/errors.rb +18 -0
  469. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/guest.rb +10 -0
  470. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/guest_network.rb +125 -0
  471. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/plugin.rb +88 -0
  472. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/scripts/mount_volume.ps1.erb +48 -0
  473. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/scripts/reboot_detect.ps1 +42 -0
  474. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/scripts/set_work_network.ps1 +6 -0
  475. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/guests/windows/scripts/winrs_v3_get_adapters.ps1 +11 -0
  476. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/arch/cap/nfs.rb +19 -0
  477. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/arch/host.rb +11 -0
  478. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/arch/plugin.rb +32 -0
  479. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/bsd/cap/nfs.rb +198 -0
  480. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/bsd/host.rb +12 -0
  481. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/bsd/plugin.rb +40 -0
  482. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/darwin/cap/provider_install_virtualbox.rb +61 -0
  483. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/darwin/cap/rdp.rb +61 -0
  484. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/darwin/host.rb +11 -0
  485. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/darwin/plugin.rb +25 -0
  486. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/darwin/scripts/install_virtualbox.sh +15 -0
  487. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/freebsd/cap/nfs.rb +31 -0
  488. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/freebsd/host.rb +12 -0
  489. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/freebsd/plugin.rb +31 -0
  490. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/gentoo/cap/nfs.rb +46 -0
  491. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/gentoo/host.rb +11 -0
  492. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/gentoo/plugin.rb +28 -0
  493. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/linux/cap/nfs.rb +194 -0
  494. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/linux/cap/rdp.rb +41 -0
  495. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/linux/host.rb +12 -0
  496. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/linux/plugin.rb +52 -0
  497. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/null/host.rb +12 -0
  498. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/null/plugin.rb +15 -0
  499. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/redhat/cap/nfs.rb +47 -0
  500. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/redhat/host.rb +30 -0
  501. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/redhat/plugin.rb +27 -0
  502. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/slackware/cap/nfs.rb +15 -0
  503. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/slackware/host.rb +12 -0
  504. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/slackware/plugin.rb +27 -0
  505. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/suse/cap/nfs.rb +19 -0
  506. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/suse/host.rb +29 -0
  507. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/suse/plugin.rb +30 -0
  508. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/cap/nfs.rb +11 -0
  509. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/cap/provider_install_virtualbox.rb +62 -0
  510. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/cap/ps.rb +47 -0
  511. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/cap/rdp.rb +30 -0
  512. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/host.rb +13 -0
  513. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/plugin.rb +35 -0
  514. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/hosts/windows/scripts/install_virtualbox.ps1 +37 -0
  515. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/config/nfs.rb +20 -0
  516. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/config/package.rb +17 -0
  517. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/config/ssh.rb +47 -0
  518. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/config/vagrant.rb +31 -0
  519. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/config/vm.rb +188 -0
  520. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v1/plugin.rb +44 -0
  521. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/package.rb +21 -0
  522. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/push.rb +143 -0
  523. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/ssh.rb +90 -0
  524. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/ssh_connect.rb +68 -0
  525. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/vagrant.rb +22 -0
  526. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/vm.rb +775 -0
  527. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/vm_provisioner.rb +102 -0
  528. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/config/vm_subvm.rb +30 -0
  529. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/kernel_v2/plugin.rb +44 -0
  530. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action.rb +320 -0
  531. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/build.rb +81 -0
  532. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/compare_synced_folders.rb +58 -0
  533. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/create.rb +159 -0
  534. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/destroy.rb +31 -0
  535. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/destroy_build_image.rb +48 -0
  536. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/forwarded_ports.rb +31 -0
  537. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/has_ssh.rb +18 -0
  538. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine.rb +72 -0
  539. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_build_dir.rb +46 -0
  540. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_port_checker.rb +31 -0
  541. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_port_warning.rb +37 -0
  542. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_required.rb +17 -0
  543. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_sync_folders.rb +174 -0
  544. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/host_machine_sync_folders_disable.rb +88 -0
  545. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/init_state.rb +20 -0
  546. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/is_build.rb +16 -0
  547. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/is_host_machine_created.rb +29 -0
  548. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/login.rb +39 -0
  549. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/prepare_nfs_settings.rb +57 -0
  550. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/prepare_nfs_valid_ids.rb +19 -0
  551. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/prepare_ssh.rb +45 -0
  552. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/pull.rb +27 -0
  553. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/start.rb +21 -0
  554. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/stop.rb +21 -0
  555. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/action/wait_for_running.rb +66 -0
  556. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/cap/proxy_machine.rb +12 -0
  557. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/cap/public_address.rb +23 -0
  558. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/command/exec.rb +104 -0
  559. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/command/logs.rb +108 -0
  560. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/command/run.rb +73 -0
  561. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/communicator.rb +196 -0
  562. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/config.rb +315 -0
  563. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/driver.rb +176 -0
  564. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/driver/compose.rb +287 -0
  565. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/errors.rb +73 -0
  566. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/executor/local.rb +35 -0
  567. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/executor/vagrant.rb +81 -0
  568. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/plugin.rb +81 -0
  569. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/provider.rb +205 -0
  570. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/docker/synced_folder.rb +29 -0
  571. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action.rb +307 -0
  572. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/check_enabled.rb +23 -0
  573. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/delete_vm.rb +17 -0
  574. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/export.rb +39 -0
  575. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/import.rb +177 -0
  576. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/is_windows.rb +16 -0
  577. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/message_will_not_destroy.rb +17 -0
  578. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/net_set_mac.rb +20 -0
  579. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/net_set_vlan.rb +20 -0
  580. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/package.rb +16 -0
  581. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/package_metadata_json.rb +34 -0
  582. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/package_setup_files.rb +16 -0
  583. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/package_setup_folders.rb +18 -0
  584. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/package_vagrantfile.rb +34 -0
  585. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/read_guest_ip.rb +42 -0
  586. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/read_state.rb +31 -0
  587. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/resume_vm.rb +17 -0
  588. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/snapshot_delete.rb +27 -0
  589. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/snapshot_restore.rb +23 -0
  590. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/snapshot_save.rb +27 -0
  591. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/start_instance.rb +17 -0
  592. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/stop_instance.rb +17 -0
  593. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/suspend_vm.rb +17 -0
  594. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/action/wait_for_ip_address.rb +55 -0
  595. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/cap/public_address.rb +15 -0
  596. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/cap/snapshot_list.rb +11 -0
  597. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/config.rb +69 -0
  598. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/driver.rb +145 -0
  599. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/errors.rb +42 -0
  600. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/plugin.rb +46 -0
  601. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/provider.rb +100 -0
  602. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/check_hyperv.ps1 +10 -0
  603. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/clone_vhd.ps1 +9 -0
  604. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/create_snapshot.ps1 +8 -0
  605. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/delete_snapshot.ps1 +8 -0
  606. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/delete_vm.ps1 +7 -0
  607. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/export_vm.ps1 +15 -0
  608. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/file_sync.ps1 +123 -0
  609. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/get_network_config.ps1 +27 -0
  610. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/get_network_mac.ps1 +28 -0
  611. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/get_switches.ps1 +12 -0
  612. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/get_vm_status.ps1 +51 -0
  613. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/has_vmcx_support.ps1 +11 -0
  614. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/import_vm_vmcx.ps1 +163 -0
  615. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/import_vm_xml.ps1 +221 -0
  616. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/list_snapshots.ps1 +12 -0
  617. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/restore_snapshot.ps1 +8 -0
  618. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/resume_vm.ps1 +7 -0
  619. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/set_network_mac.ps1 +18 -0
  620. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +18 -0
  621. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +37 -0
  622. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/start_vm.ps1 +27 -0
  623. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/stop_vm.ps1 +8 -0
  624. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/suspend_vm.ps1 +7 -0
  625. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/utils/create_session.ps1 +34 -0
  626. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/hyperv/scripts/utils/write_messages.ps1 +20 -0
  627. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action.rb +411 -0
  628. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/boot.rb +23 -0
  629. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/check_accessible.rb +23 -0
  630. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/check_created.rb +21 -0
  631. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/check_guest_additions.rb +55 -0
  632. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/check_running.rb +21 -0
  633. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/check_virtualbox.rb +22 -0
  634. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clean_machine_folder.rb +43 -0
  635. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +20 -0
  636. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_network_interfaces.rb +31 -0
  637. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/created.rb +20 -0
  638. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/customize.rb +45 -0
  639. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/destroy.rb +19 -0
  640. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +23 -0
  641. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/discard_state.rb +20 -0
  642. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/export.rb +40 -0
  643. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/forced_halt.rb +25 -0
  644. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/forward_ports.rb +89 -0
  645. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/import.rb +96 -0
  646. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/import_master.rb +81 -0
  647. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/is_paused.rb +20 -0
  648. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/is_running.rb +20 -0
  649. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/is_saved.rb +20 -0
  650. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/match_mac_address.rb +24 -0
  651. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/message_already_running.rb +16 -0
  652. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/message_not_created.rb +16 -0
  653. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/message_not_running.rb +16 -0
  654. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/message_will_not_destroy.rb +17 -0
  655. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/network.rb +556 -0
  656. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/network_fix_ipv6.rb +81 -0
  657. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/package.rb +16 -0
  658. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/package_setup_files.rb +16 -0
  659. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/package_setup_folders.rb +18 -0
  660. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/package_vagrantfile.rb +33 -0
  661. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +65 -0
  662. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +35 -0
  663. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +141 -0
  664. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb +17 -0
  665. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/resume.rb +25 -0
  666. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/sane_defaults.rb +89 -0
  667. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/set_name.rb +55 -0
  668. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/setup_package_files.rb +17 -0
  669. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_delete.rb +32 -0
  670. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_restore.rb +28 -0
  671. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_save.rb +25 -0
  672. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/suspend.rb +20 -0
  673. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/cap.rb +36 -0
  674. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/cap/public_address.rb +15 -0
  675. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/config.rb +198 -0
  676. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/base.rb +449 -0
  677. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/meta.rb +186 -0
  678. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_4_0.rb +557 -0
  679. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_4_1.rb +681 -0
  680. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_4_2.rb +694 -0
  681. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_4_3.rb +734 -0
  682. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_5_0.rb +741 -0
  683. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/driver/version_5_1.rb +16 -0
  684. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/model/forwarded_port.rb +70 -0
  685. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/plugin.rb +70 -0
  686. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/provider.rb +128 -0
  687. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/synced_folder.rb +120 -0
  688. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +37 -0
  689. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +24 -0
  690. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +50 -0
  691. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/facts.rb +24 -0
  692. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +40 -0
  693. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +23 -0
  694. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/pip/pip.rb +30 -0
  695. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/posix/ansible_installed.rb +25 -0
  696. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +48 -0
  697. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +22 -0
  698. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +33 -0
  699. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/config/base.rb +118 -0
  700. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/config/guest.rb +56 -0
  701. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/config/host.rb +54 -0
  702. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/errors.rb +31 -0
  703. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/helpers.rb +17 -0
  704. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/plugin.rb +80 -0
  705. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/provisioner/base.rb +291 -0
  706. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/provisioner/guest.rb +177 -0
  707. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/ansible/provisioner/host.rb +305 -0
  708. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +21 -0
  709. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +14 -0
  710. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +34 -0
  711. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +34 -0
  712. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb +18 -0
  713. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/config.rb +126 -0
  714. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/plugin.rb +47 -0
  715. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/cfengine/provisioner.rb +140 -0
  716. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/debian/chef_install.rb +19 -0
  717. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/freebsd/chef_install.rb +18 -0
  718. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +22 -0
  719. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/linux/chef_installed.rb +22 -0
  720. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/omnios/chef_install.rb +20 -0
  721. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/omnios/chef_installed.rb +23 -0
  722. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/redhat/chef_install.rb +24 -0
  723. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/suse/chef_install.rb +27 -0
  724. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/windows/chef_install.rb +16 -0
  725. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/cap/windows/chef_installed.rb +20 -0
  726. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/command_builder.rb +84 -0
  727. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/base.rb +119 -0
  728. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/base_runner.rb +128 -0
  729. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/chef_apply.rb +50 -0
  730. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/chef_client.rb +74 -0
  731. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/chef_solo.rb +138 -0
  732. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/config/chef_zero.rb +123 -0
  733. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/installer.rb +47 -0
  734. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/omnibus.rb +39 -0
  735. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/plugin.rb +107 -0
  736. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/provisioner/base.rb +254 -0
  737. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/provisioner/chef_apply.rb +71 -0
  738. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/provisioner/chef_client.rb +169 -0
  739. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/provisioner/chef_solo.rb +232 -0
  740. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/chef/provisioner/chef_zero.rb +113 -0
  741. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/debian/docker_install.rb +18 -0
  742. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/debian/docker_start_service.rb +13 -0
  743. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/fedora/docker_install.rb +27 -0
  744. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb +19 -0
  745. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/linux/docker_daemon_running.rb +13 -0
  746. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/linux/docker_installed.rb +26 -0
  747. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/redhat/docker_install.rb +38 -0
  748. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/cap/redhat/docker_start_service.rb +16 -0
  749. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/client.rb +197 -0
  750. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/config.rb +75 -0
  751. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/installer.rb +32 -0
  752. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/plugin.rb +63 -0
  753. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/docker/provisioner.rb +45 -0
  754. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/file/config.rb +31 -0
  755. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/file/plugin.rb +23 -0
  756. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/file/provisioner.rb +29 -0
  757. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/puppet/config/puppet.rb +171 -0
  758. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/puppet/config/puppet_server.rb +81 -0
  759. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/puppet/plugin.rb +33 -0
  760. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/puppet/provisioner/puppet.rb +298 -0
  761. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/puppet/provisioner/puppet_server.rb +111 -0
  762. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/bootstrap-salt.ps1 +118 -0
  763. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/bootstrap-salt.sh +12 -0
  764. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/config.rb +153 -0
  765. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/errors.rb +11 -0
  766. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/plugin.rb +22 -0
  767. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/salt/provisioner.rb +428 -0
  768. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/shell/config.rb +124 -0
  769. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/shell/plugin.rb +23 -0
  770. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/provisioners/shell/provisioner.rb +295 -0
  771. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/atlas/config.rb +148 -0
  772. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/atlas/errors.rb +13 -0
  773. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/atlas/locales/en.yml +22 -0
  774. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/atlas/plugin.rb +35 -0
  775. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/atlas/push.rb +84 -0
  776. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/ftp/adapter.rb +144 -0
  777. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/ftp/config.rb +130 -0
  778. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/ftp/locales/en.yml +11 -0
  779. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/ftp/plugin.rb +33 -0
  780. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/ftp/push.rb +120 -0
  781. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/heroku/config.rb +74 -0
  782. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/heroku/errors.rb +21 -0
  783. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/heroku/locales/en.yml +30 -0
  784. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/heroku/plugin.rb +33 -0
  785. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/heroku/push.rb +137 -0
  786. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/local-exec/config.rb +77 -0
  787. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/local-exec/errors.rb +13 -0
  788. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/local-exec/locales/en.yml +23 -0
  789. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/local-exec/plugin.rb +33 -0
  790. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/local-exec/push.rb +84 -0
  791. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/noop/config.rb +16 -0
  792. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/noop/plugin.rb +22 -0
  793. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/pushes/noop/push.rb +9 -0
  794. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/nfs/action_cleanup.rb +29 -0
  795. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/nfs/config.rb +32 -0
  796. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/nfs/plugin.rb +46 -0
  797. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/nfs/synced_folder.rb +160 -0
  798. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/command/rsync.rb +71 -0
  799. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/command/rsync_auto.rb +208 -0
  800. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/default_unix_cap.rb +45 -0
  801. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/helper.rb +204 -0
  802. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/plugin.rb +28 -0
  803. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/rsync/synced_folder.rb +53 -0
  804. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/errors.rb +34 -0
  805. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/plugin.rb +32 -0
  806. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/scripts/host_info.ps1 +21 -0
  807. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/scripts/mount_share.ps1 +56 -0
  808. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/scripts/ps_version.ps1 +1 -0
  809. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/scripts/set_share.ps1 +44 -0
  810. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/smb/synced_folder.rb +167 -0
  811. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/synced_folders/unix_mount_helpers.rb +105 -0
  812. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/scripts/sign.sh +26 -0
  813. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/scripts/website_push_docs.sh +40 -0
  814. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/scripts/website_push_www.sh +40 -0
  815. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/tasks/acceptance.rake +22 -0
  816. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/tasks/bundler.rake +3 -0
  817. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/tasks/test.rake +9 -0
  818. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/commands/init/Vagrantfile.erb +86 -0
  819. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/commands/init/Vagrantfile.min.erb +9 -0
  820. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/commands/ssh_config/config.erb +35 -0
  821. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/config/messages.erb +14 -0
  822. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/config/validation_failed.erb +7 -0
  823. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/arch/network_dhcp.erb +4 -0
  824. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/arch/network_static.erb +8 -0
  825. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/arch/network_static6.erb +8 -0
  826. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/coreos/etcd.service.erb +10 -0
  827. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/debian/network_dhcp.erb +13 -0
  828. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/debian/network_static.erb +10 -0
  829. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/debian/network_static6.erb +10 -0
  830. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/freebsd/network_dhcp.erb +4 -0
  831. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/freebsd/network_static.erb +6 -0
  832. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/freebsd/network_static6.erb +6 -0
  833. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/funtoo/network_dhcp.erb +4 -0
  834. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/funtoo/network_static.erb +10 -0
  835. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/funtoo/network_static6.erb +9 -0
  836. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/gentoo/network_dhcp.erb +4 -0
  837. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/gentoo/network_static.erb +7 -0
  838. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/gentoo/network_static6.erb +7 -0
  839. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/gentoo/network_systemd.erb +16 -0
  840. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/netbsd/network_dhcp.erb +3 -0
  841. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/netbsd/network_static.erb +3 -0
  842. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/nixos/hostname.erb +6 -0
  843. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/nixos/network.erb +16 -0
  844. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/openbsd/network_dhcp.erb +1 -0
  845. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/openbsd/network_static.erb +1 -0
  846. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/redhat/network_dhcp.erb +7 -0
  847. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/redhat/network_static.erb +16 -0
  848. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/redhat/network_static6.erb +12 -0
  849. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/slackware/network_dhcp.erb +11 -0
  850. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/slackware/network_static.erb +13 -0
  851. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/suse/network_dhcp.erb +6 -0
  852. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/guests/suse/network_static.erb +13 -0
  853. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/comm_winrm.yml +82 -0
  854. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/command_ps.yml +27 -0
  855. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/command_rdp.yml +25 -0
  856. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/en.yml +2381 -0
  857. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/guest_windows.yml +19 -0
  858. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/providers_docker.yml +232 -0
  859. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/providers_hyperv.yml +73 -0
  860. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/locales/synced_folder_smb.yml +54 -0
  861. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/nfs/exports.erb +5 -0
  862. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/nfs/exports_freebsd.erb +5 -0
  863. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/nfs/exports_linux.erb +7 -0
  864. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/package_Vagrantfile.erb +11 -0
  865. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/provisioners/chef_client/client.erb +41 -0
  866. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/provisioners/chef_solo/solo.erb +52 -0
  867. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/provisioners/chef_zero/zero.erb +45 -0
  868. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/templates/rgloader.rb +9 -0
  869. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/acceptance/base.rb +2 -0
  870. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/acceptance/provider-virtualbox/linked_clone_spec.rb +35 -0
  871. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/acceptance/provider-virtualbox/network_intnet_spec.rb +21 -0
  872. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/acceptance/shared/context_virtualbox.rb +5 -0
  873. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/config/acceptance_boxes.yml +7 -0
  874. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/support/isolated_environment.rb +47 -0
  875. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/base.rb +65 -0
  876. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/box/command/add_test.rb +67 -0
  877. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/box/command/prune_test.rb +194 -0
  878. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/box/command/remove_test.rb +81 -0
  879. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/box/command/repackage_test.rb +63 -0
  880. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/box/command/update_test.rb +363 -0
  881. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/cap/command_test.rb +51 -0
  882. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/global-status/command_test.rb +80 -0
  883. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/init/command_test.rb +93 -0
  884. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/list-commands/command_test.rb +40 -0
  885. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/login/client_test.rb +140 -0
  886. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/login/command_test.rb +96 -0
  887. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/login/middleware/add_authentication_test.rb +104 -0
  888. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/package/command_test.rb +102 -0
  889. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/expunge_plugins_test.rb +64 -0
  890. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/install_gem_test.rb +95 -0
  891. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/plugin_exists_check_test.rb +31 -0
  892. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/uninstall_plugin_test.rb +24 -0
  893. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/plugin/action/update_gems_test.rb +35 -0
  894. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/port/command_test.rb +137 -0
  895. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/provider/command_test.rb +47 -0
  896. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/push/command_test.rb +141 -0
  897. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/delete_test.rb +97 -0
  898. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/list_test.rb +83 -0
  899. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/pop_test.rb +52 -0
  900. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/push_test.rb +46 -0
  901. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/restore_test.rb +97 -0
  902. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/save_test.rb +110 -0
  903. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/ssh_config/command_test.rb +140 -0
  904. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/up/command_test.rb +65 -0
  905. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/validate/command_test.rb +52 -0
  906. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/ssh/communicator_test.rb +599 -0
  907. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winrm/command_filter_test.rb +95 -0
  908. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winrm/communicator_test.rb +150 -0
  909. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winrm/config_test.rb +15 -0
  910. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winrm/helper_test.rb +144 -0
  911. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winrm/shell_test.rb +152 -0
  912. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/communicators/winssh/communicator_test.rb +525 -0
  913. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/amazon/cap/flavor_test.rb +19 -0
  914. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/arch/cap/change_host_name_test.rb +38 -0
  915. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/arch/cap/configure_networks_test.rb +65 -0
  916. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/arch/cap/rsync_test.rb +30 -0
  917. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/arch/cap/smb_test.rb +38 -0
  918. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/atomic/cap/change_host_name_test.rb +39 -0
  919. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/atomic/cap/docker_test.rb +28 -0
  920. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/bsd/cap/halt_test.rb +44 -0
  921. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/bsd/cap/insert_public_key_test.rb +32 -0
  922. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/bsd/cap/nfs_test.rb +67 -0
  923. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/bsd/cap/remove_public_key_test.rb +32 -0
  924. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/coreos/cap/change_host_name_test.rb +37 -0
  925. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/coreos/cap/configure_networks_test.rb +59 -0
  926. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/coreos/cap/docker_test.rb +28 -0
  927. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/darwin/cap/change_host_name_test.rb +40 -0
  928. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/darwin/cap/choose_addressable_ip_addr_test.rb +36 -0
  929. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/darwin/cap/halt_test.rb +43 -0
  930. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/debian/cap/change_host_name_test.rb +39 -0
  931. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/debian/cap/configure_networks_test.rb +58 -0
  932. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/debian/cap/nfs_client_test.rb +30 -0
  933. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/debian/cap/rsync_test.rb +30 -0
  934. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/debian/cap/smb_test.rb +38 -0
  935. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/esxi/cap/halt_test.rb +44 -0
  936. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/esxi/cap/public_key_test.rb +48 -0
  937. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/freebsd/cap/change_host_name_test.rb +40 -0
  938. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/freebsd/cap/configure_networks_test.rb +51 -0
  939. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/freebsd/cap/rsync_test.rb +46 -0
  940. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/choose_addressable_ip_addr_test.rb +38 -0
  941. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/halt_test.rb +43 -0
  942. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb +32 -0
  943. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/mount_nfs_test.rb +91 -0
  944. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/mount_shared_folder_test.rb +13 -0
  945. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/mount_smb_shared_folder.rb +71 -0
  946. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/mount_virtual_box_shared_folder_test.rb +211 -0
  947. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/network_interfaces_test.rb +84 -0
  948. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/nfs_client_test.rb +29 -0
  949. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/port_test.rb +30 -0
  950. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/remove_public_key_test.rb +32 -0
  951. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/rsync_test.rb +97 -0
  952. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/omnios/cap/change_host_name_test.rb +41 -0
  953. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/omnios/cap/mount_nfs_folder_test.rb +47 -0
  954. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/omnios/cap/rsync_test.rb +29 -0
  955. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/openbsd/cap/halt_test.rb +43 -0
  956. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/openbsd/cap/rsync_test.rb +59 -0
  957. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/photon/cap/change_host_name_test.rb +42 -0
  958. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/photon/cap/configure_networks_test.rb +51 -0
  959. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/photon/cap/docker_test.rb +31 -0
  960. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/pld/cap/change_host_name_test.rb +39 -0
  961. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/pld/cap/flavor_test.rb +21 -0
  962. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/pld/cap/network_scripts_dir_test.rb +21 -0
  963. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/change_host_name_test.rb +43 -0
  964. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/configure_networks_test.rb +185 -0
  965. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/flavor_test.rb +40 -0
  966. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/network_scripts_dir_test.rb +21 -0
  967. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/nfs_client_test.rb +30 -0
  968. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/redhat/cap/rsync_test.rb +29 -0
  969. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/slackware/cap/change_host_name_test.rb +40 -0
  970. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/slackware/cap/configure_networks_test.rb +52 -0
  971. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/change_host_name_test.rb +33 -0
  972. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/configure_networks_test.rb +61 -0
  973. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/halt_test.rb +39 -0
  974. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/insert_public_key_test.rb +38 -0
  975. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/mount_nfs_test.rb +30 -0
  976. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/remove_public_key_test.rb +34 -0
  977. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/smartos/cap/rsync_test.rb +47 -0
  978. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/solaris/cap/halt_test.rb +44 -0
  979. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/solaris11/cap/halt_test.rb +44 -0
  980. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/change_host_name_test.rb +40 -0
  981. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/configure_networks_test.rb +57 -0
  982. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/halt_test.rb +43 -0
  983. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/network_scripts_dir_test.rb +19 -0
  984. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/nfs_client_test.rb +31 -0
  985. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/suse/cap/rsync_test.rb +38 -0
  986. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/tinycore/cap/change_host_name_test.rb +26 -0
  987. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/tinycore/cap/halt_test.rb +44 -0
  988. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/cap/change_host_name_test.rb +41 -0
  989. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/cap/halt_test.rb +33 -0
  990. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/cap/mount_shared_folder_test.rb +124 -0
  991. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/cap/reboot_test.rb +54 -0
  992. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/cap/rsync_test.rb +26 -0
  993. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/config_test.rb +38 -0
  994. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/windows/guest_network_test.rb +50 -0
  995. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/hosts/darwin/cap/rdp_test.rb +36 -0
  996. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/hosts/linux/cap/nfs_test.rb +156 -0
  997. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/kernel_v2/config/package_test.rb +14 -0
  998. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/kernel_v2/config/push_test.rb +352 -0
  999. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/kernel_v2/config/ssh_test.rb +21 -0
  1000. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/kernel_v2/config/vagrant_test.rb +20 -0
  1001. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/kernel_v2/config/vm_test.rb +589 -0
  1002. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/action/create_test.rb +55 -0
  1003. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/command/exec_test.rb +44 -0
  1004. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/config_test.rb +249 -0
  1005. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/driver_compose_test.rb +268 -0
  1006. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/driver_test.rb +227 -0
  1007. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/docker/synced_folder_test.rb +30 -0
  1008. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/hyperv/config_test.rb +65 -0
  1009. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/hyperv/provider_test.rb +99 -0
  1010. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/network_fix_ipv6_test.rb +165 -0
  1011. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/network_test.rb +170 -0
  1012. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_settings_test.rb +138 -0
  1013. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb +48 -0
  1014. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/base.rb +4 -0
  1015. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/cap/public_address_test.rb +43 -0
  1016. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/cap_test.rb +43 -0
  1017. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/config_test.rb +77 -0
  1018. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/driver/version_4_0_test.rb +9 -0
  1019. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/driver/version_4_1_test.rb +9 -0
  1020. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/driver/version_4_2_test.rb +9 -0
  1021. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/driver/version_4_3_test.rb +11 -0
  1022. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/support/shared/virtualbox_driver_version_4_x_examples.rb +245 -0
  1023. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/synced_folder_test.rb +49 -0
  1024. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/ansible/config/guest_test.rb +94 -0
  1025. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/ansible/config/host_test.rb +100 -0
  1026. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/ansible/config/shared.rb +109 -0
  1027. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/ansible/provisioner_test.rb +1008 -0
  1028. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/command_builder_test.rb +149 -0
  1029. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/base_runner_test.rb +265 -0
  1030. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/base_test.rb +85 -0
  1031. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/chef_apply_test.rb +85 -0
  1032. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/chef_client_test.rb +100 -0
  1033. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/chef_solo_test.rb +155 -0
  1034. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/config/chef_zero_test.rb +170 -0
  1035. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/omnibus_test.rb +46 -0
  1036. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/chef/provisioner/base_test.rb +90 -0
  1037. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/docker/config_test.rb +140 -0
  1038. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/file/config_test.rb +80 -0
  1039. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/file/provisioner_test.rb +75 -0
  1040. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/salt/config_test.rb +82 -0
  1041. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/salt/provisioner_test.rb +35 -0
  1042. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/shell/config_test.rb +131 -0
  1043. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/shell/provisioner_test.rb +108 -0
  1044. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/provisioners/support/shared/config.rb +34 -0
  1045. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/atlas/config_test.rb +207 -0
  1046. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/atlas/push_test.rb +181 -0
  1047. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/ftp/adapter_test.rb +114 -0
  1048. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/ftp/config_test.rb +171 -0
  1049. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/ftp/push_test.rb +300 -0
  1050. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/heroku/config_test.rb +99 -0
  1051. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/heroku/push_test.rb +313 -0
  1052. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/local-exec/config_test.rb +164 -0
  1053. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/local-exec/push_test.rb +126 -0
  1054. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/pushes/noop/config_test.rb +14 -0
  1055. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/nfs/action_cleanup_test.rb +51 -0
  1056. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/nfs/config_test.rb +17 -0
  1057. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/rsync/command/rsync_auto_test.rb +143 -0
  1058. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/rsync/command/rsync_test.rb +72 -0
  1059. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/rsync/helper_test.rb +271 -0
  1060. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/synced_folders/rsync/synced_folder_test.rb +97 -0
  1061. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/dummy_communicator.rb +83 -0
  1062. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/dummy_provider.rb +41 -0
  1063. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/isolated_environment.rb +217 -0
  1064. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/shared/action_synced_folders_context.rb +15 -0
  1065. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/shared/base_context.rb +145 -0
  1066. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/shared/capability_helpers_context.rb +29 -0
  1067. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/shared/plugin_command_context.rb +12 -0
  1068. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/support/shared/virtualbox_context.rb +39 -0
  1069. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/arch/network_dhcp_test.rb +19 -0
  1070. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/arch/network_static_test.rb +39 -0
  1071. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/debian/network_dhcp_test.rb +42 -0
  1072. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/debian/network_static_test.rb +43 -0
  1073. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/freebsd/network_dhcp_test.rb +19 -0
  1074. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/freebsd/network_static_test.rb +35 -0
  1075. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/funtoo/network_dhcp_test.rb +19 -0
  1076. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/funtoo/network_static_test.rb +141 -0
  1077. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/gentoo/network_dhcp_test.rb +19 -0
  1078. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/gentoo/network_static_test.rb +37 -0
  1079. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/gentoo/systemd_network_test.rb +73 -0
  1080. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/netbsd/network_dhcp_test.rb +18 -0
  1081. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/netbsd/network_static_test.rb +20 -0
  1082. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/redhat/network_dhcp_test.rb +39 -0
  1083. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/redhat/network_static_test.rb +49 -0
  1084. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/suse/network_dhcp_test.rb +21 -0
  1085. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/templates/guests/suse/network_static_test.rb +49 -0
  1086. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builder_test.rb +286 -0
  1087. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/box_add_test.rb +1223 -0
  1088. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/box_check_outdated_test.rb +219 -0
  1089. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/box_remove_test.rb +219 -0
  1090. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/call_test.rb +176 -0
  1091. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/confirm_test.rb +53 -0
  1092. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/env_set_test.rb +20 -0
  1093. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/graceful_halt_test.rb +60 -0
  1094. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/handle_box_test.rb +136 -0
  1095. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/handle_forwarded_port_collisions_test.rb +170 -0
  1096. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/is_env_set_test.rb +31 -0
  1097. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/is_state_test.rb +51 -0
  1098. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/lock_test.rb +101 -0
  1099. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/message_test.rb +31 -0
  1100. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/mixin_synced_folders_test.rb +318 -0
  1101. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/provision_test.rb +208 -0
  1102. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/provisioner_cleanup_test.rb +84 -0
  1103. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/ssh_exec_test.rb +48 -0
  1104. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/ssh_run_test.rb +83 -0
  1105. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/synced_folder_cleanup_test.rb +139 -0
  1106. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/builtin/synced_folders_test.rb +232 -0
  1107. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/hook_test.rb +135 -0
  1108. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/runner_test.rb +81 -0
  1109. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/action/warden_test.rb +92 -0
  1110. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/batch_action_test.rb +67 -0
  1111. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/box_collection_test.rb +491 -0
  1112. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/box_metadata_test.rb +198 -0
  1113. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/box_test.rb +358 -0
  1114. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/capability_host_test.rb +163 -0
  1115. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/cli_test.rb +57 -0
  1116. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/loader_test.rb +216 -0
  1117. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v1/dummy_config_test.rb +24 -0
  1118. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v1/loader_test.rb +145 -0
  1119. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v1/root_test.rb +40 -0
  1120. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v2/dummy_config_test.rb +24 -0
  1121. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v2/loader_test.rb +151 -0
  1122. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v2/root_test.rb +126 -0
  1123. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config/v2/util_test.rb +21 -0
  1124. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/config_test.rb +91 -0
  1125. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/environment_test.rb +1387 -0
  1126. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/errors_test.rb +56 -0
  1127. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/guest_test.rb +102 -0
  1128. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/host_test.rb +18 -0
  1129. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/machine_index_test.rb +348 -0
  1130. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/machine_state_test.rb +26 -0
  1131. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/machine_test.rb +829 -0
  1132. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/manager_test.rb +253 -0
  1133. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/state_file_test.rb +120 -0
  1134. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/command_test.rb +143 -0
  1135. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/communicator_test.rb +9 -0
  1136. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/config_test.rb +50 -0
  1137. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/host_test.rb +5 -0
  1138. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/manager_test.rb +114 -0
  1139. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/plugin_test.rb +267 -0
  1140. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v1/provider_test.rb +18 -0
  1141. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/command_test.rb +330 -0
  1142. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/communicator_test.rb +4 -0
  1143. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/components_test.rb +21 -0
  1144. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/config_test.rb +76 -0
  1145. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/host_test.rb +5 -0
  1146. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/manager_test.rb +244 -0
  1147. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/plugin_test.rb +421 -0
  1148. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/plugin/v2/provider_test.rb +58 -0
  1149. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/registry_test.rb +168 -0
  1150. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/shared_helpers_test.rb +146 -0
  1151. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/ui_test.rb +395 -0
  1152. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +16 -0
  1153. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/command_deprecation_test.rb +106 -0
  1154. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/deep_merge_test.rb +29 -0
  1155. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/downloader_test.rb +213 -0
  1156. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/env_test.rb +43 -0
  1157. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/file_checksum_test.rb +23 -0
  1158. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +38 -0
  1159. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/is_port_open_test.rb +53 -0
  1160. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/keypair_test.rb +34 -0
  1161. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/line_endings_helper_test.rb +16 -0
  1162. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/network_ip_test.rb +29 -0
  1163. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/platform_test.rb +67 -0
  1164. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/presence_test.rb +50 -0
  1165. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/retryable_test.rb +106 -0
  1166. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/safe_chdir_test.rb +49 -0
  1167. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/scoped_hash_override_test.rb +50 -0
  1168. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/shell_quote_test.rb +12 -0
  1169. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/ssh_test.rb +178 -0
  1170. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/string_block_editor_test.rb +106 -0
  1171. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/subprocess_test.rb +111 -0
  1172. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/which_test.rb +43 -0
  1173. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/vagrantfile_test.rb +404 -0
  1174. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant_test.rb +120 -0
  1175. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/Vagrantfile.spec +78 -0
  1176. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/boxes/.keep +0 -0
  1177. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/configs/vagrant-spec.config.virtualbox.rb +10 -0
  1178. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/scripts/centos-run.virtualbox.sh +8 -0
  1179. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/scripts/centos-setup.virtualbox.sh +14 -0
  1180. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/scripts/ubuntu-run.virtualbox.sh +8 -0
  1181. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/vagrant-spec/scripts/ubuntu-setup.virtualbox.sh +12 -0
  1182. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/vagrant-spec.config.example.rb +10 -0
  1183. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/vagrant.gemspec +93 -0
  1184. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/version.txt +1 -0
  1185. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/Gemfile +3 -0
  1186. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/LICENSE.md +10 -0
  1187. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/Makefile +24 -0
  1188. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/README.md +21 -0
  1189. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/config.rb +101 -0
  1190. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/packer.json +37 -0
  1191. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/scripts/deploy.sh +125 -0
  1192. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/404.html.md +14 -0
  1193. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/android-manifest.json.erb +18 -0
  1194. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/files/press-kit.zip +0 -0
  1195. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/customers.png +0 -0
  1196. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/android-chrome-192x192.png +0 -0
  1197. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/android-chrome-512x512.png +0 -0
  1198. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/apple-touch-icon.png +0 -0
  1199. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/favicon-16x16.png +0 -0
  1200. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/favicon-32x32.png +0 -0
  1201. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/favicon.ico +0 -0
  1202. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/mstile-150x150.png +0 -0
  1203. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/favicons/safari-pinned-tab.svg +116 -0
  1204. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/logo-hashicorp.svg +5 -0
  1205. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/logo-text.svg +5 -0
  1206. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/og-image.png +0 -0
  1207. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/parity.svg +46 -0
  1208. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/systems/apple.svg +3 -0
  1209. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/systems/linux.svg +4 -0
  1210. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/systems/windows.svg +3 -0
  1211. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/images/vmware.svg +33 -0
  1212. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/javascripts/_vmware.js +47 -0
  1213. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/javascripts/application.js +7 -0
  1214. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_buttons.scss +37 -0
  1215. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_community.scss +22 -0
  1216. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_docs.scss +75 -0
  1217. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_downloads.scss +60 -0
  1218. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_footer.scss +24 -0
  1219. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_global.scss +35 -0
  1220. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_header.scss +78 -0
  1221. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_home.scss +232 -0
  1222. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_inner.scss +95 -0
  1223. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_logos.scss +39 -0
  1224. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_syntax.scss.erb +14 -0
  1225. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_variables.scss +63 -0
  1226. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/_vmware.scss +237 -0
  1227. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/assets/stylesheets/application.scss +34 -0
  1228. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/community.html.erb +106 -0
  1229. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/boxes.html.md +81 -0
  1230. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/boxes/base.html.md +287 -0
  1231. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/boxes/format.html.md +119 -0
  1232. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/boxes/versioning.html.md +107 -0
  1233. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/box.html.md +205 -0
  1234. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/connect.html.md +34 -0
  1235. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/destroy.html.md +38 -0
  1236. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/global-status.html.md +39 -0
  1237. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/halt.html.md +29 -0
  1238. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/index.html.md +32 -0
  1239. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/init.html.md +69 -0
  1240. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/login.html.md +64 -0
  1241. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/machine-readable.html.md +162 -0
  1242. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/non-primary.html.md +34 -0
  1243. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/package.html.md +44 -0
  1244. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/plugin.html.md +144 -0
  1245. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/port.html.md +39 -0
  1246. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/powershell.html.md +22 -0
  1247. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/provision.html.md +28 -0
  1248. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/rdp.html.md +43 -0
  1249. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/reload.html.md +31 -0
  1250. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/resume.html.md +28 -0
  1251. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/rsync-auto.html.md +52 -0
  1252. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/rsync.html.md +18 -0
  1253. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/share.html.md +49 -0
  1254. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/snapshot.html.md +94 -0
  1255. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/ssh.html.md +38 -0
  1256. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/ssh_config.html.md +20 -0
  1257. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/status.html.md +18 -0
  1258. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/suspend.html.md +23 -0
  1259. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/up.html.md +43 -0
  1260. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/validate.html.md +20 -0
  1261. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/cli/version.html.md +19 -0
  1262. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/docker/basics.html.md +120 -0
  1263. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/docker/boxes.html.md +20 -0
  1264. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/docker/commands.html.md +113 -0
  1265. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/docker/configuration.html.md +117 -0
  1266. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/docker/index.html.md +27 -0
  1267. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/hyperv/boxes.html.md +103 -0
  1268. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/hyperv/configuration.html.md +52 -0
  1269. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/hyperv/index.html.md +33 -0
  1270. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/hyperv/limitations.html.md +37 -0
  1271. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/hyperv/usage.html.md +25 -0
  1272. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/index.html.md +24 -0
  1273. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/backwards-compatibility.html.md +41 -0
  1274. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/index.html.md +38 -0
  1275. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/source.html.md +78 -0
  1276. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/uninstallation.html.md +55 -0
  1277. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/upgrading-from-1-0.html.md +33 -0
  1278. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/installation/upgrading.html.md +35 -0
  1279. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/multi-machine/index.html.md +153 -0
  1280. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/networking/basic_usage.html.md +48 -0
  1281. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/networking/forwarded_ports.html.md +113 -0
  1282. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/networking/index.html.md +42 -0
  1283. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/networking/private_network.html.md +126 -0
  1284. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/networking/public_network.html.md +162 -0
  1285. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/other/atlas.html.md +23 -0
  1286. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/other/debugging.html.md +69 -0
  1287. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/other/environmental-variables.html.md +173 -0
  1288. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/other/index.html.md +17 -0
  1289. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/other/wsl.html.md +111 -0
  1290. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/action-hooks.html.md +103 -0
  1291. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/commands.html.md +135 -0
  1292. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/configuration.html.md +208 -0
  1293. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/development-basics.html.md +181 -0
  1294. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/guest-capabilities.html.md +104 -0
  1295. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/guests.html.md +102 -0
  1296. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/host-capabilities.html.md +64 -0
  1297. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/hosts.html.md +99 -0
  1298. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/index.html.md +27 -0
  1299. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/packaging.html.md +114 -0
  1300. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/providers.html.md +236 -0
  1301. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/provisioners.html.md +68 -0
  1302. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/plugins/usage.html.md +74 -0
  1303. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/basic_usage.html.md +112 -0
  1304. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/configuration.html.md +91 -0
  1305. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/custom.html.md +13 -0
  1306. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/default.html.md +29 -0
  1307. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/index.html.md +28 -0
  1308. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/providers/installation.html.md +16 -0
  1309. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/ansible.html.md +142 -0
  1310. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/ansible_common.html.md +148 -0
  1311. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/ansible_intro.html.md +256 -0
  1312. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/ansible_local.html.md +206 -0
  1313. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/basic_usage.html.md +228 -0
  1314. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/cfengine.html.md +174 -0
  1315. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/chef_apply.html.md +104 -0
  1316. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/chef_client.html.md +123 -0
  1317. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/chef_common.html.md +126 -0
  1318. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/chef_solo.html.md +202 -0
  1319. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/chef_zero.html.md +92 -0
  1320. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/docker.html.md +196 -0
  1321. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/file.html.md +51 -0
  1322. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/index.html.md +49 -0
  1323. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/puppet_agent.html.md +101 -0
  1324. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/puppet_apply.html.md +238 -0
  1325. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/salt.html.md +183 -0
  1326. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/provisioning/shell.html.md +196 -0
  1327. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/push/atlas.html.md +68 -0
  1328. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/push/ftp.html.md +64 -0
  1329. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/push/heroku.html.md +62 -0
  1330. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/push/index.html.md +61 -0
  1331. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/push/local-exec.html.md +80 -0
  1332. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/connect.html.md +57 -0
  1333. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/http.html.md +94 -0
  1334. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/index.html.md +42 -0
  1335. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/ngrok.html.md +66 -0
  1336. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/provider.html.md +28 -0
  1337. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/security.html.md +60 -0
  1338. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/share/ssh.html.md +83 -0
  1339. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/basic_usage.html.md +126 -0
  1340. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/index.html.md +23 -0
  1341. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/nfs.html.md +214 -0
  1342. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/rsync.html.md +101 -0
  1343. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/smb.html.md +110 -0
  1344. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/synced-folders/virtualbox.html.md +33 -0
  1345. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/catalog.html.md +46 -0
  1346. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/create-version.html.md +29 -0
  1347. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/create.html.md +80 -0
  1348. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/distributing.html.md +59 -0
  1349. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/index.html.md +32 -0
  1350. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/lifecycle.html.md +47 -0
  1351. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/private.html.md +44 -0
  1352. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/release-workflow.html.md +24 -0
  1353. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/boxes/using.html.md +21 -0
  1354. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/index.html.md +13 -0
  1355. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/organizations/authentication-policy.html.md +30 -0
  1356. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/organizations/create.html.md +15 -0
  1357. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/organizations/index.html.md +14 -0
  1358. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/organizations/migrate.html.md +24 -0
  1359. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/request-limits.html.md +31 -0
  1360. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/support.html.md +36 -0
  1361. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/users/authentication.html.md +56 -0
  1362. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/users/index.html.md +11 -0
  1363. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/users/recovery.html.md +13 -0
  1364. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrant-cloud/vagrant-cloud-migration.html.md +122 -0
  1365. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/index.html.md +86 -0
  1366. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/machine_settings.html.md +177 -0
  1367. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/ssh_settings.html.md +159 -0
  1368. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/tips.html.md +72 -0
  1369. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/vagrant_settings.html.md +23 -0
  1370. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/vagrant_version.html.md +33 -0
  1371. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/version.html.md +64 -0
  1372. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/winrm_settings.html.md +78 -0
  1373. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vagrantfile/winssh_settings.html.md +163 -0
  1374. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/boxes.html.md +165 -0
  1375. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/common-issues.html.md +33 -0
  1376. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/configuration.html.md +112 -0
  1377. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/index.html.md +26 -0
  1378. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/networking.html.md +58 -0
  1379. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/virtualbox/usage.html.md +19 -0
  1380. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/boxes.html.md +148 -0
  1381. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/configuration.html.md +114 -0
  1382. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/index.html.md +37 -0
  1383. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/installation.html.md +131 -0
  1384. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/kernel-upgrade.html.md +61 -0
  1385. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/known-issues.html.md +26 -0
  1386. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/docs/vmware/usage.html.md +51 -0
  1387. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/downloads.html.erb +59 -0
  1388. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/favicon.ico +0 -0
  1389. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/index.html.erb +130 -0
  1390. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/boxes.html.md +119 -0
  1391. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/index.html.md +61 -0
  1392. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/install.html.md +55 -0
  1393. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/networking.html.md +59 -0
  1394. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/project_setup.html.md +46 -0
  1395. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/providers.html.md +51 -0
  1396. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/provisioning.html.md +92 -0
  1397. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/rebuild.html.md +26 -0
  1398. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/share.html.md +73 -0
  1399. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/synced_folders.html.md +64 -0
  1400. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/teardown.html.md +53 -0
  1401. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/getting-started/up.html.md +55 -0
  1402. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/index.html.md +74 -0
  1403. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/vs/cli-tools.md +38 -0
  1404. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/vs/docker.html.md +34 -0
  1405. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/vs/index.html.md +21 -0
  1406. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/intro/vs/terraform.html.md +37 -0
  1407. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/_sidebar.erb +31 -0
  1408. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/docs.erb +263 -0
  1409. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/downloads.erb +11 -0
  1410. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/inner.erb +13 -0
  1411. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/intro.erb +43 -0
  1412. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/layout.erb +149 -0
  1413. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/layouts/vmware.erb +20 -0
  1414. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/microsoft-tile.xml.builder +14 -0
  1415. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/robots.txt +8 -0
  1416. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/security.html.erb +33 -0
  1417. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/sitemap.xml.builder +19 -0
  1418. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/vmware/eula.html.md +30 -0
  1419. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/vmware/index.html.erb +367 -0
  1420. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/vmware/privacy-policy.html.md +77 -0
  1421. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/vmware/reseller.html.md +101 -0
  1422. data/vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/website/source/vmware/terms-of-service.html.md +55 -0
  1423. metadata +1423 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dedbb4d147a323c11c9fb699e05644974e543068
4
- data.tar.gz: 0ee09e22353f04ff122fbf4ce036141252a7f787
3
+ metadata.gz: 4629112cf6cd74a0d19c03ad1b91cf4c5183ceaf
4
+ data.tar.gz: de1512459a12c58c6d76c99253238cfb698f23b0
5
5
  SHA512:
6
- metadata.gz: 6def0553a749fc93e5b5b825ef85b3e0066c62f8ef549afcdfbf0c3920d5f4316c1fb08dc88cb28f67a7d36009d4d647305c64b9d0805fd906453c9227b31244
7
- data.tar.gz: 86b8a867cba91d9f6158f0ebaa70c0e787baba496aef867578e70dc973547de69c734e6ee3f010a4d1857d009befdb77274d87c0d0246a6daaf43ec3293a030c
6
+ metadata.gz: e3c03b54816422192a1c66b7820c863e011db1c42688ffaedeee9644715abce7f1518d2519cac6be080a403b4721a6884e95aa8e72680b78d791dddcfcf0fd77
7
+ data.tar.gz: a9d03e7c5c250d5de3bfec82b9ecd442d14b905ff9ec71130ddc75b03c7ecb098b63003d1f3c59f06264097bb5dcf43b063e0f900469719359d243fa737d451c
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.license = "MIT"
11
11
  s.authors = "Mitchell Hashimoto"
12
12
  s.email = "mitchell@hashicorp.com"
13
- s.homepage = "http://www.vagrantup.com"
13
+ s.homepage = "https://github.com/mkubenka/vagrant-aws"
14
14
  s.summary = "Enables Vagrant to manage machines in EC2 and VPC."
15
15
  s.description = "Enables Vagrant to manage machines in EC2 and VPC."
16
16
 
@@ -0,0 +1,50 @@
1
+ # OS-specific
2
+ .DS_Store
3
+
4
+ # Editor swapfiles
5
+ .*.sw?
6
+ *~
7
+
8
+ # Vagrant stuff
9
+ acceptance_config.yml
10
+ boxes/*
11
+ /.vagrant
12
+ /website/.vagrant
13
+ /website/build
14
+ /vagrant-spec.config.rb
15
+
16
+ # Bundler/Rubygems
17
+ *.gem
18
+ .bundle
19
+ pkg/*
20
+ tags
21
+ /Gemfile.lock
22
+ test/tmp/
23
+ vendor/
24
+ /exec
25
+
26
+ # Documentation
27
+ _site/*
28
+ .yardoc/
29
+ doc/
30
+
31
+ # Python
32
+ *.pyc
33
+
34
+ # Rubinius
35
+ *.rbc
36
+
37
+ # IDE junk
38
+ .idea/*
39
+ *.iml
40
+ .project
41
+
42
+ # Ruby Managers
43
+ .rbenv
44
+ .rbenv-gemsets
45
+ .ruby-gemset
46
+ .ruby-version
47
+ .rvmrc
48
+
49
+ # Box storage for spec
50
+ test/vagrant-spec/boxes/*.box
@@ -0,0 +1,24 @@
1
+ language: ruby
2
+
3
+ sudo: false
4
+
5
+ cache: bundler
6
+
7
+ addons:
8
+ apt:
9
+ packages:
10
+ - bsdtar
11
+
12
+ rvm:
13
+ - 2.2.5
14
+ - 2.3.3
15
+
16
+ branches:
17
+ only:
18
+ - master
19
+
20
+ env:
21
+ global:
22
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
23
+
24
+ script: bundle exec rake test:unit
@@ -0,0 +1,5 @@
1
+ " tabstop settings
2
+ set tabstop=2
3
+ set softtabstop=2
4
+ set shiftwidth=2
5
+ set expandtab
@@ -0,0 +1,3328 @@
1
+ ## Next version (Unreleased)
2
+
3
+ FEATURES:
4
+
5
+ IMPROVEMENTS:
6
+
7
+ - commands/snapshot: Enforce unique snapshot names and introduce `--force` flag [GH-7810]
8
+ - commands/ssh: Introduce tty flag for `vagrant ssh -c` [GH-6827]
9
+ - core: Warn about vagrant CWD changes for a machine [GH-3921]
10
+ - core: Allow Compression and DSAAuthentication ssh flags to be configurable [GH-8693]
11
+ - core/box: Warn if user sets box as url [GH-7118]
12
+ - guests/kali: Add support for guest [GH-8553]
13
+ - guests/smartos: Update halt capability and add public key insert and remove capabilities [GH-8618]
14
+ - provisioners/ansible: Fix SSH keys only behavior to be consistent with Vagrant [GH-8467]
15
+ - snapshot/delete: Improve error message when given snapshot doesn't exist [GH-8653]
16
+ - snapshot/list: Raise exception if provider does not support snapshots [GH-8619]
17
+ - snapshot/restore: Improve error message when given snapshot doesn't exist [GH-8653]
18
+ - snapshot/save: Raise exception if provider does not support snapshots [GH-8619]
19
+
20
+ BUG FIXES:
21
+
22
+ - communicators/ssh: Move `none` cipher to end of default cipher list in Net::SSH [GH-8661]
23
+ - core: Add unique identifier to provisioner objects [GH-8680]
24
+ - guests/solaris: Do not use UNC style path for shared folders from windows hosts [GH-7723]
25
+ - guests/windows: Fix directory creation when using rsync for synced folders [GH-8588]
26
+ - providers/docker: Fix check for docker-compose [GH-8659, GH-8660]
27
+ - provisioners/ansible_local: Catch pip_args in FreeBSD's and SUSE's ansible_install [GH-8676]
28
+ - provisioners/salt: Fix minion ID configuration [GH-7865, GH-7454]
29
+ - snapshot/restore: Exit 1 if vm has not been created when command is invoked [GH-8653]
30
+
31
+ ## 1.9.5 (May 15, 2017)
32
+
33
+ FEATURES:
34
+
35
+ - hosts/windows: Support running within WSL [GH-8570, GH-8582]
36
+
37
+ IMPROVEMENTS:
38
+
39
+ - communicators/ssh: Retry on aborted connections [GH-8526, GH-8520]
40
+ - communicators/winssh: Enabling shared folders and networking setup [GH-8567]
41
+ - core: Remove nokogiri dependency and constraint [GH-8571]
42
+ - guests: Do not modify existing /etc/hosts content [GH-8506, GH-7794]
43
+ - guests/redhat: Update network configuration capability to properly handle NM [GH-8531]
44
+ - hosts/windows: Check for elevated shell for Hyper-V [GH-8548, GH-8510]
45
+ - hosts/windows: Fix invalid share names on Windows guests from Windows hosts [GH-8433]
46
+ - providers: Return errors from docker/hyperv on ssh when not available [GH-8565, GH-8508]
47
+ - providers/docker: Add support for driving provider with docker-compose [GH-8576]
48
+
49
+ BUG FIXES:
50
+
51
+ - guests/debian: Fix use_dhcp_assigned_default_route [GH-8577, GH-8575]
52
+ - provisioners/shell: Fix Windows batch file provisioning [GH-8539, GH-8535]
53
+ - providers/docker: Fall back to old style for SSH info lookup [GH-8566, GH-8552]
54
+ - providers/hyperv: Fix import script [GH-8529]
55
+ - providers/hyperv: Use string comparison for conditional checks in import scripts [GH-8568, GH-8444]
56
+
57
+ ## 1.9.4 (April 24, 2017)
58
+
59
+ FEATURES:
60
+
61
+ - command/validate: Add Vagrantfile validation command [GH-8264, GH-8151]
62
+ - communicators/winssh: Add WinSSH communicator for Win32-OpenSSH [GH-8485]
63
+ - provider/hyperv: Support integration services configuration [GH-8379, GH-8378]
64
+
65
+ IMPROVEMENTS:
66
+
67
+ - core: Update internal dependencies [GH-8329, GH-8456]
68
+ - core/bundler: Warn when plugin require fails instead of generating hard failure [GH-8400, GH-8392]
69
+ - core/bundler: Error when configured plugin sources are unavailable [GH-8442]
70
+ - guests/elementary: Add support for new guest "Elementary OS" [GH-8472]
71
+ - guests/esxi: Add public_key capability [GH-8310]
72
+ - guests/freebsd: Add chef_install and chef_installed? capabilities [GH-8443]
73
+ - guests/gentoo: Add support for systemd in network configuration [GH-8407, GH-8406]
74
+ - guests/windows: Support mounting synced folders via SSH on windows [GH-7425, GH-6220]
75
+ - hosts/windows: Improve user permission detection [GH-7797]
76
+ - provider/docker: Improve IP and port detection [GH-7840, GH-7651]
77
+ - provider/docker: Do not force docker host VM on Darwin or Windows [GH-8437, GH-7895]
78
+ - provisioners/ansible_local: Add `pip_args` option to define additional parameters when installing Ansible via pip [GH-8170, GH-8405]
79
+ - provisioners/ansible_local: Add `:pip_args_only` install mode to allow full custom pip installations [GH-8405]
80
+ - provisioners/salt: Update minion version installed to 2016.11.3 [GH-8448]
81
+
82
+ BUG FIXES:
83
+
84
+ - command/box: Remove extraneous sort from box list prior to display [GH-8422]
85
+ - command/box: Properly handle local paths with spaces for box add [GH-8503, GH-6825]
86
+ - command/up: Prevent other provider installation when explicitly defined [GH-8393, GH-8389]
87
+ - communicators/ssh: Do not yield empty output data [GH-8495, GH-8259]
88
+ - core: Provide fallback and retry when 0.0.0.0 is unavailable during port check [GH-8399, GH-8395]
89
+ - core: Support port checker methods that do not expect inclusion of host_ip [GH-8497, GH-8423]
90
+ - core/bundler: Check if source is local path and prevent addition to remote sources [GH-8401]
91
+ - core/ui: Prevent deadlock detection errors [GH-8414, GH-8125]
92
+ - guests/debian: Remove hardcoded device name in interface template [GH-8336, GH-7960]
93
+ - guests/linux: Fix SMB mount capbability [GH-8410, GH-8404]
94
+ - hosts/windows: Fix issues with Windows encoding [GH-8385, GH-8380, GH-8212, GH-8207, GH-7516]
95
+ - hosts/windows: Fix UNC path generation when UNC path is provided [GH-8504]
96
+ - provisioners/salt: Allow Salt version to match 2 digit month [GH-8428]
97
+ - provisioners/shell: Properly handle remote paths on Windows that include spaces [GH-8498, GH-7234]
98
+
99
+ ## 1.9.3 (March 21, 2017)
100
+
101
+ IMPROVEMENTS:
102
+
103
+ - command/plugin: Remove requirement for paths with no spaces [GH-7967]
104
+ - core: Support host_ip for forwarded ports [GH-7035, GH-8350]
105
+ - core: Include disk space hint in box install failure message [GH-8089]
106
+ - core/bundler: Allow vagrant constraint matching in prerelease mode [GH-8341]
107
+ - provisioner/docker: Include /bin/docker as valid path [GH-8390]
108
+ - provider/hyperv: Support enabling Hyper-V nested virtualization [GH-8325, GH-7738]
109
+
110
+ BUG FIXES:
111
+
112
+ - communicator/winrm: Prevent inaccurate WinRM address [GH-7983, GH-8073]
113
+ - contrib/bash: Handle path spaces in bash completion [GH-8337]
114
+ - core: Fix box sorting on find and list [GH-7956, GH-8334]
115
+ - core/bundler: Force path as preferred source on install [GH-8327]
116
+ - core/provision: Update "never" behavior to match documentation [GH-8366, GH-8016]
117
+ - plugins/push: Isolate deprecation to Atlas strategy only
118
+ - plugins/synced_folders: Give UID/GID precedence if found within mount options
119
+ [GH-8122, GH-8064, GH-7859]
120
+
121
+ ## 1.9.2 (February 27, 2017)
122
+
123
+ FEATURES:
124
+
125
+ - providers/hyperv: Support packaging of Hyper-V boxes [GH-7867]
126
+ - util/command_deprecation: Add utility module for command deprecation [GH-8300]
127
+ - util/subprocess: Add #stop and #running? methods [GH-8270]
128
+
129
+ IMPROVEMENTS:
130
+
131
+ - commands/expunge: Display default value on prompt and validate input [GH-8192, GH-8171]
132
+ - communicator/winrm: Refactor WinRM communicator to use latest WinRM
133
+ gems and V2 API [GH-8102]
134
+ - core: Scrub URL credentials from output when adding boxes [GH-8194, GH-8117]
135
+ - providers/hyperv: Prefer VMCX over XML configuration when VMCX is supported [GH-8119]
136
+
137
+ BUG FIXES:
138
+
139
+ - command/init: Include box version when using minimal option [GH-8283, GH-8282]
140
+ - command/package: Fix SecureRandom constant error [GH-8159]
141
+ - communicator/ssh: Remove any STDERR output prior to command execution [GH-8291, GH-8288]
142
+ - core/bundler: Prevent pristine warning messages [GH-8191, GH-8190, GH-8147]
143
+ - core/bundler: Fix local installations of pre-release plugins [GH-8252, GH-8253]
144
+ - core/bundler: Prefer user defined source when installing plugins [GH-8273, GH-8210]
145
+ - core/environment: Prevent persisting original environment variable if name is empty
146
+ [GH-8198, GH-8126]
147
+ - core/environment: Fix gems_path location [GH-8248]
148
+ - core/environment: Properly expand dotfile path [GH-8196, GH-8108]
149
+ - guests/arch: Fix configuring multiple network interfaces [GH-8165]
150
+ - guests/linux: Fix guest detection for names with spaces [GH-8092]
151
+ - guests/redhat: Fix network interface configuration [GH-8148]
152
+
153
+ DEPRECATIONS:
154
+
155
+ - command/push: Disable push command [GH-8300]
156
+
157
+ ## 1.9.1 (December 7, 2016)
158
+
159
+ IMPROVEMENTS:
160
+
161
+ - core: Disable Vagrantfile loading when running plugin commands [GH-8066]
162
+ - guests/redhat: Detect and restart NetworkManager service if in use [GH-8052, GH-7994]
163
+
164
+ BUG FIXES:
165
+
166
+ - core: Detect load failures within install solution sets and retry [GH-8068]
167
+ - core: Prevent interactive shell on plugin uninstall [GH-8086, GH-8087]
168
+ - core: Remove bundler usage from Util::Env [GH-8090, GH-8094]
169
+ - guests/linux: Prevent stderr output on init version check for synced folders [GH-8051]
170
+
171
+ ## 1.9.0 (November 28, 2016)
172
+
173
+ FEATURES:
174
+
175
+ - commands/box: Add `prune` subcommand for removing outdated boxes [GH-7978]
176
+ - core: Remove Bundler integration for handling internal plugins [GH-7793, GH-8000, GH-8011, GH-8031]
177
+ - providers/hyperv: Add support for Hyper-V binary configuration format
178
+ [GH-7854, GH-7706, GH-6102]
179
+ - provisioners/shell: Support MD5/SHA1 checksum validation of remote scripts [GH-7985, GH-6323]
180
+
181
+ IMPROVEMENTS:
182
+
183
+ - commands/plugin: Retain name sorted output when listing plugins [GH-8028]
184
+ - communicator/ssh: Support custom environment variable export template
185
+ [GH-7976, GH-6747]
186
+ - provisioners/ansible(both): Add `config_file` option to point the location of an
187
+ `ansible.cfg` file via ANSIBLE_CONFIG environment variable [GH-7195, GH-7918]
188
+ - synced_folders: Support custom naming and disable auto-mount [GH-7980, GH-6836]
189
+
190
+ BUG FIXES:
191
+
192
+ - guests/linux: Do not match interfaces with special characters when sorting [GH-7989, GH-7988]
193
+ - provisioner/salt: Fix Hash construction for constant [GH-7986, GH-7981]
194
+
195
+ ## 1.8.7 (November 4, 2016)
196
+
197
+ IMPROVEMENTS:
198
+
199
+ - guests/linux: Place ethernet devices at start of network devices list [GH-7848]
200
+ - guests/linux: Provide more consistent guest detection [GH-7887, GH-7827]
201
+ - guests/openbsd: Validate guest rsync installation success [GH-7929, GH-7898]
202
+ - guests/redhat: Include Virtuozzo Linux 7 within flavor identification [GH-7818]
203
+ - guests/windows: Allow vagrant to start Windows Nano without provisioning [GH-7831]
204
+ - provisioners/ansible_local: Change the Ansible binary detection mechanism [GH-7536]
205
+ - provisioners/ansible(both): Add the `playbook_command` option [GH-7881]
206
+ - provisioners/puppet: Support custom environment variables [GH-7931, GH-7252, GH-2270]
207
+ - util/safe_exec: Use subprocess for safe_exec on Windows [GH-7802]
208
+ - util/subprocess: Allow closing STDIN [GH-7778]
209
+
210
+ BUG FIXES:
211
+
212
+ - communicators/winrm: Prevent connection leakage [GH-7712]
213
+ - core: Prevent duplicate provider priorities [GH-7756]
214
+ - core: Allow Numeric type for box version [GH-7874, GH-6960]
215
+ - core: Provide friendly error when user environment is too large [GH-7889, GH-7857]
216
+ - guests: Remove `set -e` usage for better shell compatibility [GH-7921, GH-7739]
217
+ - guests/linux: Fix incorrectly configured private network [GH-7844, GH-7848]
218
+ - guests/linux: Properly order network interfaces
219
+ [GH-7866, GH-7876, GH-7858, GH-7876]
220
+ - guests/linux: Only emit upstart event if initctl is available [GH-7813]
221
+ - guests/netbsd: Fix rsync installation [GH-7922, GH-7901]
222
+ - guests/photon: Fix networking setup [GH-7808, GH-7873]
223
+ - guests/redhat: Properly configure network and restart service [GH-7751]
224
+ - guests/redhat: Prevent NetworkManager from managing devices on initial start [GH-7926]
225
+ - hosts/linux: Fix race condition in writing /etc/exports file for NFS configuration
226
+ [GH-7947, GH-7938] - Thanks to Aron Griffis (@agriffis) for identifying this issue
227
+ - plugins/rsync: Escape exclude paths [GH-7928, GH-7910]
228
+ - providers/docker: Remove --interactive flag when pty is true [GH-7688]
229
+ - provisioners/ansible_local: Use enquoted path for file/directory existence checks
230
+ - provisioners/salt: Synchronize configuration defaults with documentation [GH-7907, GH-6624]
231
+ - pushes/atlas: Fix atlas push on Windows platform [GH-6938, GH-7802]
232
+
233
+ ## 1.8.6 (September 27, 2016)
234
+
235
+ IMPROVEMENTS:
236
+
237
+ - Add detection for DragonFly BSD [GH-7701]
238
+ - Implement auto_start and auto_stop actions for Hyper-V [GH-7647]
239
+ - communicators/ssh: Remove any content prepended to STDOUT [GH-7676, GH-7613]
240
+
241
+ BUG FIXES:
242
+
243
+ - commands/package: Provide machine data directory for base box package
244
+ [GH-5070, GH-7725]
245
+ - core: Fix windows path formatting [GH-6598]
246
+ - core: Fixes for ssh-agent interactions [GH-7703, GH-7621, GH-7398]
247
+ - core: Support VAGRANT_DOTFILE_PATH relative to the Vagrantfile [GH-7623]
248
+ - guests: Prevent ssh disconnect errors on halt command [GH-7675]
249
+ - guests/bsd: Remove Darwin matching [GH-7701]
250
+ - guests/linux: Fix SSH key permissions [GH-7610, GH-7611]
251
+ - guests/linux: Always sort discovered network interfaces [GH-7705, GH-7668]
252
+ - guests/linux: Fixes for user and group ID lookups for virtualbox shared folders
253
+ [GH-7616, GH-7662, GH-7720]
254
+ - guests/openbsd: Add custom halt capability [GH-7701]
255
+ - guests/ubuntu: Fix detection on older guests [GH-7632, GH-7524, GH-7625]
256
+ - hosts/arch: Detect NFS server by service name on arch [GH-7630, GH-7629]
257
+ - hosts/darwin: Fix generated RDP configuration file [GH-7698]
258
+ - provisioners/ansible: Add support for `ssh.proxy_command` setting [GH-7752]
259
+ - synced_folders/nfs: Display warning when configured for NFSv4 and UDP [GH-7740]
260
+ - synced_folders/rsync: Properly ignore excluded files within synced directory
261
+ from `chown` command. [GH-5256, GH-7726]
262
+
263
+ ## 1.8.5 (July 18, 2016)
264
+
265
+ FEATURES:
266
+
267
+ - core: Provide a way to globally disable box update checks with the
268
+ environment variable `VAGRANT_BOX_UPDATE_CHECK_DISABLE`. Setting this
269
+ to any non-empty value will instruct Vagrant to not look for box updates
270
+ when running `vagrant up`. Setting this environment variable has no
271
+ effect on the `vagrant box` commands.
272
+
273
+ IMPROVEMENTS:
274
+
275
+ - guests/arch: Support installing synced folder clients [GH-7519]
276
+ - guests/darwin: Allow ipv6 static networks [GH-7491]
277
+ - providers/virtualbox: Add support for 5.1 [GH-7574]
278
+
279
+ BUG FIXES:
280
+
281
+ - core: Bump listen gem and Ruby version to improve rsync performance
282
+ [GH-7453, GH-7441]
283
+ - core: Check process stdout when detecting if a hyperv admin
284
+ [GH-7465, GH-7467]
285
+ - core: Ensure removal of temporary directory when box download fails
286
+ [GH-7496, GH-7499]
287
+ - core: Fix regression for installing plugins from path [GH-7505, GH-7493]
288
+ - core: Skip checking conflicts on disabled ports [GH-7587]
289
+ - core: Idempotent write-out for state file [GH-7550]
290
+ - core/guests: Create common BSD guest for shared logic
291
+ - core/guests: Ignore empty output from `/sbin/ip`
292
+ [GH-7539, GH-7537, GH-7533, GH-7605]
293
+ - synced_folders/nfs: Shellescape rsync paths
294
+ [GH-7540, GH-7605]
295
+ - synced_folders/nfs: Ensure retries take place [GH-6360, GH-7605]
296
+ - synced_folders/rsync: Shellescape rsync paths
297
+ [GH-7580, GH-6690, GH-7579, GH-7605]
298
+ - synced_folders/rsync: Translate Windows paths
299
+ [GH-7012, GH-6702, GH-6568, GH-7046]
300
+ - guests/bsd: Consolidate core logic for mounting NFS folders
301
+ [GH-7480, GH-7474, GH-7466]
302
+ - guests/bsd: Consolidate core logic for public key management [GH-7481]
303
+ - guests/bsd: Consolidate core logic for halting [GH-7484]
304
+ - guests/centos: Use `ip` instead of `ifconfig` to detect network interfaces
305
+ [GH-7460]
306
+ - guests/debian: Ensure newline when inserting public key [GH-7456]
307
+ - guests/linux: Ensure NFS retries during mounting [GH-7492]
308
+ - guests/redhat: Use `/sbin/ip` to list and configure networks for
309
+ compatability with older versions of CentOS [GH-7482]
310
+ - guests/redhat: Ensure newline when inserting public key [GH-7598, GH-7605]
311
+ - guests/ubuntu: Use /etc/os-release to detech [GH-7524]
312
+ - guests/ubuntu: Use short hostname [GH-7488, GH-7605]
313
+ - providers/hyperv: Fix version check and catch statement [GH-7447, GH-7487]
314
+
315
+ ## 1.8.4 (June 13, 2016)
316
+
317
+ BUG FIXES:
318
+
319
+ - core: Fix bundler plugin issue and version constraint [GH-7418, GH-7415]
320
+ - providers/virtualbox: Use 8 network interfaces (due to Windows limitation)
321
+ [GH-7417, GH-7419]
322
+ - provisioners/ansible(both): Honor "galaxy_roles_path" option when running
323
+ ansible-playbook [GH-7269, GH-7420]
324
+ - provisioners/ansible_local: Add quotes around "ansible-galaxy" arguments
325
+ [GH-7420]
326
+
327
+ IMPROVEMENTS:
328
+
329
+ - guests/redhat: Add CloudLinux detection [GH-7428, GH-7427]
330
+
331
+ ## 1.8.3 (June 10, 2016)
332
+
333
+ BREAKING CHANGES:
334
+
335
+ - The `winrm` communicator now shares the same upload behavior as the `ssh`
336
+ communicator. This change should have no impact to most vagrant operations
337
+ but may break behavior when uploading directories to an existing
338
+ destination target. The `file` provisioner should be the only builtin
339
+ provisioner affected by this change. When uploading a directory and the
340
+ destination directory exists on the endpoint, the source base directory
341
+ will be created below the destination directory on the endpoint and the
342
+ source directory contents will be unzipped to that location. Prior to this
343
+ release, the contents of the source directory would be unzipped to an
344
+ existing destination directory without creating the source base directory.
345
+ This new behavior is more consistent with SCP and other well known shell copy commands.
346
+ - The Chef provisioner's `channel` default value has changed from "current" to
347
+ "stable". The "current" channel includes nightly releases and should be
348
+ opt-in only. Note that users wishing to download the Chef Development Kit
349
+ will need to opt into the "current" channel until Chef Software promotes
350
+ into the "stable" channel.
351
+ - The Arch Linux host capability for NFS removed support for rc.d in favor or
352
+ systemd which has been present since 2012. Please see GH-7181 for more
353
+ information.
354
+
355
+ FEATURES:
356
+
357
+ - provider/docker: Allow non-linux users to opt-out of the host VM to run
358
+ Docker containers by setting `config.force_host_vm = false` in the
359
+ Vagrantfile. This is especially useful for customers who wish to use
360
+ the beta builds for Mac and Windows, dlite, or a custom provider.
361
+ [GH-7277, GH-7298, 8c11b53]
362
+ - provider/docker: New command: `docker-exec` allows attaching to an
363
+ already-running container.
364
+ [GH-7377, GH-6566, GH-5193, GH-4904, GH-4057, GH-4179, GH-4903]
365
+
366
+ IMPROVEMENTS:
367
+
368
+ - core/downloader: increase box resume download limit to 24h
369
+ [GH-7352, GH-7272]
370
+ - core/package: run validations prior to packaging [GH-7353, GH-7351]
371
+ - core/action: make `start` ("vagrant up") run provisioners [GH-4467, GH-4421]
372
+ - commands/all: Make it clear that machine IDs can be specified
373
+ [GH-7356, GH-7228]
374
+ - commands/init: Add support for specifying the box version [GH-7363, GH-5004]
375
+ - commands/login: Print a warning with both the environment variable and
376
+ local login token are present [GH-7206, GH-7219]
377
+ - communicators/winrm: Upgrade to latest WinRM gems [GH-6922]
378
+ - provisioners/ansible_local: Allow to install Ansible from pip,
379
+ with version selection capability [GH-6654, GH-7167]
380
+ - provisioners/ansible_local: Use `provisioning_path` as working directory
381
+ for `ansible-galaxy` execution
382
+ - provisioners/ansible(both provisioners): Add basic config
383
+ validators/converters on `raw_arguments` and `raw_ssh_args` options
384
+ [GH-7103]
385
+ - provisioners/chef: Add the ability to install on SUSE [GH-6806]
386
+ - provisioners/chef: Support legacy solo mode [GH-7327]
387
+ - provisioners/docker: Restart container if newer image is available
388
+ [GH-7358, GH-6620]
389
+ - hosts/arch: Remove sysvinit and assume systemd [GH-7181]
390
+ - hosts/linux: Do not use a pager with systemctl commands [GH-7270]
391
+ - hosts/darwin: Add `extra_args` support for RDP [GH-5523, GH-6602]
392
+ - hosts/windows: Use SafeExec to capture history in Powershell [GH-6749]
393
+ - guests/amazon: Add detection [GH-7395, GH-7254]
394
+ - guests/freebsd: Add quotes around hostname [GH-6867]
395
+ - guests/fedora: Add support for ipv6 static networks [GH-7275, GH-7276]
396
+ - guests/tinycore: Add support for shared folders [GH-6977, GH-6968]
397
+ - guests/trisquel: Add initial support [GH-6842, GH-6843]
398
+ - guests/windows: Add support for automatic login (no password prompting)
399
+ [GH-5670]
400
+ - core: Add `--no-delete` and provisioning flags to snapshot restore/pop
401
+ [GH-6879]
402
+ - providers/docker: Allow TCP and UDP ports on the same number [GH-7365,
403
+ GH-5527]
404
+ - providers/hyperv: Add support for differencing disk [GH-7090]
405
+ - providers/hyperv: Add support for snapshots [GH-7110]
406
+ - providers/hyperv: Reinstate compatibility with PS 4 [GH-7108]
407
+ - providers/virtualbox: Add linked clone support for Virtualbox 1.4 [GH-7050]
408
+ - synced_folders/nfs: Read static and dynamic IPs [GH-7290, GH-7289]
409
+
410
+ BUG FIXES:
411
+
412
+ - core: Bump nokogiri version to fix windows bug [GH-6766, GH-6848]
413
+ - core: Revert a change made to the output of the identify file [GH-6962,
414
+ GH-6929, GH-6589]
415
+ - core: Fix login command behind a proxy [GH-6898, GH-6899]
416
+ - core: Fix support for regular expressions on multi-machine `up`
417
+ [GH-6908, GH-6909]
418
+ - core: Allow boxes to use pre-release versions [GH-6892, GH-6893]
419
+ - core: Rescue `Errno:ENOTCONN` waiting for port to be open [GH-7182, GH-7184]
420
+ - core: Properly authenticate metadata box URLs [GH-6776, GH-7158]
421
+ - core: Do not run provisioners if already run on resume [GH-7059, GH-6787]
422
+ - core: Implement better tracking of tempfiles and tmpdirs to identify file
423
+ leaks [GH-7355]
424
+ - core: Allow SSH forwarding on Windows [GH-7287, GH-7202]
425
+ - core: Allow customizing `keys_only` SSH option [GH-7360, GH-4275]
426
+ - core: Allow customizing `paranoid` SSH option [GH-7360, GH-4275]
427
+ - command/box_update: Do not update the same box twice [GH-6042, GH-7379]
428
+ - command/init: Remove unnecessary `sudo` from generated Vagrantfile
429
+ [GH-7369, GH-7295]
430
+ - docs & core: Be consistent about the "2" in the Vagrantfile version
431
+ [GH-6961, GH-6963]
432
+ - guests/all: Refactor guest capabilities to run in a single command -
433
+ **please see GH-7393 for the complete list of changes!**
434
+ - guests/arch: Restart network after configuration [GH-7120, GH-7119]
435
+ - guests/debian: Do not return an error if ifdown fails [GH-7159,
436
+ GH-7155, GH-6871]
437
+ - guests/freebsd: Use `pkg` to install rsync [GH-6760]
438
+ - guests/freebsd: Use `netif` to configure networks [GH-5852, GH-7093]
439
+ - guests/coreos: Detect all interface names [GH-6608, GH-6610]
440
+ - providers/hyperv: Only specify Hyper-V if the parameter is support
441
+ [GH-7101, GH-7098]
442
+ - providers/virtualbox: Set maximum network adapters to 36 [GH-7293, GH-7286]
443
+ - providers/virtualbox: Do not fail when master VM from linked clone is
444
+ missing [GH-7126, GH-6742]
445
+ - providers/virtualbox: Use scoped overrides in preparring NFS
446
+ [GH-7387, GH-7386]
447
+ - provisioners/ansible: Fix a race condition in the concurrent generations of
448
+ the ansible inventory file, while running `vagrant up --parallel`
449
+ [GH-6526, GH-7190]
450
+ - provisioners/ansible_local: Don't quote the Ansible arguments defined in the
451
+ `raw_arguments` option [GH-7103]
452
+ - provisioners/ansible_local: Format json `extra_vars` with double quotes
453
+ [GH-6726, GH-7103]
454
+ - provisioners/ansible_local: Fix errors in absolute paths to playbook or
455
+ galaxy resources when running on a Windows host [GH-6740, GH-6757]
456
+ - provisioners/ansible_local: Change the way to verify `ansible-galaxy`
457
+ presence, to avoid a non-zero status code with Ansible 2.0 [GH-6793]
458
+ - provisioners/ansible(both provisioners): The Ansible configuration files
459
+ detection is only executed by the `provision` action [GH-6763, GH-6984]
460
+ - provisioners/chef: Do not use double sudo when installing
461
+ [GGH-6805, GH-6804]
462
+ - provisioners/chef: Change the default channel to "stable" (previously it
463
+ was "current") [GH-7001, GH-6979]
464
+ - provisioners/chef: Default node_name to hostname if present
465
+ [GH-7063, GH-7153]
466
+ - provisioners/docker: Fix -no-trunc command option [GH-7085]
467
+ - provisioners/docker: Allow provisioning when container name is specified
468
+ [GH-7074, GH-7086]
469
+ - provisioners/puppet: Use `where.exe` to locate puppet binary
470
+ [GH-6912, GH-6876]
471
+ - provisioners/salt: Move masterless config to apply to all platforms
472
+ [GH-7207, Gh-6924, GH-6915]
473
+ - pushes/ftp: Create parent directories when uploading [GH-7154, GH-6316]
474
+ - synced_folders/smb: Do not interpolate configuration file [GH-6906]
475
+
476
+ ## 1.8.1 (December 21, 2015)
477
+
478
+ BUG FIXES:
479
+
480
+ - core: Don't create ".bundle" directory in pwd [GH-6717]
481
+ - core: Fix exception on installing VirtualBox [GH-6713]
482
+ - core: Do not convert standalone drive letters such as "D:" to
483
+ UNC paths [GH-6598]
484
+ - core: Fix a crash in parsing the config in some cases with network
485
+ configurations [GH-6730]
486
+ - core: Clean up temporarily files created by bundler
487
+ [GH-7354, GH-6301, GH-3469, GH-6231]
488
+ - commands/up: Smarter logic about what provider to install, avoiding
489
+ situations where VirtualBox was installed over the correct provider [GH-6731]
490
+ - guests/debian: Fix Docker install [GH-6722]
491
+ - provisioners/chef: convert chef version to a string before comparing for
492
+ the command builder [GH-6709, GH-6711]
493
+ - provisioners/shell: convert env var values to strings [GH-6714]
494
+
495
+ ## 1.8.0 (December 21, 2015)
496
+
497
+ FEATURES:
498
+
499
+ - **New Command: `vagrant powershell`**: For machines that support it,
500
+ this will open a PowerShell prompt.
501
+ - **New Command: `vagrant port`**: For machines that support it, this will
502
+ display the list of forwarded ports from the guest to the host.
503
+ - **Linked Clones**: VirtualBox and VMware providers now support
504
+ linked clones for very fast (millisecond) imports on up. [GH-4484]
505
+ - **Snapshots**: The `vagrant snapshot` command can be used to checkpoint
506
+ and restore point-in-time snapshots.
507
+ - **IPv6 Private Networks**: Private networking now supports IPv6. This
508
+ only works with VirtualBox and VMware at this point. [GH-6342]
509
+ - New provisioner: `ansible_local` to execute Ansible from the guest
510
+ machine. [GH-2103]
511
+
512
+ BREAKING CHANGES:
513
+
514
+ - The `ansible` provisioner now can override the effective ansible remote user
515
+ (i.e. `ansible_ssh_user` setting) to always correspond to the vagrant ssh
516
+ username. This change is enabled by default, but we expect this to affect
517
+ only a tiny number of people as it corresponds to the common usage.
518
+ If you however use multiple remote usernames in your Ansible plays, tasks,
519
+ or custom inventories, you can simply set the option `force_remote_user` to
520
+ false to make Vagrant behave the same as before.
521
+ - provisioners/salt: the "config_dir" option has been removed. It has no
522
+ effect in Vagrant 1.8. [GH-6073]
523
+
524
+ IMPROVEMENTS:
525
+
526
+ - core: allow removal of all box versions with `--all` flag [GH-3462]
527
+ - core: prune entries from global status on non-existent cwd [GH-6535]
528
+ - core: networking: allow specifying a DHCP IP [GH-6325]
529
+ - core: run provisioner cleanup tasks before powering off the VM [GH-6553]
530
+ - core: only run provisioner cleanup tasks if they're implemented [GH-6603]
531
+ This improves UX, but wasn't a bug before.
532
+ - command/plugin: Add `--plugin-clean-sources` flag to reset plugin install
533
+ sources, primarily for corp firewalls. [GH-4738]
534
+ - command/rsync-auto: SSH connection is cached for faster sync times [GH-6399]
535
+ - command/up: provisioners are run on suspend resume [GH-5815]
536
+ - communicators/ssh: allow specifying host environment variables to forward
537
+ to guests [GH-4132, GH-6562]
538
+ - communicators/winrm: Configurable execution time limit [GH-6213]
539
+ - providers/virtualbox: cache version lookup, which caused significant
540
+ slowdown on some Windows hosts [GH-6552]
541
+ - providers/virtualbox: add `public_address` capability for virtualbox
542
+ [GH-6583, GH-5978]
543
+ - provisioners/chef: perform cleanup tasks on the guest instead of the host
544
+ - provisioners/chef: automatically generate a node_name if one was not given
545
+ [GH-6555]
546
+ - provisioners/chef: install Chef automatically on Windows [GH-6557]
547
+ - provisioners/chef: allow the user to specify the Chef product (such as
548
+ the Chef Development Kit) [GH-6557]
549
+ - provisioners/chef: allow data_bags_path to be an array [GH-5988, GH-6561]
550
+ - provisioners/shell: Support interactive mode for elevated PowerShell
551
+ scripts [GH-6185]
552
+ - provisioners/shell: add `env` option [GH-6588, GH-6516]
553
+ - provisioners/ansible+ansible_local: add support for ansible-galaxy [GH-2718]
554
+ - provisioners/ansible+ansible_local: add support for group and host variables
555
+ in the generated inventory [GH-6619]
556
+ - provisioners/ansible+ansible_local: add support for alphanumeric patterns
557
+ for groups in the generated inventory [GH-3539]
558
+ - provisioners/ansible: add support for WinRM settings [GH-5086]
559
+ - provisioners/ansible: add new `force_remote_user` option to control whether
560
+ `ansible_ssh_user` parameter should be applied or not [GH-6348]
561
+ - provisioners/ansible: show a warning when running from a Windows Host [GH-5292]
562
+ - pushes/local-exec: add support for specifying script args [GH-6661, GH-6660]
563
+ - guests/slackware: add support for networking [GH-6514]
564
+
565
+ BUG FIXES:
566
+
567
+ - core: Ctrl-C weirdness fixed where it would exit parent process
568
+ before Vagrant finished cleaning up [GH-6085]
569
+ - core: DHCP network configurations don't warn on IP addresses ending
570
+ in ".1" [GH-6150]
571
+ - core: only append `access_token` when it does not exist in the URL
572
+ [GH-6395, GH-6534]
573
+ - core: use the correct private key when packaging a box [GH-6406]
574
+ - core: fix crash when using invalid box checksum type [GH-6327]
575
+ - core: don't check for metadata if the download URL is not HTTP [GH-6540]
576
+ - core: don't make custom dotfile path if there is no Vagrantfile [GH-6542]
577
+ - core: more robust check for admin privs on Windows [GH-5616]
578
+ - core: properly detect when HTTP server doesn't support byte ranges and
579
+ retry from scratch [GH-4479]
580
+ - core: line numbers show properly in Vagrantfile syntax errors
581
+ on Windows [GH-6445]
582
+ - core: catch errors setting env vars on Windows [GH-6017]
583
+ - core: remove cached synced folders when they're removed from the
584
+ Vagrantfile [GH-6567]
585
+ - core: use case-insensitive comparison for box checksum validations
586
+ [GH-6648, GH-6650]
587
+ - commands/box: add command with `~` paths on Windows works [GH-5747]
588
+ - commands/box: the update command supports CA settings [GH-4473]
589
+ - commands/box: removing all versions and providers of a box will properly
590
+ clean all directories in `~/.vagrant.d/boxes` [GH-3570]
591
+ - commands/box: outdated global won't halt on metadata download failure [GH-6453]
592
+ - commands/login: respect environment variables in `vagrant login` command
593
+ [GH-6590, GH-6422]
594
+ - commands/package: when re-packaging a packaged box, preserve the
595
+ generated SSH key [GH-5780]
596
+ - commands/plugin: retry plugin install automatically a few times to
597
+ avoid network issues [GH-6097]
598
+ - commands/rdp: prefer `xfreerdp` if it is available on Linux [GH-6475]
599
+ - commands/up: the `--provision-with` flag works with provisioner names [GH-5981]
600
+ - communicator/ssh: fix potential crash case with PTY [GH-6225]
601
+ - communicator/ssh: escape IdentityFile path [GH-6428, GH-6589]
602
+ - communicator/winrm: respect `boot_timeout` setting [GH-6229]
603
+ - communicator/winrm: execute scheduled tasks immediately on Windows XP
604
+ since elevation isn't required [GH-6195]
605
+ - communicator/winrm: Decouple default port forwarding rules for "winrm" and
606
+ "winrm-ssl" [GH-6581]
607
+ - communicator/winrm: Hide progress bars from PowerShell v5 [GH-6309]
608
+ - guests/arch: enable network device after setting it up [GH-5737]
609
+ - guests/darwin: advanced networking works with more NICs [GH-6386]
610
+ - guests/debian: graceful shutdown works properly with newer releases [GH-5986]
611
+ - guests/fedora: Preserve `localhost` entry when changing hostname [GH-6203]
612
+ - guests/fedora: Use dnf if it is available [GH-6288]
613
+ - guests/linux: when replacing a public SSH key, use POSIX-compliant
614
+ sed flags [GH-6565]
615
+ - guests/suse: DHCP network interfaces properly configured [GH-6502]
616
+ - hosts/slackware: Better detection of NFS [GH-6367]
617
+ - providers/hyper-v: support generation 2 VMs [GH-6372]
618
+ - providers/hyper-v: support VMs with more than one NIC [GH-4346]
619
+ - providers/hyper-v: check if user is in the Hyper-V admin group if
620
+ they're not a Windows admin [GH-6662]
621
+ - providers/virtualbox: ignore "Unknown" status bridge interfaces [GH-6061]
622
+ - providers/virtualbox: only fix ipv6 interfaces that are in use
623
+ [GH-6586, GH-6552]
624
+ - provisioners/ansible: use quotes for the `ansible_ssh_private_key_file`
625
+ value in the generated inventory [GH-6209]
626
+ - provisioners/ansible: use quotes when passing the private key files via
627
+ OpenSSH `-i` command line arguments [GH-6671]
628
+ - provisioners/ansible: don't show the `ansible-playbook` command when verbose
629
+ option is an empty string
630
+ - provisioners/chef: fix `nodes_path` for Chef Zero [GH-6025, GH-6049]
631
+ - provisioners/chef: do not error when the `node_name` is unset
632
+ [GH-6005, GH-6064, GH-6541]
633
+ - provisioners/chef: only force the formatter on Chef 11 or higher
634
+ [GH-6278, GH-6556]
635
+ - provisioners/chef: require `nodes_path` to be set for Chef Zero
636
+ [GH-6110, GH-6559]
637
+ - provisioners/puppet: apply provisioner uses correct default manifests
638
+ with environments. [GH-5987]
639
+ - provisioners/puppet: remove broken backticks [GH-6404]
640
+ - provisioners/puppet: find Puppet binary properly on Windows [GH-6259]
641
+ - provisioners/puppet-server: works with Puppet Collection 1 [GH-6389]
642
+ - provisioners/salt: call correct executables on Windows [GH-5999]
643
+ - provisioners/salt: log level and colorize works for masterless [GH-6474]
644
+ - push/local-exec: use subprocess on windows when fork does not exist
645
+ [GH-5307, GH-6563]
646
+ - push/heroku: use current branch [GH-6554]
647
+ - synced\_folders/rsync: on Windows, replace all paths with Cygwin
648
+ paths since all rsync implementations require this [GH-6160]
649
+ - synced\_folders/smb: use credentials files to allow for more characters
650
+ in password [GH-4230]
651
+
652
+ PLUGIN AUTHOR CHANGES:
653
+
654
+ - installer: Upgrade to Ruby 2.2.3
655
+
656
+ ## 1.7.4 (July 17, 2015)
657
+
658
+ BUG FIXES:
659
+
660
+ - communicators/winrm: catch timeout errors [GH-5971]
661
+ - communicators/ssh: use the same SSH args for `vagrant ssh` with and without
662
+ a command [GH-4986, GH-5928]
663
+ - guests/fedora: networks can be configured without nmcli [GH-5931]
664
+ - guests/fedora: biosdevname can return 4 or 127 [GH-6139]
665
+ - guests/redhat: systemd detection should happen on guest [GH-5948]
666
+ - guests/ubuntu: setting hostname fixed in 12.04 [GH-5937]
667
+ - hosts/linux: NFS can be configured without `$TMP` set on the host [GH-5954]
668
+ - hosts/linux: NFS will sudo copying back to `/etc/exports` [GH-5957]
669
+ - providers/docker: Add `pull` setting, default to false [GH-5932]
670
+ - providers/virtualbox: remove UNC path conversion on Windows since it
671
+ caused mounting regressions [GH-5933]
672
+ - provisioners/puppet: Windows Puppet 4 paths work correctly [GH-5967]
673
+ - provisioners/puppet: Fix config merging errors [GH-5958]
674
+ - provisioners/salt: fix "dummy config" error on bootstrap [GH-5936]
675
+
676
+ ## 1.7.3 (July 10, 2015)
677
+
678
+ FEATURES:
679
+
680
+ - **New guest: `atomic`* - Project Atomic is supported as a guest
681
+ - providers/virtualbox: add support for 5.0 [GH-5647]
682
+
683
+ IMPROVEMENTS:
684
+
685
+ - core: add password authentication to rdp_info hash [GH-4726]
686
+ - core: improve error message when packaging fails [GH-5399]
687
+ - core: improve message when adding a box from a file path [GH-5395]
688
+ - core: add support for network gateways [GH-5721]
689
+ - core: allow redirecting stdout and stderr in the UI [GH-5433]
690
+ - core: update version of winrm-fs to 0.2.0 [GH-5738]
691
+ - core: add option to enabled trusted http(s) redirects [GH-4422]
692
+ - core: capture additional information such as line numbers during
693
+ Vagrantfile loading [GH-4711, GH-5769]
694
+ - core: add .color? to UI objects to see if they support color [GH-5771]
695
+ - core: ignore hidden directories when searching for boxes [GH-5748, GH-5785]
696
+ - core: use `config.ssh.sudo_command` to customize the sudo command
697
+ format [GH-5573]
698
+ - core: add `Vagrant.original_env` for Vagrant and plugins to restore or
699
+ inspect the original environment when Vagrant is being run from the
700
+ installer [GH-5910]
701
+ - guests/darwin: support inserting generated key [GH-5204]
702
+ - guests/darwin: support mounting SMB shares [GH-5750]
703
+ - guests/fedora: support Fedora 21 [GH-5277]
704
+ - guests/fedora: add capabilities for nfs and flavor [GH-5770, GH-4847]
705
+ - guests/linux: specify user's domain as separate parameter [GH-3620, GH-5512]
706
+ - guests/redhat: support Scientific Linux 7 [GH-5303]
707
+ - guests/photon: initial support [GH-5612]
708
+ - guests/solaris,solaris11: support inserting generated key [GH-5182]
709
+ [GH-5290]
710
+ - providers/docker: images are pulled prior to starting [GH-5249]
711
+ - provisioners/ansible: store the first ssh private key in the auto-generated inventory [GH-5765]
712
+ - provisioners/chef: add capability for checking if Chef is installed on Windows [GH-5669]
713
+ - provisioners/docker: restart containers if arguments have changed [GH-3055, GH-5924]
714
+ - provisioners/puppet: add support for Puppet 4 and configuration options [GH-5601]
715
+ - provisioners/puppet: add support for `synced_folder_args` in apply [GH-5359]
716
+ - provisioners/salt: add configurable `config_dir` [GH-3138]
717
+ - provisioners/salt: add support for masterless configuration [GH-3235]
718
+ - provisioners/salt: provider path to missing file in errors [GH-5637]
719
+ - provisioners/salt: add ability to run salt orchestrations [GH-4371]
720
+ - provisioners/salt: update to 2015.5.2 [GH-4152, GH-5437]
721
+ - provisioners/salt: support specifying version to install [GH-5892]
722
+ - provisioners/shell: add :name attribute to shell provisioner [GH-5607]
723
+ - providers/docker: supports file downloads with the file provisioner [GH-5651]
724
+ - providers/docker: support named Dockerfile [GH-5480]
725
+ - providers/docker: don't remove image on reload so that build cache can
726
+ be used fully [GH-5905]
727
+ - providers/hyperv: select a Hyper-V switch based on a `network_name` [GH-5207]
728
+ - providers/hyperv: allow configuring VladID [GH-5539]
729
+ - providers/virtualbox: regexp supported for bridge configuration [GH-5320]
730
+ - providers/virtualbox: handle a list of bridged NICs [GH-5691]
731
+ - synced_folders/rsync: allow showing rsync output in debug mode [GH-4867]
732
+ - synced_folders/rsync: set `rsync__rsync_path` to specify the remote
733
+ command used to execute rsync [GH-3966]
734
+
735
+ BUG FIXES:
736
+
737
+ - core: push configurations are validated with global configs [GH-5130]
738
+ - core: remove executable permissions on internal file [GH-5220]
739
+ - core: check name and version in `has_plugin?` [GH-5218]
740
+ - core: do not create duplicates when defining two private network addresses [GH-5325]
741
+ - core: update ssh to check for Plink [GH-5604]
742
+ - core: do not report plugins as installed when plugins are disabled [GH-5698, GH-5430]
743
+ - core: Only take files when packaging a box to avoid duplicates [GH-5658, GH-5657]
744
+ - core: escape curl urls and authentication [GH-5677]
745
+ - core: fix crash if a value is missing for CLI arguments [GH-5550]
746
+ - core: retry SSH key generation for transient RSA errors [GH-5056]
747
+ - core: `ssh.private_key_path` will override the insecure key [GH-5632]
748
+ - core: restore the original environment when shelling out to subprocesses
749
+ outside of the installer [GH-5912]
750
+ - core/cli: fix box checksum validation [GH-4665, GH-5221]
751
+ - core/windows: allow Windows UNC paths to allow more than 256
752
+ characters [GH-4815]
753
+ - command/rsync-auto: don't crash if rsync command fails [GH-4991]
754
+ - communicators/winrm: improve error handling significantly and improve
755
+ the error messages shown to be more human-friendly. [GH-4943]
756
+ - communicators/winrm: remove plaintext passwords from files after
757
+ provisioner is complete [GH-5818]
758
+ - hosts/nfs: allow colons (`:`) in NFS IDs [GH-5222]
759
+ - guests/darwin: remove dots from LocalHostName [GH-5558]
760
+ - guests/debian: Halt works properly on Debian 8. [GH-5369]
761
+ - guests/fedora: recognize future fedora releases [GH-5730]
762
+ - guests/fedora: reload iface connection by NetworkManager [GH-5709]
763
+ - guests/fedora: do not use biosdevname if it is not installed [GH-5707]
764
+ - guests/freebsd: provide an argument to the backup file [GH-5516, GH-5517]
765
+ - guests/funtoo: fix incorrect path in configure networks [GH-4812]
766
+ - guests/linux: fix edge case exception where no home directory
767
+ is available on guest [GH-5846]
768
+ - guests/linux: copy NFS exports to tmpdir to do edits to guarantee
769
+ permissions are available [GH-5773]
770
+ - guests/openbsd: output newline after inserted public key [GH-5881]
771
+ - guests/tinycore: fix change hostname functionality [GH-5623]
772
+ - guests/ubuntu: use `hostnamectl` to set hostname on Ubuntu Vivid [GH-5753]
773
+ - guests/windows: Create rsync folder prior to rsync-ing. [GH-5282]
774
+ - guests/windows: Changing hostname requires reboot again since
775
+ the non-reboot code path was crashing Windows server. [GH-5261]
776
+ - guests/windows: ignore virtual NICs [GH-5478]
777
+ - hosts/windows: More accurately get host IP address in VPNs. [GH-5349]
778
+ - plugins/login: allow users to login with a token [GH-5145]
779
+ - providers/docker: Build image from `/var/lib/docker` for more disk
780
+ space on some systems. [GH-5302]
781
+ - providers/docker: Fix crash that could occur in some scenarios when
782
+ the host VM path changed.
783
+ - providers/docker: Fix crash that could occur on container destroy
784
+ with VirtualBox shared folders [GH-5143]
785
+ - providers/hyperv: allow users to configure memory, cpu count, and vmname [GH-5183]
786
+ - providers/hyperv: import respects secure boot. [GH-5209]
787
+ - providers/hyperv: only set EFI secure boot for gen 2 machines [GH-5538]
788
+ - providers/virtualbox: read netmask from dhcpservers [GH-5233]
789
+ - providers/virtualbox: Fix exception when VirtualBox version is empty. [GH-5308]
790
+ - providers/virtualbox: Fix exception when VBoxManage.exe can't be run
791
+ on Windows [GH-1483]
792
+ - providers/virtualbox: Error if another user is running after a VM is
793
+ created to avoid issue with VirtualBox "losing" the VM [GH-5895]
794
+ - providers/virtualbox: The "name" setting on private networks will
795
+ choose an existing hostonly network [GH-5389]
796
+ - provisioners/ansible: fix SSH settings to support more than 5 ssh keys [GH-5017]
797
+ - provisioners/ansible: increase ansible connection timeout to 30 seconds [GH-5018]
798
+ - provisioners/ansible: disable color if Vagrant is not colored [GH-5531, GH-5532]
799
+ - provisioners/ansible: only show ansible-playbook command when `verbose` option is enabled [GH-5803]
800
+ - provisioners/ansible: fix a race condition in the inventory file generation [GH-5551]
801
+ - provisioners/docker: use `service` to restart Docker instad of upstart [GH-5245, GH-5577]
802
+ - provisioners/docker: Only add docker user to group if exists. [GH-5315]
803
+ - provisioners/docker: Use https for repo [GH-5749]
804
+ - provisioners/docker: `apt-get update` before installing linux kernel
805
+ images to get the correct version [GH-5860]
806
+ - provisioners/chef: Fix shared folders missing error [GH-5199]
807
+ - provisioners/chef: Use `command -v` to check for binary instead of
808
+ `which` since that doesn't exist on some systems. [GH-5170]
809
+ - provisioners/chef-zero: support more chef-zero/local mode attributes [GH-5339]
810
+ - provisioners/chef: use windows-specific paths in Chef provisioners [GH-5913]
811
+ - provisioners/docker: use docker.com instead of docker.io [GH-5216]
812
+ - provisioners/docker: use `--restart` instead of `-r` on daemon [GH-4477]
813
+ - provisioners/file: validation of source is relative to Vagrantfile [GH-5252]
814
+ - pushes/atlas: send additional box metadata [GH-5283]
815
+ - pushes/local-exec: fix "text file busy" error for inline [GH-5695]
816
+ - pushes/ftp: improve check for remote directory existence [GH-5549]
817
+ - synced\_folders/rsync: add `IdentitiesOnly=yes` to the rsync command. [GH-5175]
818
+ - synced\_folders/smb: use correct `password` option [GH-5805]
819
+ - synced\_folders/smb: prever IPv4 over IPv6 address to mount [GH-5798]
820
+ - virtualbox/config: fix misleading error message for private_network [GH-5536, GH-5418]
821
+
822
+ ## 1.7.2 (January 6, 2015)
823
+
824
+ BREAKING CHANGES:
825
+
826
+ - If you depended on the paths that Chef/Puppet provisioners use to
827
+ store cookbooks (ex. "/tmp/vagrant-chef-1"), these will no longer be
828
+ correct. Without this change, Chef/Puppet didn't work at all with
829
+ `vagrant provision`. We expect this to affect only a minor number of
830
+ people, since it's not something that was ever documented or recommended
831
+ by Vagrant, or even meant to be supported.
832
+
833
+ FEATURES:
834
+
835
+ - provisioners/salt: add support for grains [GH-4895]
836
+
837
+ IMPROVEMENTS:
838
+
839
+ - commands/reload,up: `--provision-with` implies `--provision` [GH-5085]
840
+
841
+ BUG FIXES:
842
+
843
+ - core: private boxes still referencing vagrantcloud.com will have
844
+ their vagrant login access token properly appended
845
+ - core: push plugin configuration is properly validated
846
+ - core: restore box packaging functionality
847
+ - commands/package: fix crash
848
+ - commands/push: push lookups are by user-defined name, not push
849
+ strategy name [GH-4975]
850
+ - commands/push: validate the configuration
851
+ - communicators/winrm: detect parse errors in PowerShell and error
852
+ - guests/arch: fix network configuration due to poor line breaks. [GH-4964]
853
+ - guests/solaris: Merge configurations properly so configs can be set
854
+ in default Vagrantfiles. [GH-5092]
855
+ - installer: SSL cert bundle contains 1024-bit keys, fixing SSL verification
856
+ for a lot of sites.
857
+ - installer: vagrant executable properly `cygpaths` the SSL bundle path
858
+ for Cygwin
859
+ - installer: Nokogiri (XML lib used by Vagrant and dependencies) linker
860
+ dependencies fixed, fixing load issues on some platforms
861
+ - providers/docker: Symlinks in shared folders work. [GH-5093]
862
+ - providers/hyperv: VM start errors turn into proper Vagrant errors. [GH-5101]
863
+ - provisioners/chef: fix missing shared folder error [GH-4988]
864
+ - provisioners/chef: remove Chef version check from solo.rb generation and
865
+ make `roles_path` populate correctly
866
+ - provisioners/chef: fix bad invocation of `with_clean_env` [GH-5021]
867
+ - pushes/atlas: support more verbose logging
868
+ - pushes/ftp: expand file paths relative to the Vagrantfile
869
+ - pushes/ftp: improved debugging output
870
+ - pushes/ftp: create parent directories if they do not exist on the remote
871
+ server
872
+
873
+ ## 1.7.1 (December 11, 2014)
874
+
875
+ IMPROVEMENTS:
876
+
877
+ - provisioners/ansible: Use Docker proxy if needed. [GH-4906]
878
+
879
+ BUG FIXES:
880
+
881
+ - providers/docker: Add support of SSH agent forwarding. [GH-4905]
882
+
883
+ ## 1.7.0 (December 9, 2014)
884
+
885
+ BREAKING CHANGES:
886
+
887
+ - provisioners/ansible: `raw_arguments` has now highest priority
888
+ - provisioners/ansible: only the `ssh` connection transport is supported
889
+ (`paramiko` can be enabled with `raw_arguments` at your own risks)
890
+
891
+ FEATURES:
892
+
893
+ - **Vagrant Push**: Vagrant can now deploy! `vagrant push` is a single
894
+ command to deploy your application. Deploy to Heroku, FTP, or
895
+ HashiCorp's commercial product Atlas. New push strategies can be
896
+ added with plugins.
897
+ - **Named provisioners**: Provisioners can now be named. This name is used
898
+ for output as well as `--provision-with` for better control.
899
+ - Default provider logic improved: Providers in `config.vm.provider` blocks
900
+ in your Vagrantfile now have higher priority than plugins. Earlier
901
+ providers are chosen before later ones. [GH-3812]
902
+ - If the default insecure keypair is used, Vagrant will automatically replace
903
+ it with a randomly generated keypair on first `vagrant up`. [GH-2608]
904
+ - Vagrant Login is now part of Vagrant core
905
+ - Chef Zero provisioner: Use Chef 11's "local" mode to run recipes against an
906
+ in-memory Chef Server
907
+ - Chef Apply provisioner: Specify inline Chef recipes and recipe snippets
908
+ using the Chef Apply provisioner
909
+
910
+ IMPROVEMENTS:
911
+
912
+ - core: `has_plugin?` function now takes a second argument which is a
913
+ version constraint requirement. [GH-4650]
914
+ - core: ".vagrantplugins" file in the same folder as your Vagrantfile
915
+ will be loaded for defining inline plugins. [GH-3775]
916
+ - commands/plugin: Plugin list machine-readable output contains the plugin
917
+ name as the target for versions and other info. [GH-4506]
918
+ - env/with_cleanenv: New helper for plugin developers to use when shelling out
919
+ to another Ruby environment
920
+ - guests/arch: Support predictable network interface naming. [GH-4468]
921
+ - guests/suse: Support NFS client install, rsync setup. [GH-4492]
922
+ - guests/tinycore: Support changing host names. [GH-4469]
923
+ - guests/tinycore: Support DHCP-based networks. [GH-4710]
924
+ - guests/windows: Hostname can be set without reboot. [GH-4687]
925
+ - providers/docker: Build output is now shown. [GH-3739]
926
+ - providers/docker: Can now start containers from private repositories
927
+ more easily. Vagrant will login for you if you specify auth. [GH-4042]
928
+ - providers/docker: `stop_timeout` can be used to modify the `docker stop`
929
+ timeout. [GH-4504]
930
+ - provisioners/chef: Automatically install Chef when using a Chef provisioner.
931
+ - provisioners/ansible: Always show Ansible command executed when Vagrant log
932
+ level is debug (even if ansible.verbose is false)
933
+ - synced\_folders/nfs: Won't use `sudo` to write to /etc/exports if there
934
+ are write privileges. [GH-2643]
935
+ - synced\_folders/smb: Credentials from one SMB will be copied to the rest. [GH-4675]
936
+
937
+ BUG FIXES:
938
+
939
+ - core: Fix cases where sometimes SSH connection would hang.
940
+ - core: On a graceful halt, force halt if capability "insert public key"
941
+ is missing. [GH-4684]
942
+ - core: Don't share `/vagrant` if any "." folder is shared. [GH-4675]
943
+ - core: Fix SSH private key permissions more aggressively. [GH-4670]
944
+ - core: Custom Vagrant Cloud server URL now respected in more cases.
945
+ - core: On downloads, don't continue downloads if the remote server
946
+ doesn't support byte ranges. [GH-4479]
947
+ - core: Box downloads recognize more complex content types that include
948
+ "application/json" [GH-4525]
949
+ - core: If all sub-machines are `autostart: false`, don't start any. [GH-4552]
950
+ - core: Update global-status state in more cases. [GH-4513]
951
+ - core: Only delete machine state if the machine is not created in initialize
952
+ - commands/box: `--cert` flag works properly. [GH-4691]
953
+ - command/docker-logs: Won't crash if container is removed. [GH-3990]
954
+ - command/docker-run: Synced folders will be attached properly. [GH-3873]
955
+ - command/rsync: Sync to Docker containers properly. [GH-4066]
956
+ - guests/darwin: Hostname sets bonjour name and local host name. [GH-4535]
957
+ - guests/freebsd: NFS mounting can specify the version. [GH-4518]
958
+ - guests/linux: More descriptive error message if SMB mount fails. [GH-4641]
959
+ - guests/rhel: Hostname setting on 7.x series works properly. [GH-4527]
960
+ - guests/rhel: Installing NFS client works properly on 7.x [GH-4499]
961
+ - guests/solaris11: Static IP address preserved after restart. [GH-4621]
962
+ - guests/ubuntu: Detect with `lsb_release` instead of `/etc/issue`. [GH-4565]
963
+ - hosts/windows: RDP client shouldn't map all drives by default. [GH-4534]
964
+ - providers/docker: Create args works. [GH-4526]
965
+ - providers/docker: Nicer error if package is called. [GH-4595]
966
+ - providers/docker: Host IP restriction is forwarded through. [GH-4505]
967
+ - providers/docker: Protocol is now honored in direct `ports settings.
968
+ - providers/docker: Images built using `build_dir` will more robustly
969
+ capture the final image. [GH-4598]
970
+ - providers/docker: NFS synced folders now work. [GH-4344]
971
+ - providers/docker: Read the created container ID more robustly.
972
+ - providers/docker: `vagrant share` uses correct IP of proxy VM if it
973
+ exists. [GH-4342]
974
+ - providers/docker: `vagrant_vagrantfile` expands home directory. [GH-4000]
975
+ - providers/docker: Fix issue where multiple identical proxy VMs would
976
+ be created. [GH-3963]
977
+ - providers/docker: Multiple links with the same name work. [GH-4571]
978
+ - providers/virtualbox: Show a human-friendly error if VirtualBox didn't
979
+ clean up an existing VM. [GH-4681]
980
+ - providers/virtualbox: Detect case when VirtualBox reports 0.0.0.0 as
981
+ IP address and don't allow it. [GH-4671]
982
+ - providers/virtualbox: Show more descriptive error if VirtualBox is
983
+ reporting an empty version. [GH-4657]
984
+ - provisioners/ansible: Force `ssh` (OpenSSH) connection by default [GH-3396]
985
+ - provisioners/ansible: Don't use or modify `~/.ssh/known_hosts` file by default,
986
+ similarly to native vagrant commands [GH-3900]
987
+ - provisioners/ansible: Use intermediate Docker host when needed. [GH-4071]
988
+ - provisioners/docker: Get GPG key over SSL. [GH-4597]
989
+ - provisioners/docker: Search for docker binary in multiple places. [GH-4580]
990
+ - provisioners/salt: Highstate works properly with a master. [GH-4471]
991
+ - provisioners/shell: Retry getting SSH info a few times. [GH-3924]
992
+ - provisioners/shell: PowerShell scripts can have args. [GH-4548]
993
+ - synced\_folders/nfs: Don't modify NFS exports file if no exports. [GH-4619]
994
+ - synced\_folders/nfs: Prune exports for file path IDs. [GH-3815]
995
+
996
+ PLUGIN AUTHOR CHANGES:
997
+
998
+ - `Machine#action` can be called with the option `lock: false` to not
999
+ acquire a machine lock.
1000
+ - `Machine#reload` will now properly trigger the `machine_id_changed`
1001
+ callback on providers.
1002
+
1003
+ ## 1.6.5 (September 4, 2014)
1004
+
1005
+ BUG FIXES:
1006
+
1007
+ - core: forward SSH even if WinRM is used. [GH-4437]
1008
+ - communicator/ssh: Fix crash when pty is enabled with SSH. [GH-4452]
1009
+ - guests/redhat: Detect various RedHat flavors. [GH-4462]
1010
+ - guests/redhat: Fix typo causing crash in configuring networks. [GH-4438]
1011
+ - guests/redhat: Fix typo causing hostnames to not set. [GH-4443]
1012
+ - providers/virtualbox: NFS works when using DHCP private network. [GH-4433]
1013
+ - provisioners/salt: Fix error when removing non-existent bootstrap script
1014
+ on Windows. [GH-4614]
1015
+
1016
+ ## 1.6.4 (September 2, 2014)
1017
+
1018
+ BACKWARDS INCOMPATIBILITIES:
1019
+
1020
+ - commands/docker-run: Started containers are now deleted after run.
1021
+ Specify the new `--no-rm` flag to retain the original behavior. [GH-4327]
1022
+ - providers/virtualbox: Host IO cache is no longer enabled by default
1023
+ since it causes stale file issues. Please enable manually if you
1024
+ require this. [GH-3934]
1025
+
1026
+ IMPROVEMENTS:
1027
+
1028
+ - core: Added `config.vm.box_server_url` setting to point at a
1029
+ Vagrant Cloud instance. [GH-4282]
1030
+ - core: File checksumming performance has been improved by at least
1031
+ 100%. Memory requirements have gone down by half. [GH-4090]
1032
+ - commands/docker-run: Add the `--no-rm` flag. Containers are
1033
+ deleted by default. [GH-4327]
1034
+ - commands/plugin: Better error output is shown when plugin installation
1035
+ fails.
1036
+ - commands/reload: show post up messsage [GH-4168]
1037
+ - commands/rsync-auto: Add `--poll` flag. [GH-4392]
1038
+ - communicators/winrm: Show stdout/stderr if command fails. [GH-4094]
1039
+ - guests/nixos: Added better NFS support. [GH-3983]
1040
+ - providers/hyperv: Accept VHD disk format. [GH-4208]
1041
+ - providers/hyperv: Support generation 2 VMs. [GH-4324]
1042
+ - provisioners/docker: More verbose output. [GH-4377]
1043
+ - provisioners/salt: Get proper exit codes to detect failed runs. [GH-4304]
1044
+
1045
+ BUG FIXES:
1046
+
1047
+ - core: Downloading box files should resume in more cases since the
1048
+ temporary file is preserved in more cases. [GH-4301]
1049
+ - core: Windows is not detected as NixOS in some cases. [GH-4302]
1050
+ - core: Fix encoding issues with Windows. There are still some outlying
1051
+ but this fixes a few. [GH-4159]
1052
+ - core: Fix crash case when destroying with an invalid provisioner. [GH-4281]
1053
+ - core: Box names with colons work on Windows. [GH-4100]
1054
+ - core: Cleanup all temp files. [GH-4103]
1055
+ - core: User curlrc is not loaded, preventing strange download issues.
1056
+ [GH-4328]
1057
+ - core: VM names may no longer contain brackets, since they cause
1058
+ issues with some providers. [GH-4319]
1059
+ - core: Use "-f" to `rm` files in case pty is true. [GH-4410]
1060
+ - core: SSH key doesn't have to be owned by our user if we're running
1061
+ as root. [GH-4387]
1062
+ - core: "vagrant provision" will cause "vagrant up" to properly not
1063
+ reprovision. [GH-4393]
1064
+ - commands/box/add: "Content-Type" header is now case-insensitive when
1065
+ looking for metadata type. [GH-4369]
1066
+ - commands/docker-run: Named docker containers no longer conflict. [GH-4294]
1067
+ - commands/package: base package won't crash with exception [GH-4017]
1068
+ - commands/rsync-auto: Destroyed machines won't raise exceptions. [GH-4031]
1069
+ - commands/ssh: Extra args are passed through to Docker container. [GH-4378]
1070
+ - communicators/ssh: Nicer error if remote unexpectedly disconnects. [GH-4038]
1071
+ - communicators/ssh: Clean error when max sessions is hit. [GH-4044]
1072
+ - communicators/ssh: Fix many issues around PTY-enabled output parsing.
1073
+ [GH-4408]
1074
+ - communicators/winrm: Support `mkdir` [GH-4271]
1075
+ - communicators/winrm: Properly escape double quotes. [GH-4309]
1076
+ - communicators/winrm: Detect failed commands that aren't CLIs. [GH-4383]
1077
+ - guests/centos: Fix issues when NFS client is installed by restarting
1078
+ NFS [GH-4088]
1079
+ - guests/debian: Deleting default route on DHCP networks can fail. [GH-4262]
1080
+ - guests/fedora: Fix networks on Fedora 20 with libvirt. [GH-4104]
1081
+ - guests/freebsd: Rsync install for rsync synced folders work on
1082
+ FreeBSD 10. [GH-4008]
1083
+ - guests/freebsd: Configure vtnet devices properly [GH-4307]
1084
+ - guests/linux: Show more verbose error when shared folder mount fails.
1085
+ [GH-4403]
1086
+ - guests/redhat: NFS setup should use systemd for RH7+ [GH-4228]
1087
+ - guests/redhat: Detect RHEL 7 (and CentOS) and install Docker properly. [GH-4402]
1088
+ - guests/redhat: Configuring networks on EL7 works. [GH-4195]
1089
+ - guests/redhat: Setting hostname on EL7 works. [GH-4352]
1090
+ - guests/smartos: Use `pfexec` for rsync. [GH-4274]
1091
+ - guests/windows: Reboot after hostname change. [GH-3987]
1092
+ - hosts/arch: NFS works with latest versions. [GH-4224]
1093
+ - hosts/freebsd: NFS exports are proper syntax. [GH-4143]
1094
+ - hosts/gentoo: NFS works with latest versions. [GH-4418]
1095
+ - hosts/windows: RDP command works without crash. [GH-3962]
1096
+ - providers/docker: Port on its own will choose random host port. [GH-3991]
1097
+ - providers/docker: The proxy VM Vagrantfile can be in the same directory
1098
+ as the main Vagrantfile. [GH-4065]
1099
+ - providers/virtualbox: Increase network device limit to 36. [GH-4206]
1100
+ - providers/virtualbox: Error if can't detect VM name. [GH-4047]
1101
+ - provisioners/cfengine: Fix default Yum repo URL. [GH-4335]
1102
+ - provisioners/chef: Chef client cleanup should work. [GH-4099]
1103
+ - provisioners/puppet: Manifest file can be a directory. [GH-4169]
1104
+ - provisioners/puppet: Properly escape facter variables for PowerShell
1105
+ on Windows guests. [GH-3959]
1106
+ - provisioners/puppet: When provisioning fails, don't repeat all of
1107
+ stdout/stderr. [GH-4303]
1108
+ - provisioners/salt: Update salt minion version on Windows. [GH-3932]
1109
+ - provisioners/shell: If args is an array and contains numbers, it no
1110
+ longer crashes. [GH-4234]
1111
+ - provisioners/shell: If fails, the output/stderr isn't repeated
1112
+ again. [GH-4087]
1113
+
1114
+ ## 1.6.3 (May 29, 2014)
1115
+
1116
+ FEATURES:
1117
+
1118
+ - **New Guest:** NixOS - Supports changing host names and setting
1119
+ networks. [GH-3830]
1120
+
1121
+ IMPROVEMENTS:
1122
+
1123
+ - core: A CA path can be specified in the Vagrantfile, not just
1124
+ a file, when using a custom CA. [GH-3848]
1125
+ - commands/box/add: `--capath` flag added for custom CA path. [GH-3848]
1126
+ - commands/halt: Halt in reverse order of up, like destroy. [GH-3790]
1127
+ - hosts/linux: Uses rdesktop to RDP into machines if available. [GH-3845]
1128
+ - providers/docker: Support for UDP forwarded ports. [GH-3886]
1129
+ - provisioners/salt: Works on Windows guests. [GH-3825]
1130
+
1131
+ BUG FIXES:
1132
+
1133
+ - core: Provider plugins more easily are compatible with global-status
1134
+ and should show less stale data. [GH-3808]
1135
+ - core: When setting a synced folder, it will assume it is not disabled
1136
+ unless explicitly specified. [GH-3783]
1137
+ - core: Ignore UDP forwarded ports for collision detection. [GH-3859]
1138
+ - commands/package: Package with `--base` for VirtualBox doesn't
1139
+ crash. [GH-3827]
1140
+ - guests/solaris11: Fix issue with public network and DHCP on newer
1141
+ Solaris releases. [GH-3874]
1142
+ - guests/windows: Private networks with static IPs work when there
1143
+ is more than one. [GH-3818]
1144
+ - guests/windows: Don't look up a forwarded port for WinRM if we're
1145
+ not accessing the local host. [GH-3861]
1146
+ - guests/windows: Fix errors with arg lists that are too long over
1147
+ WinRM in some cases. [GH-3816]
1148
+ - guests/windows: Powershell exits with proper exit code, fixing
1149
+ - issues where non-zero exit codes weren't properly detected. [GH-3922]
1150
+ - hosts/windows: Don't execute mstsc using PowerShell since it doesn't
1151
+ exit properly. [GH-3837]
1152
+ - hosts/windows: For RDP, don't remove the Tempfile right away. [GH-3875]
1153
+ - providers/docker: Never do graceful shutdown, always use
1154
+ `docker stop`. [GH-3798]
1155
+ - providers/docker: Better error messaging when SSH is not ready
1156
+ direct to container. [GH-3763]
1157
+ - providers/docker: Don't port map SSH port if container doesn't
1158
+ support SSH. [GH-3857]
1159
+ - providers/docker: Proper SSH info if using native driver. [GH-3799]
1160
+ - providers/docker: Verify host VM has SSH ready. [GH-3838]
1161
+ - providers/virtualbox: On Windows, check `VBOX_MSI_INSTALL_PATH`
1162
+ for VBoxManage path as well. [GH-3852]
1163
+ - provisioners/puppet: Fix setting facter vars with Windows
1164
+ guests. [GH-3776]
1165
+ - provisioners/puppet: On Windows, run in elevated prompt. [GH-3903]
1166
+ - guests/darwin: Respect mount options for NFS. [GH-3791]
1167
+ - guests/freebsd: Properly register the rsync_pre capability
1168
+ - guests/windows: Certain executed provisioners won't leave output
1169
+ and exit status behind. [GH-3729]
1170
+ - synced\_folders/rsync: `rsync__chown` can be set to `false` to
1171
+ disable recursive chown after sync. [GH-3810]
1172
+ - synced\_folders/rsync: Use a proper msys path if not in
1173
+ Cygwin. [GH-3804]
1174
+ - synced\_folders/rsync: Don't append args infinitely, clear out
1175
+ arg list on each run. [GH-3864]
1176
+
1177
+ PLUGIN AUTHOR CHANGES:
1178
+
1179
+ - Providers can now implement the `rdp_info` provider capability
1180
+ to get proper info for `vagrant rdp` to function.
1181
+
1182
+ ## 1.6.2 (May 12, 2014)
1183
+
1184
+ IMPROVEMENTS:
1185
+
1186
+ - core: Automatically forward WinRM port if communicator is
1187
+ WinRM. [GH-3685]
1188
+ - command/rdp: Args after "--" are passed directly through to the
1189
+ RDP client. [GH-3686]
1190
+ - providers/docker: `build_args` config to specify extra args for
1191
+ `docker build`. [GH-3684]
1192
+ - providers/docker: Can specify options for the build dir synced
1193
+ folder when a host VM is in use. [GH-3727]
1194
+ - synced\_folders/nfs: Can tell Vagrant not to handle exporting
1195
+ by setting `nfs_export: false` [GH-3636]
1196
+
1197
+ BUG FIXES:
1198
+
1199
+ - core: Hostnames can be one character. [GH-3713]
1200
+ - core: Don't lock machines on SSH actions. [GH-3664]
1201
+ - core: Fixed crash when adding a box from Vagrant Cloud that was the
1202
+ same name as a real directory. [GH-3732]
1203
+ - core: Parallelization is more stable, doesn't crash due to to
1204
+ bad locks. [GH-3735]
1205
+ - commands/package: Don't double included files in package. [GH-3637]
1206
+ - guests/linux: Rsync chown ignores symlinks. [GH-3744]
1207
+ - provisioners/shell: Fix shell provisioner config validation when the
1208
+ `binary` option is set to false [GH-3712]
1209
+ - providers/docker: default proxy VM won't use HGFS [GH-3687]
1210
+ - providers/docker: fix container linking [GH-3719]
1211
+ - providers/docker: Port settings expose to host properly. [GH-3723]
1212
+ - provisioners/puppet: Separate module paths with ';' on Windows. [GH-3731]
1213
+ - synced\_folders\rsync: Copy symlinks as real files. [GH-3734]
1214
+ - synced\_folders/rsync: Remove non-portable '-v' flag from chown. [GH-3743]
1215
+
1216
+ ## 1.6.1 (May 7, 2014)
1217
+
1218
+ IMPROVEMENTS:
1219
+
1220
+ - **New guest: Linux Mint** is now properly detected. [GH-3648]
1221
+
1222
+ BUG FIXES:
1223
+
1224
+ - core: Global control works from directories that don't have a
1225
+ Vagrantfile.
1226
+ - core: Plugins that define config methods that collide with Ruby Kernel/Object
1227
+ - methods are merged properly. [GH-3670]
1228
+ - commands/docker-run: `--help` works. [GH-3698]
1229
+ - commands/package: `--base` works without crashing for VirtualBox.
1230
+ - commands/reload: If `--provision` is specified, force provisioning. [GH-3657]
1231
+ - guests/redhat: Fix networking issues with CentOS. [GH-3649]
1232
+ - guests/windows: Human error if WinRM not in use to configure networks. [GH-3651]
1233
+ - guests/windows: Puppet exit code 2 doesn't cause Windows to raise
1234
+ an error. [GH-3677]
1235
+ - providers/docker: Show proper error message when on Linux. [GH-3654]
1236
+ - providers/docker: Proxy VM works properly even if default provider
1237
+ environmental variable set to "docker" [GH-3662]
1238
+ - providers/docker: Put sync folders in `/var/lib/docker` because
1239
+ it usually has disk space. [GH-3680]
1240
+ - synced\_folders/rsync: Create the directory before syncing.
1241
+
1242
+ ## 1.6.0 (May 6, 2014)
1243
+
1244
+ BACKWARDS INCOMPATIBILITIES:
1245
+
1246
+ - Deprecated: `halt_timeout` and `halt_check_interval` settings for
1247
+ SmartOS, Solaris, and Solaris11 guests. These will be fully
1248
+ removed in 1.7. A warning will be shown if they're in use in
1249
+ 1.6.
1250
+
1251
+ FEATURES:
1252
+
1253
+ - **New guest: Windows**. Vagrant now fully supports Windows as a guest
1254
+ VM. WinRM can be used for communication (or SSH), and the shell
1255
+ provisioner, Chef, and Puppet all work with Windows VMs.
1256
+ - **New command: global-status**. This command shows the state of every
1257
+ created Vagrant environment on the system for that logged in user.
1258
+ - **New command: rdp**. This command connects to the running machine
1259
+ via the Remote Desktop Protocol.
1260
+ - **New command: version**. This outputs the currently installed version
1261
+ as well as the latest version of Vagrant available.
1262
+ - **New provider: Docker**. This provider will back your development
1263
+ environments with Docker containers. If you're not on Linux, it will
1264
+ automatically spin up a VM for you on any provider. You can even
1265
+ specify a specific Vagrantfile to use as the Docker container host.
1266
+ - Control Vagrant environments from any directory. Using the UUIDs given
1267
+ in `vagrant global-status`, you can issue commands from anywhere on
1268
+ your machine, not just that environment's directory. Example:
1269
+ `vagrant destroy UUID` from anywhere.
1270
+ - Can now specify a `post_up_message` in your Vagrantfile that is shown
1271
+ after a `vagrant up`. This is useful for putting some instructions of how
1272
+ to use the development environment.
1273
+ - Can configure provisioners to run "once" or "always" (defaults to "once"),
1274
+ so that subsequent `vagrant up` or `reload` calls will always run a
1275
+ provisioner. [GH-2421]
1276
+ - Multi-machine environments can specify an "autostart" option (default
1277
+ to true). `vagrant up` starts all machines that have enabled autostart.
1278
+ - Vagrant is smarter about choosing a default provider. If
1279
+ `VAGRANT_DEFAULT_PROVIDER` is set, it still takes priority, but otherwise
1280
+ Vagrant chooses a "best" provider.
1281
+
1282
+ IMPROVEMENTS:
1283
+
1284
+ - core: Vagrant locks machine access to one Vagrant process at a time.
1285
+ This will protect against two simultaneous `up` actions happening
1286
+ on the same environment.
1287
+ - core: Boxes can be compressed with LZMA now as well.
1288
+ - commands/box/remove: Warns if the box appears to be in use by an
1289
+ environment. Can be forced with `--force`.
1290
+ - commands/destroy: Exit codes changes. 0 means everything succeeded.
1291
+ 1 means everything was declined. 2 means some were declined. [GH-811]
1292
+ - commands/destroy: Doesn't require box to exist anymore. [GH-1629]
1293
+ - commands/init: force flag. [GH-3564]
1294
+ - commands/init: flag for minimal Vagrantfile creation (no comments). [GH-3611]
1295
+ - commands/rsync-auto: Picks up and syncs provisioner folders if
1296
+ provisioners are backed by rsync.
1297
+ - commands/rsync-auto: Detects when new synced folders were added and warns
1298
+ user they won't be synced until `vagrant reload`.
1299
+ - commands/ssh-config: Works without a target in multi-machine envs [GH-2844]
1300
+ - guests/freebsd: Support for virtio interfaces. [GH-3082]
1301
+ - guests/openbsd: Support for virtio interfaces. [GH-3082]
1302
+ - guests/redhat: Networking works for upcoming RHEL7 release. [GH-3643]
1303
+ - providers/hyperv: Implement `vagrant ssh -c` support. [GH-3615]
1304
+ - provisioners/ansible: Support for Ansible Vault. [GH-3338]
1305
+ - provisioners/ansible: Show Ansible command executed. [GH-3628]
1306
+ - provisioners/salt: Colorize option. [GH-3603]
1307
+ - provisioners/salt: Ability to specify log level. [GH-3603]
1308
+ - synced\_folders: nfs: Improve sudo commands used to make them
1309
+ sudoers friendly. Examples in docs. [GH-3638]
1310
+
1311
+ BUG FIXES:
1312
+
1313
+ - core: Adding a box from a network share on Windows works again. [GH-3279]
1314
+ - commands/plugin/install: Specific versions are now locked in.
1315
+ - commands/plugin/install: If insecure RubyGems.org is specified as a
1316
+ source, use that. [GH-3610]
1317
+ - commands/rsync-auto: Interrupt exits properly. [GH-3552]
1318
+ - commands/rsync-auto: Run properly on Windows. [GH-3547]
1319
+ - communicators/ssh: Detect if `config.ssh.shell` is invalid. [GH-3040]
1320
+ - guests/debian: Can set hostname if hosts doesn't contain an entry
1321
+ already for 127.0.1.1 [GH-3271]
1322
+ - guests/linux: For `read_ip_address` capability, set `LANG=en` so
1323
+ it works on international systems. [GH-3029]
1324
+ - providers/virtualbox: VirtalBox detection works properly again on
1325
+ Windows when the `VBOX_INSTALL_PATH` has multiple elements. [GH-3549]
1326
+ - providers/virtualbox: Forcing MAC address on private network works
1327
+ properly again. [GH-3588]
1328
+ - provisioners/chef-solo: Fix Chef version checking to work with prerelease
1329
+ versions. [GH-3604]
1330
+ - provisioners/salt: Always copy keys and configs on provision. [GH-3536]
1331
+ - provisioners/salt: Install args should always be present with bootstrap.
1332
+ - provisioners/salt: Overwrite keys properly on subsequent provisions [GH-3575]
1333
+ - provisioners/salt: Bootstrap uses raw GitHub URL rather than subdomain. [GH-3583]
1334
+ - synced\_folders/nfs: Acquires a process-level lock so exports don't
1335
+ collide with Vagrant running in parallel.
1336
+ - synced\_folders/nfs: Implement usability check so that hosts that
1337
+ don't support NFS get an error earlier. [GH-3625]
1338
+ - synced\_folders/rsync: Add UserKnownHostsFile option to not complain. [GH-3511]
1339
+ - synced\_folders/rsync: Proxy command is used properly if set. [GH-3553]
1340
+ - synced\_folders/rsync: Owner/group settings are respected. [GH-3544]
1341
+ - synced\_folders/smb: Passwords with symbols work. [GH-3642]
1342
+
1343
+ PLUGIN AUTHOR CHANGES:
1344
+
1345
+ - **New host capability:** "rdp\_client". This capability gets the RDP connection
1346
+ info and must launch the RDP client on the system.
1347
+ - core: The "Call" middleware now merges the resulting middleware stack
1348
+ into the current stack, rather than running it as a separate stack.
1349
+ The result is that ordering is preserved.
1350
+ - core: The "Message" middleware now takes a "post" option that will
1351
+ output the message on the return-side of the middleware stack.
1352
+ - core: Forwarded port collision repair works when Vagrant is run in
1353
+ parallel with other Vagrant processes. [GH-2966]
1354
+ - provider: Providers can now specify that boxes are optional. This lets
1355
+ you use the provider without a `config.vm.box`. Useful for providers like
1356
+ AWS or Docker.
1357
+ - provider: A new class-level `usable?` method can be implemented on the
1358
+ provider implementation. This returns or raises an error when the
1359
+ provider is not usable (i.e. VirtualBox isn't installed for VirtualBox)
1360
+ - synced\_folders: New "disable" method for removing synced folders from
1361
+ a running machine.
1362
+
1363
+ ## 1.5.4 (April 21, 2014)
1364
+
1365
+ IMPROVEMENTS:
1366
+
1367
+ - commands/box/list: Doesn't parse Vagrantfile. [GH-3502]
1368
+ - providers/hyperv: Implement the provision command. [GH-3494]
1369
+
1370
+ BUG FIXES:
1371
+
1372
+ - core: Allow overriding of the default SSH port. [GH-3474]
1373
+ - commands/box/remove: Make output nicer. [GH-3470]
1374
+ - commands/box/update: Show currently installed version. [GH-3467]
1375
+ - command/rsync-auto: Works properly on Windows.
1376
+ - guests/coreos: Fix test for Docker daemon running.
1377
+ - guests/linux: Fix test for Docker provisioner whether Docker is
1378
+ running.
1379
+ - guests/linux: Fix regression where rsync owner/group stopped
1380
+ working. [GH-3485]
1381
+ - provisioners/docker: Fix issue where we weren't waiting for Docker
1382
+ to properly start before issuing commands. [GH-3482]
1383
+ - provisioners/shell: Better validation of master config path, results
1384
+ in no more stack traces at runtime. [GH-3505]
1385
+
1386
+ ## 1.5.3 (April 14, 2014)
1387
+
1388
+ IMPROVEMENTS:
1389
+
1390
+ - core: 1.5 upgrade code gives users a chance to quit. [GH-3212]
1391
+ - commands/rsync-auto: An initial sync is done before watching folders. [GH-3327]
1392
+ - commands/rsync-auto: Exit immediately if there are no paths to watch.
1393
+ [GH-3446]
1394
+ - provisioners/ansible: custom vars/hosts files can be added in
1395
+ .vagrant/provisioners/ansible/inventory/ directory [GH-3436]
1396
+
1397
+ BUG FIXES:
1398
+
1399
+ - core: Randomize some filenames internally to improve the parallelism
1400
+ of Vagrant. [GH-3386]
1401
+ - core: Don't error if network problems cause box update check to
1402
+ fail [GH-3391]
1403
+ - core: `vagrant` on Windows cmd.exe doesn't always exit with exit
1404
+ code zero. [GH-3420]
1405
+ - core: Adding a box from a network share has nice error on Windows. [GH-3279]
1406
+ - core: Setting an ID on a provisioner now works. [GH-3424]
1407
+ - core: All synced folder paths containing symlinks are fully
1408
+ expanded before sharing. [GH-3444]
1409
+ - core: Windows no longer sees "process not started" errors rarely.
1410
+ - commands/box/repackage: Works again. [GH-3372]
1411
+ - commands/box/update: Update should check for updates from latest
1412
+ version. [GH-3452]
1413
+ - commands/package: Nice error if includes contain symlinks. [GH-3200]
1414
+ - commands/rsync-auto: Don't crash if the machine can't be communicated
1415
+ to. [GH-3419]
1416
+ - communicators/ssh: Throttle connection attempt warnings if the warnings
1417
+ are the same. [GH-3442]
1418
+ - guests/coreos: Docker provisioner works. [GH-3425]
1419
+ - guests/fedora: Fix hostname setting. [GH-3382]
1420
+ - guests/fedora: Support predictable network interface names for
1421
+ public/private networks. [GH-3207]
1422
+ - guests/linux: Rsync folders have proper group if owner not set. [GH-3223]
1423
+ - guests/linux: If SMB folder mounting fails, the password will no
1424
+ longer be shown in plaintext in the output. [GH-3203]
1425
+ - guests/linux: SMB mount works with passwords with symbols. [GH-3202]
1426
+ - providers/hyperv: Check for PowerShell features. [GH-3398]
1427
+ - provisioners/docker: Don't automatically generate container name with
1428
+ a forward slash. [GH-3216]
1429
+ - provisioners/shell: Empty shell scripts don't cause errors. [GH-3423]
1430
+ - synced\_folders/smb: Only set the chmod properly by default on Windows
1431
+ if it isn't already set. [GH-3394]
1432
+ - synced\_folders/smb: Sharing folders with odd characters like parens
1433
+ works properly now. [GH-3405]
1434
+
1435
+ ## 1.5.2 (April 2, 2014)
1436
+
1437
+ IMPROVEMENTS:
1438
+
1439
+ - **New guest:** SmartOS
1440
+ - core: Change wording from "error" to "warning" on SSH retry output
1441
+ to convey actual meaning.
1442
+ - commands/plugin: Listing plugins now has machine-readable output. [GH-3293]
1443
+ - guests/omnios: Mount NFS capability [GH-3282]
1444
+ - synced\_folders/smb: Verify PowerShell v3 or later is running. [GH-3257]
1445
+
1446
+ BUG FIXES:
1447
+
1448
+ - core: Vagrant won't collide with newer versions of Bundler [GH-3193]
1449
+ - core: Allow provisioner plugins to not have a config class. [GH-3272]
1450
+ - core: Removing a specific box version that doesn't exist doesn't
1451
+ crash Vagrant. [GH-3364]
1452
+ - core: SSH commands are forced to be ASCII.
1453
+ - core: private networks with DHCP type work if type parameter is
1454
+ a string and not a symbol. [GH-3349]
1455
+ - core: Converting to cygwin path works for folders with spaces. [GH-3304]
1456
+ - core: Can add boxes with spaces in their path. [GH-3306]
1457
+ - core: Prerelease plugins installed are locked to that prerelease
1458
+ version. [GH-3301]
1459
+ - core: Better error message when adding a box with a malformed version. [GH-3332]
1460
+ - core: Fix a rare issue where vagrant up would complain it couldn't
1461
+ check version of a box that doesn't exist. [GH-3326]
1462
+ - core: Box version constraint can't be specified with old-style box. [GH-3260]
1463
+ - commands/box: Show versions when listing. [GH-3316]
1464
+ - commands/box: Outdated check can list local boxes that are newer. [GH-3321]
1465
+ - commands/status: Machine readable output contains the target. [GH-3218]
1466
+ - guests/arch: Reload udev rules after network change. [GH-3322]
1467
+ - guests/debian: Changing host name works properly. [GH-3283]
1468
+ - guests/suse: Shutdown works correctly on SLES [GH-2775]
1469
+ - hosts/linux: Don't hardcode `exportfs` path. Now searches the PATH. [GH-3292]
1470
+ - providers/hyperv: Resume command works properly. [GH-3336]
1471
+ - providers/virtualbox: Add missing translation for stopping status. [GH-3368]
1472
+ - providers/virtualbox: Host-only networks set cableconnected property
1473
+ to "yes" [GH-3365]
1474
+ - provisioners/docker: Use proper flags for 0.9. [GH-3356]
1475
+ - synced\_folders/rsync: Set chmod flag by default on Windows. [GH-3256]
1476
+ - synced\_folders/smb: IDs of synced folders are hashed to work better
1477
+ with VMware. [GH-3219]
1478
+ - synced\_folders/smb: Properly remove existing folders with the
1479
+ same name. [GH-3354]
1480
+ - synced\_folders/smb: Passwords with symbols now work. [GH-3242]
1481
+ - synced\_folders/smb: Exporting works for non-english locale Windows
1482
+ machines. [GH-3251]
1483
+
1484
+ ## 1.5.1 (March 13, 2014)
1485
+
1486
+ IMPROVEMENTS:
1487
+
1488
+ - guests/tinycore: Will now auto-install rsync.
1489
+ - synced\_folders/rsync: rsync-auto will not watch filesystem for
1490
+ excluded paths. [GH-3159]
1491
+
1492
+ BUG FIXES:
1493
+
1494
+ - core: V1 Vagrantfiles can upgrade provisioners properly. [GH-3092]
1495
+ - core: Rare EINVAL errors on box adding are gone. [GH-3094]
1496
+ - core: Upgrading the home directory for Vagrant 1.5 uses the Vagrant
1497
+ temp dir. [GH-3095]
1498
+ - core: Assume a box isn't metadata if it exceeds 20 MB. [GH-3107]
1499
+ - core: Asking for input works even in consoles that don't support
1500
+ hiding input. [GH-3119]
1501
+ - core: Adding a box by path in Cygwin on Windos works. [GH-3132]
1502
+ - core: PowerShell scripts work when they're in a directory with
1503
+ spaces. [GH-3100]
1504
+ - core: If you add a box path that doesn't exist, error earlier. [GH-3091]
1505
+ - core: Validation on forwarded ports to make sure they're between
1506
+ 0 and 65535. [GH-3187]
1507
+ - core: Downloads with user/password use the curl `-u` flag. [GH-3183]
1508
+ - core: `vagrant help` no longer loads the Vagrantfile. [GH-3180]
1509
+ - guests/darwin: Fix an exception when configuring networks. [GH-3143]
1510
+ - guests/linux: Only chown folders/files in rsync if they don't
1511
+ have the proper owner. [GH-3186]
1512
+ - hosts/linux: Unusual sed delimiter to avoid conflicts. [GH-3167]
1513
+ - providers/virtualbox: Make more internal interactions with VBoxManage
1514
+ retryable to avoid spurious VirtualBox errors. [GH-2831]
1515
+ - providers/virtualbox: Import progress works again on Windows.
1516
+ - provisioners/ansible: Request SSH info within the provision method,
1517
+ when we know its available. [GH-3111]
1518
+ - synced\_folders/rsync: owner/group settings work. [GH-3163]
1519
+
1520
+ ## 1.5.0 (March 10, 2014)
1521
+
1522
+ BREAKING CHANGES:
1523
+
1524
+ - provisioners/ansible: the machine name (taken from Vagrantfile) is now
1525
+ set as default limit to ensure that vagrant provision steps only
1526
+ affect the expected machine.
1527
+
1528
+ DEPRECATIONS:
1529
+
1530
+ - provisioners/chef-solo: The "nfs" setting has been replaced by
1531
+ `synced_folder_type`. The "nfs" setting will be removed in the next
1532
+ version.
1533
+ - provisioners/puppet: The "nfs" setting has been replaced by
1534
+ `synced_folder_type`. The "nfs" setting will be removed in the next
1535
+ version.
1536
+
1537
+ FEATURES:
1538
+
1539
+ - **New provider:** Hyper-V. If you're on a Windows machine with Hyper-V
1540
+ enabled, Vagrant can now manage Hyper-V virtual machines out of the box.
1541
+ - **New guest:** Funtoo (change host name and networks supported)
1542
+ - **New guest:** NetBSD
1543
+ - **New guest:** TinyCore Linux. This allows features such as networking,
1544
+ halting, rsync and more work with Boot2Docker.
1545
+ - **New synced folder type:** rsync - Does a one-time one-directional sync
1546
+ to the guest machine. New commands `vagrant rsync` and `vagrant rsync-auto`
1547
+ can resync the folders.
1548
+ - **New synced folder type:** SMB- Allows bi-directional folder syncing
1549
+ using SMB on Windows hosts with any guest.
1550
+ - Password-based SSH authentication. This lets you use almost any off-the-shelf
1551
+ virtual machine image with Vagrant. Additionally, Vagrant will automatically
1552
+ insert a keypair into the machine.
1553
+ - Plugin versions can now be constrained to a range of versions. Example:
1554
+ `vagrant plugin install foo --plugin-version "> 1.0, < 1.1"`
1555
+ - Host-specific operations now use a "host capabilities" system much like
1556
+ guests have used "guest capabilities" for a few releases now. This allows
1557
+ plugin developers to create pluggable host-specific capabilities and makes
1558
+ further integrating Vagrant with new operating systems even easier.
1559
+ - You can now override provisioners within sub-VM configuration and
1560
+ provider overrides. See documentation for more info. [GH-1113]
1561
+ - providers/virtualbox: Provider-specific configuration `cpus` can be used
1562
+ to set the number of CPUs on the VM [GH-2800]
1563
+ - provisioners/docker: Can now build images using `docker build`. [GH-2615]
1564
+
1565
+ IMPROVEMENTS:
1566
+
1567
+ - core: Added "error-exit" type to machine-readable output which contains
1568
+ error information that caused a non-zero exit status. [GH-2999]
1569
+ - command/destroy: confirmation will re-ask question if bad input. [GH-3027]
1570
+ - guests/solaris: More accurate Solaris >= 11, < 11 detection. [GH-2824]
1571
+ - provisioners/ansible: Generates a single inventory file, rather than
1572
+ one per machine. See docs for more info. [GH-2991]
1573
+ - provisioners/ansible: SSH forwarding support. [GH-2952]
1574
+ - provisioners/ansible: Multiple SSH keys can now be attempted [GH-2952]
1575
+ - provisioners/ansible: Disable SSH host key checking by default,
1576
+ which improves the experience. We believe this is a sane default
1577
+ for ephemeral dev machines.
1578
+ - provisioners/chef-solo: New config `synced_folder_type` replaces the
1579
+ `nfs` option. This can be used to set the synced folders the provisioner
1580
+ needs to any type. [GH-2709]
1581
+ - provisioners/chef-solo: `roles_paths` can now be an array of paths in
1582
+ Chef 11.8.0 and newer. [GH-2975]
1583
+ - provisioners/docker: Can start a container without daemonization.
1584
+ - provisioners/docker: Started containers are given names. [GH-3051]
1585
+ - provisioners/puppet: New config `synced_folder_type` replaces the
1586
+ `nfs` option. This can be used to set the synced folders the provisioner
1587
+ needs to any type. [GH-2709]
1588
+ - commands/plugin: `vagrant plugin update` will now update all installed
1589
+ plugins, respecting any constraints set.
1590
+ - commands/plugin: `vagrant plugin uninstall` can now uninstall multiple
1591
+ plugins.
1592
+ - commands/plugin: `vagrant plugin install` can now install multiple
1593
+ plugins.
1594
+ - hosts/redhat: Recognize Korora OS. [GH-2869]
1595
+ - synced\_folders/nfs: If the guest supports it, NFS clients will be
1596
+ automatically installed in the guest.
1597
+
1598
+ BUG FIXES:
1599
+
1600
+ - core: If an exception was raised while attempting to connect to SSH
1601
+ for the first time, it would get swallowed. It is properly raised now.
1602
+ - core: Plugin installation does not fail if your local gemrc file has
1603
+ syntax errors.
1604
+ - core: Plugins that fork within certain actions will no longer hang
1605
+ indefinitely. [GH-2756]
1606
+ - core: Windows checks home directory permissions more correctly to
1607
+ warn of potential issues.
1608
+ - core: Synced folders set to the default synced folder explicitly won't
1609
+ be deleted. [GH-2873]
1610
+ - core: Static IPs can end in ".1". A warning is now shown. [GH-2914]
1611
+ - core: Adding boxes that have directories in them works on Windows.
1612
+ - core: Vagrant will not think provisioning is already done if
1613
+ the VM is manually deleted outside of Vagrant.
1614
+ - core: Box file checksums of large files works properly on Windows.
1615
+ [GH-3045]
1616
+ - commands/box: Box add `--force` works with `--provider` flag. [GH-2757]
1617
+ - commands/box: Listing boxes with machine-readable output crash is gone.
1618
+ - commands/plugin: Plugin installation will fail if dependencies conflict,
1619
+ rather than at runtime.
1620
+ - commands/ssh: When using `-c` on Windows, no more TTY errors.
1621
+ - commands/ssh-config: ProxyCommand is included in output if it is
1622
+ set. [GH-2950]
1623
+ - guests/coreos: Restart etcd after configuring networks. [GH-2852]
1624
+ - guests/linux: Don't chown VirtualBox synced folders if mounting
1625
+ as readonly. [GH-2442]
1626
+ - guests/redhat: Set hostname to FQDN, per the documentation for RedHat.
1627
+ [GH-2792]
1628
+ - hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808]
1629
+ - hosts/bsd: Sort NFS exports to avoid false validation errors. [GH-2927]
1630
+ - hosts/bsd: No more checkexports NFS errors if you're sharing the
1631
+ same directory. [GH-3023]
1632
+ - hosts/gentoo: Look for systemctl in `/usr/bin` [GH-2858]
1633
+ - hosts/linux: Properly escape regular expression to prune NFS exports,
1634
+ allowing VMware to work properly. [GH-2934]
1635
+ - hosts/opensuse: Start NFS server properly. [GH-2923]
1636
+ - providers/virtualbox: Enabling internal networks by just setting "true"
1637
+ works properly. [GH-2751]
1638
+ - providers/virtualbox: Make more internal interactions with VBoxManage
1639
+ retryable to avoid spurious VirtualBox errors. [GH-2831]
1640
+ - providers/virtualbox: Config validation catches invalid keys. [GH-2843]
1641
+ - providers/virtualbox: Fix network adapter configuration issue if using
1642
+ provider-specific config. [GH-2854]
1643
+ - providers/virtualbox: Bridge network adapters always have their
1644
+ "cable connected" properly. [GH-2906]
1645
+ - provisioners/chef: When chowning folders, don't follow symlinks.
1646
+ - provisioners/chef: Encrypted data bag secrets also in Chef solo are
1647
+ now uploaded to the provisioning path to avoid perm issues. [GH-2845]
1648
+ - provisioners/chef: Encrypted data bag secret is removed from the
1649
+ machine before and after provisioning also with Chef client. [GH-2845]
1650
+ - provisioners/chef: Set `encrypted_data_bag_secret` on the VM to `nil`
1651
+ if the secret is not specified. [GH-2984]
1652
+ - provisioners/chef: Fix loading of the custom configure file. [GH-876]
1653
+ - provisioners/docker: Only add SSH user to docker group if the user
1654
+ isn't already in it. [GH-2838]
1655
+ - provisioners/docker: Configuring autostart works properly with
1656
+ the newest versions of Docker. [GH-2874]
1657
+ - provisioners/puppet: Append default module path to the module paths
1658
+ always. [GH-2677]
1659
+ - provisioners/salt: Setting pillar data doesn't require `deep_merge`
1660
+ plugin anymore. [GH-2348]
1661
+ - provisioners/salt: Options can now set install type and install args.
1662
+ [GH-2766]
1663
+ - provisioners/salt: Fix case when salt would say "options only allowed
1664
+ before install arguments" [GH-3005]
1665
+ - provisioners/shell: Error if script is encoded incorrectly. [GH-3000]
1666
+ - synced\_folders/nfs: NFS entries are pruned on every `vagrant up`,
1667
+ if there are any to prune. [GH-2738]
1668
+
1669
+ ## 1.4.3 (January 2, 2014)
1670
+
1671
+ BUG FIXES:
1672
+
1673
+ - providers/virtualbox: `vagrant package` works properly again. [GH-2739]
1674
+
1675
+ ## 1.4.2 (December 31, 2013)
1676
+
1677
+ IMPROVEMENTS:
1678
+
1679
+ - guests/linux: emit upstart event when NFS folders are mounted. [GH-2705]
1680
+ - provisioners/chef-solo: Encrypted data bag secret is removed from the
1681
+ machine after provisioning. [GH-2712]
1682
+
1683
+ BUG FIXES:
1684
+
1685
+ - core: Ctrl-C no longer raises "trap context" exception.
1686
+ - core: The version for `Vagrant.configure` can now be an int. [GH-2689]
1687
+ - core: `Vagrant.has_plugin?` tries to use plugin's gem name before
1688
+ registered plugin name [GH-2617]
1689
+ - core: Fix exception if an EOFError was somehow raised by Ruby while
1690
+ checking a box checksum. [GH-2716]
1691
+ - core: Better error message if your plugin state file becomes corrupt
1692
+ somehow. [GH-2694]
1693
+ - core: Box add will fail early if the box already exists. [GH-2621]
1694
+ - hosts/bsd: Only run `nfsd checkexports` if there is an exports file.
1695
+ [GH-2714]
1696
+ - commands/plugin: Fix exception that could happen rarely when installing
1697
+ a plugin.
1698
+ - providers/virtualbox: Error when packaging if the package already exists
1699
+ _before_ the export is done. [GH-2380]
1700
+ - providers/virtualbox: NFS with static IP works even if VirtualBox
1701
+ guest additions aren't installed (regression). [GH-2674]
1702
+ - synced\_folders/nfs: sudo will only ask for password one at a time
1703
+ when using a parallel provider [GH-2680]
1704
+
1705
+ ## 1.4.1 (December 18, 2013)
1706
+
1707
+ IMPROVEMENTS:
1708
+
1709
+ - hosts/bsd: check NFS exports file for issues prior to exporting
1710
+ - provisioners/ansible: Add ability to use Ansible groups in generated
1711
+ inventory [GH-2606]
1712
+ - provisioners/docker: Add support for using the provisioner with RedHat
1713
+ based guests [GH-2649]
1714
+ - provisioners/docker: Remove "Docker" prefix from Client and Installer
1715
+ classes [GH-2641]
1716
+
1717
+ BUG FIXES:
1718
+
1719
+ - core: box removal of a V1 box works
1720
+ - core: `vagrant ssh -c` commands are now executed in the context of
1721
+ a login shell (regression). [GH-2636]
1722
+ - core: specifying `-t` or `-T` to `vagrant ssh -c` as extra args
1723
+ will properly enable/disable a TTY for OpenSSH. [GH-2618]
1724
+ - commands/init: Error if can't write Vagrantfile to directory. [GH-2660]
1725
+ - guests/debian: fix `use_dhcp_assigned_default_route` to work properly.
1726
+ [GH-2648]
1727
+ - guests/debian,ubuntu: fix change\_host\_name for FQDNs with trailing
1728
+ dots [GH-2610]
1729
+ - guests/freebsd: configuring networks in the guest works properly
1730
+ [GH-2620]
1731
+ - guests/redhat: fix configure networks bringing down interfaces that
1732
+ don't exist. [GH-2614]
1733
+ - providers/virtualbox: Don't override NFS exports for all VMs when
1734
+ coming up. [GH-2645]
1735
+ - provisioners/ansible: Array arguments work for raw options [GH-2667]
1736
+ - provisioners/chef-client: Fix node/client deletion when node\_name is not
1737
+ set. [GH-2345]
1738
+ - provisioners/chef-solo: Force remove files to avoid cases where
1739
+ a prompt would be shown to users. [GH-2669]
1740
+ - provisioners/puppet: Don't prepend default module path for Puppet
1741
+ in case Puppet is managing its own paths. [GH-2677]
1742
+
1743
+ ## 1.4.0 (December 9, 2013)
1744
+
1745
+ FEATURES:
1746
+
1747
+ - New provisioner: Docker. Install Docker, pull containers, and run
1748
+ containers easier than ever.
1749
+ - Machine readable output. Vagrant now has machine-friendly output by
1750
+ using the `--machine-readable` flag.
1751
+ - New plugin type: synced folder implementation. This allows new ways of
1752
+ syncing folders to be added as plugins to Vagrant.
1753
+ - The `Vagrant.require_version` function can be used at the top of a Vagrantfile
1754
+ to enforce a minimum/maximum Vagrant version.
1755
+ - Adding boxes via `vagrant box add` and the Vagrantfile both support
1756
+ providing checksums of the box files.
1757
+ - The `--debug` flag can be specified on any command now to get debug-level
1758
+ log output to ease reporting bugs.
1759
+ - You can now specify a memory using `vb.memory` setting with VirtualBox.
1760
+ - Plugin developers can now hook into `environment_plugins_loaded`, which is
1761
+ executed after plugins are loaded but before Vagrantfiles are parsed.
1762
+ - VirtualBox internal networks are now supported. [GH-2020]
1763
+
1764
+ IMPROVEMENTS:
1765
+
1766
+ - core: Support resumable downloads [GH-57]
1767
+ - core: owner/group of shared folders can be specified by integers. [GH-2390]
1768
+ - core: the VAGRANT\_NO\_COLOR environmental variable may be used to enable
1769
+ `--no-color` mode globally. [GH-2261]
1770
+ - core: box URL and add date is tracked and shown if `-i` flag is
1771
+ specified for `vagrant box list` [GH-2327]
1772
+ - core: Multiple SSH keys can be specified with `config.ssh.private_key_path`
1773
+ [GH-907]
1774
+ - core: `config.vm.box_url` can be an array of URLs. [GH-1958]
1775
+ - commands/box/add: Can now specify a custom CA cert for verifying
1776
+ certs from a custom CA. [GH-2337]
1777
+ - commands/box/add: Can now specify a client cert when downloading a
1778
+ box. [GH-1889]
1779
+ - commands/init: Add `--output` option for specifying output path, or
1780
+ "-" for stdin. [GH-1364]
1781
+ - commands/provision: Add `--no-parallel` option to disable provider
1782
+ parallelization if the provider supports it. [GH-2404]
1783
+ - commands/ssh: SSH compression is enabled by default. [GH-2456]
1784
+ - commands/ssh: Inline commands specified with "-c" are now executed
1785
+ using OpenSSH rather than pure-Ruby SSH. It is MUCH faster, and
1786
+ stdin works!
1787
+ - communicators/ssh: new configuration `config.ssh.pty` is a boolean for
1788
+ whether you want ot use a PTY for provisioning.
1789
+ - guests/linux: emit upstart event `vagrant-mounted` if upstart is
1790
+ available. [GH-2502]
1791
+ - guests/pld: support changing hostname [GH-2543]
1792
+ - providers/virtualbox: Enable symlinks for VirtualBox 4.1. [GH-2414]
1793
+ - providers/virtualbox: default VM name now includes milliseconds with
1794
+ a random number to try to avoid conflicts in CI environments. [GH-2482]
1795
+ - providers/virtualbox: customizations via VBoxManage are retried, avoiding
1796
+ VirtualBox flakiness [GH-2483]
1797
+ - providers/virtualbox: NFS works with DHCP host-only networks now. [GH-2560]
1798
+ - provisioners/ansible: allow files for extra vars [GH-2366]
1799
+ - provisioners/puppet: client cert and private key can now be specified
1800
+ for the puppet server provisioner. [GH-902]
1801
+ - provisioners/puppet: the manifests path can be in the VM. [GH-1805]
1802
+ - provisioners/shell: Added `keep_color` option to not automatically color
1803
+ output based on stdout/stderr. [GH-2505]
1804
+ - provisioners/shell: Arguments can now be an array of args. [GH-1949]
1805
+ - synced\_folders/nfs: Specify `nfs_udp` to false to disable UDP based
1806
+ NFS folders. [GH-2304]
1807
+
1808
+ BUG FIXES:
1809
+
1810
+ - core: Make sure machine IDs are always strings. [GH-2434]
1811
+ - core: 100% CPU spike when waiting for SSH is fixed. [GH-2401]
1812
+ - core: Command lookup works on systems where PATH is not valid UTF-8 [GH-2514]
1813
+ - core: Human-friendly error if box metadata.json becomes corrupted. [GH-2305]
1814
+ - core: Don't load Vagrantfile on `vagrant plugin` commands, allowing
1815
+ Vagrantfiles that use plugins to work. [GH-2388]
1816
+ - core: global flags are ignored past the "--" on the CLI. [GH-2491]
1817
+ - core: provisoining will properly happen if `up` failed. [GH-2488]
1818
+ - guests/freebsd: Mounting NFS folders works. [GH-2400]
1819
+ - guests/freebsd: Uses `sh` by default for shell. [GH-2485]
1820
+ - guests/linux: upstart events listening for `vagrant-mounted` won't
1821
+ wait for jobs to complete, fixing issues with blocking during
1822
+ vagrant up [GH-2564]
1823
+ - guests/redhat: `DHCP_HOSTNAME` is set to the hostname, not the FQDN. [GH-2441]
1824
+ - guests/redhat: Down interface before messing up configuration file
1825
+ for networking. [GH-1577]
1826
+ - guests/ubuntu: "localhost" is preserved when changing hostnames.
1827
+ [GH-2383]
1828
+ - hosts/bsd: Don't set mapall if maproot is set in NFS. [GH-2448]
1829
+ - hosts/gentoo: Support systemd for NFS startup. [GH-2382]
1830
+ - providers/virtualbox: Don't start new VM if VirtualBox has transient
1831
+ failure during `up` from suspended. [GH-2479]
1832
+ - provisioners/chef: Chef client encrypted data bag secrets are now
1833
+ uploaded to the provisioning path to avoid perm issues. [GH-1246]
1834
+ - provisioners/chef: Create/chown the cache and backup folders. [GH-2281]
1835
+ - provisioners/chef: Verify environment paths exist in config
1836
+ validation step. [GH-2381]
1837
+ - provisioners/puppet: Multiple puppet definitions in a Vagrantfile
1838
+ work correctly.
1839
+ - provisioners/salt: Bootstrap on FreeBSD systems work. [GH-2525]
1840
+ - provisioners/salt: Extra args for bootstrap are put in the proper
1841
+ location. [GH-2558]
1842
+
1843
+ ## 1.3.5 (October 15, 2013)
1844
+
1845
+ FEATURES:
1846
+
1847
+ - VirtualBox 4.3 is now supported. [GH-2374]
1848
+ - ESXi is now a supported guest OS. [GH-2347]
1849
+
1850
+ IMPROVEMENTS:
1851
+
1852
+ - guests/redhat: Oracle Linux is now supported. [GH-2329]
1853
+ - provisioners/salt: Support running overstate. [GH-2313]
1854
+
1855
+ BUG FIXES:
1856
+
1857
+ - core: Fix some places where "no error message" errors were being
1858
+ reported when in fact there were errors. [GH-2328]
1859
+ - core: Disallow hyphens or periods for starting hostnames. [GH-2358]
1860
+ - guests/ubuntu: Setting hostname works properly. [GH-2334]
1861
+ - providers/virtualbox: Retryable VBoxManage commands are properly
1862
+ retried. [GH-2365]
1863
+ - provisioners/ansible: Verbosity won't be blank by default. [GH-2320]
1864
+ - provisioners/chef: Fix exception raised during Chef client node
1865
+ cleanup. [GH-2345]
1866
+ - provisioners/salt: Correct master seed file name. [GH-2359]
1867
+
1868
+ ## 1.3.4 (October 2, 2013)
1869
+
1870
+ FEATURES:
1871
+
1872
+ - provisioners/shell: Specify the `binary` option as true and Vagrant won't
1873
+ automatically replace Windows line endings with Unix ones. [GH-2235]
1874
+
1875
+ IMPROVEMENTS:
1876
+
1877
+ - guests/suse: Support installing CFEngine. [GH-2273]
1878
+
1879
+ BUG FIXES:
1880
+
1881
+ - core: Don't output `\e[0K` anymore on Windows. [GH-2246]
1882
+ - core: Only modify `DYLD_LIBRARY_PATH` on Mac when executing commands
1883
+ in the installer context. [GH-2231]
1884
+ - core: Clear `DYLD_LIBRARY_PATH` on Mac if the subprocess is executing
1885
+ a setuid or setgid script. [GH-2243]
1886
+ - core: Defined action hook names can be strings now. They are converted
1887
+ to symbols internally.
1888
+ - guests/debian: FQDN is properly set when setting the hostname. [GH-2254]
1889
+ - guests/linux: Fix poor chown command for mounting VirtualBox folders.
1890
+ - guests/linux: Don't raise exception right away if mounting fails, allow
1891
+ retries. [GH-2234]
1892
+ - guests/redhat: Changing hostname changes DHCP_HOSTNAME. [GH-2267]
1893
+ - hosts/arch: Vagrant won't crash on Arch anymore. [GH-2233]
1894
+ - provisioners/ansible: Extra vars are converted to strings. [GH-2244]
1895
+ - provisioners/ansible: Output will show up on a task-by-task basis. [GH-2194]
1896
+ - provisioners/chef: Propagate disabling color if Vagrant has no color
1897
+ enabled. [GH-2246]
1898
+ - provisioners/chef: Delete from chef server exception fixed. [GH-2300]
1899
+ - provisioners/puppet: Work with restrictive umask. [GH-2241]
1900
+ - provisioners/salt: Remove bootstrap definition file on each run in
1901
+ order to avoid permissions issues. [GH-2290]
1902
+
1903
+ ## 1.3.3 (September 18, 2013)
1904
+
1905
+ BUG FIXES:
1906
+
1907
+ - core: Fix issues with dynamic linker not finding symbols on OS X. [GH-2219]
1908
+ - core: Properly clean up machine directories on destroy. [GH-2223]
1909
+ - core: Add a timeout to waiting for SSH connection and server headers
1910
+ on SSH. [GH-2226]
1911
+
1912
+ ## 1.3.2 (September 17, 2013)
1913
+
1914
+ IMPROVEMENTS:
1915
+
1916
+ - provisioners/ansible: Support more verbosity levels, better documentation.
1917
+ [GH-2153]
1918
+ - provisioners/ansible: Add `host_key_checking` configuration. [GH-2203]
1919
+
1920
+ BUG FIXES:
1921
+
1922
+ - core: Report the proper invalid state when waiting for the guest machine
1923
+ to be ready
1924
+ - core: `Guest#capability?` now works with strings as well
1925
+ - core: Fix NoMethodError in the new `Vagrant.has_plugin?` method [GH-2189]
1926
+ - core: Convert forwarded port parameters to integers. [GH-2173]
1927
+ - core: Don't spike CPU to 100% while waiting for machine to boot. [GH-2163]
1928
+ - core: Increase timeout for individual SSH connection to 60 seconds. [GH-2163]
1929
+ - core: Call realpath after creating directory so NFS directory creation
1930
+ works. [GH-2196]
1931
+ - core: Don't try to be clever about deleting the machine state
1932
+ directory anymore. Manually done in destroy actions. [GH-2201]
1933
+ - core: Find the root Vagrantfile only if Vagrantfile is a file, not
1934
+ a directory. [GH-2216]
1935
+ - guests/linux: Try `id -g` in addition to `getent` for mounting
1936
+ VirtualBox shared folders [GH-2197]
1937
+ - hosts/arch: NFS exporting works properly, no exceptions. [GH-2161]
1938
+ - hosts/bsd: Use only `sudo` for writing NFS exports. This lets NFS
1939
+ exports work if you have sudo privs but not `su`. [GH-2191]
1940
+ - hosts/fedora: Fix host detection encoding issues. [GH-1977]
1941
+ - hosts/linux: Fix NFS export problems with `no_subtree_check`. [GH-2156]
1942
+ - installer/mac: Vagrant works properly when a library conflicts from
1943
+ homebrew. [GH-2188]
1944
+ - installer/mac: deb/rpm packages now have an epoch of 1 so that new
1945
+ installers don't appear older. [GH-2179]
1946
+ - provisioners/ansible: Default output level is now verbose again. [GH-2194]
1947
+ - providers/virtualbox: Fix an issue where destroy middlewares weren't
1948
+ being properly called. [GH-2200]
1949
+
1950
+ ## 1.3.1 (September 6, 2013)
1951
+
1952
+ BUG FIXES:
1953
+
1954
+ - core: Fix various issues where using the same options hash in a
1955
+ Vagrantfile can cause errors.
1956
+ - core: `VAGRANT_VAGRANTFILE` env var only applies to the project
1957
+ Vagrantfile name. [GH-2130]
1958
+ - core: Fix an issue where the data directory would be deleted too
1959
+ quickly in a multi-VM environment.
1960
+ - core: Handle the case where we get an EACCES cleaning up the .vagrant
1961
+ directory.
1962
+ - core: Fix exception on upgrade warnings from V1 to V2. [GH-2142]
1963
+ - guests/coreos: Proper IP detection. [GH-2146]
1964
+ - hosts/linux: NFS exporting works properly again. [GH-2137]
1965
+ - provisioners/chef: Work even with restrictive umask on user. [GH-2121]
1966
+ - provisioners/chef: Fix environment validation to be less restrictive.
1967
+ - provisioners/puppet: No more "shared folders cannot be found" error.
1968
+ [GH-2134]
1969
+ - provisioners/puppet: Work with restrictive umask on user by testing
1970
+ for folders with sudo. [GH-2121]
1971
+
1972
+ ## 1.3.0 (September 5, 2013)
1973
+
1974
+ BACKWARDS INCOMPATIBILITY:
1975
+
1976
+ - `config.ssh.max_tries` is gone. Instead of maximum tries, Vagrant now
1977
+ uses a simple overall timeout value `config.vm.boot_timeout` to wait for
1978
+ the machine to boot up.
1979
+ - `config.vm.graceful_halt_retry_*` settings are gone. Instead, a single
1980
+ timeout is now used to wait for a graceful halt to work, specified
1981
+ by `config.vm.graceful_halt_timeout`.
1982
+ - The ':extra' flag to shared folders for specifying arbitrary mount
1983
+ options has been replaced with the `:mount_options` flag, which is now
1984
+ an array of mount options.
1985
+ - `vagrant up` will now only run provisioning by default the first time
1986
+ it is run. Subsequent `reload` or `up` will need to explicitly specify
1987
+ the `--provision` flag to provision. [GH-1776]
1988
+
1989
+ FEATURES:
1990
+
1991
+ - New command: `vagrant plugin update` to update specific installed plugins.
1992
+ - New provisioner: File provisioner. [GH-2112]
1993
+ - New provisioner: Salt provisioner. [GH-1626]
1994
+ - New guest: Mac OS X guest support. [GH-1914]
1995
+ - New guest: CoreOS guest support. Change host names and configure networks on
1996
+ CoreOS. [GH-2022]
1997
+ - New guest: Solaris 11 guest support. [GH-2052]
1998
+ - Support for environments in the Chef-solo provisioner. [GH-1915]
1999
+ - Provisioners can now define "cleanup" tasks that are executed on
2000
+ `vagrant destroy`. [GH-1302]
2001
+ - Chef Client provisioner will now clean up the node/client using
2002
+ `knife` if configured to do so.
2003
+ - `vagrant up` has a `--no-destroy-on-error` flag that will not destroy
2004
+ the VM if a fatal error occurs. [GH-2011]
2005
+ - NFS: Arbitrary mount options can be specified using the
2006
+ `mount_options` option on synced folders. [GH-1029]
2007
+ - NFS: Arbitrary export options can be specified using
2008
+ `bsd__nfs_options` and `linux__nfs_options`. [GH-1029]
2009
+ - Static IP can now be set on public networks. [GH-1745]
2010
+ - Add `Vagrant.has_plugin?` method for use in Vagrantfile to check
2011
+ if a plugin is installed. [GH-1736]
2012
+ - Support for remote shell provisioning scripts [GH-1787]
2013
+
2014
+ IMPROVEMENTS:
2015
+
2016
+ - core: add `--color` to any Vagrant command to FORCE color output. [GH-2027]
2017
+ - core: "config.vm.host_name" works again, just an alias to hostname.
2018
+ - core: Reboots via SSH are now handled gracefully (without exception).
2019
+ - core: Mark `disabled` as true on forwarded port to disable. [GH-1922]
2020
+ - core: NFS exports are now namespaced by user ID, so pruning NFS won't
2021
+ remove exports from other users. [GH-1511]
2022
+ - core: "vagrant -v" no longer loads the Vagrantfile
2023
+ - commands/box/remove: Fix stack trace that happens if no provider
2024
+ is specified. [GH-2100]
2025
+ - commands/plugin/install: Post install message of a plugin will be
2026
+ shown if available. [GH-1986]
2027
+ - commands/status: cosmetic improvement to better align names and
2028
+ statuses [GH-2016]
2029
+ - communicators/ssh: Support a proxy_command. [GH-1537]
2030
+ - guests/openbsd: support configuring networks, changing host name,
2031
+ and mounting NFS. [GH-2086]
2032
+ - guests/suse: Supports private/public networks. [GH-1689]
2033
+ - hosts/fedora: Support RHEL as a host. [GH-2088]
2034
+ - providers/virtualbox: "post-boot" customizations will run directly
2035
+ after boot, and before waiting for SSH. [GH-2048]
2036
+ - provisioners/ansible: Many more configuration options. [GH-1697]
2037
+ - provisioners/ansible: Ansible `inventory_path` can be a directory now. [GH-2035]
2038
+ - provisioners/ansible: Extra verbose option by setting `config.verbose`
2039
+ to `extra`. [GH-1979]
2040
+ - provisioners/ansible: `inventory_path` will be auto-generated if not
2041
+ specified. [GH-1907]
2042
+ - provisioners/puppet: Add `nfs` option to puppet provisioner. [GH-1308]
2043
+ - provisioners/shell: Set the `privileged` option to false to run
2044
+ without sudo. [GH-1370]
2045
+
2046
+ BUG FIXES:
2047
+
2048
+ - core: Clean up ".vagrant" folder more effectively.
2049
+ - core: strip newlines off of ID file values [GH-2024]
2050
+ - core: Multiple forwarded ports with different protocols but the same
2051
+ host port can be specified. [GH-2059]
2052
+ - core: `:nic_type` option for private networks is respected. [GH-1704]
2053
+ - commands/up: provision-with validates the provisioners given. [GH-1957]
2054
+ - guests/arch: use systemd way of setting host names. [GH-2041]
2055
+ - guests/debian: Force bring up eth0. Fixes hangs on setting hostname.
2056
+ [GH-2026]
2057
+ - guests/ubuntu: upstart events are properly emitted again. [GH-1717]
2058
+ - hosts/bsd: Nicer error if can't read NFS exports. [GH-2038]
2059
+ - hosts/fedora: properly detect later CentOS versions. [GH-2008]
2060
+ - providers/virtualbox: VirtualBox 4.2 now supports up to 36
2061
+ network adapters. [GH-1886]
2062
+ - provisioners/ansible: Execute ansible with a cwd equal to the
2063
+ path where the Vagrantfile is. [GH-2051]
2064
+ - provisioners/all: invalid config keys will be properly reported. [GH-2117]
2065
+ - provisioners/ansible: No longer report failure on every run. [GH-2007]
2066
+ - provisioners/ansible: Properly handle extra vars with spaces. [GH-1984]
2067
+ - provisioners/chef: Formatter option works properly. [GH-2058]
2068
+ - provisioners/chef: Create/chown the provisioning folder before
2069
+ reading contents. [GH-2121]
2070
+ - provisioners/puppet: mount synced folders as root to avoid weirdness
2071
+ - provisioners/puppet: Run from the correct working directory. [GH-1967]
2072
+ with Puppet. [GH-2015]
2073
+ - providers/virtualbox: Use `getent` to get the group ID instead of
2074
+ `id` in case the name doesn't have a user. [GH-1801]
2075
+ - providers/virtualbox: Will only set the default name of the VM on
2076
+ initial `up`. [GH-1817]
2077
+
2078
+ ## 1.2.7 (July 28, 2013)
2079
+
2080
+ BUG FIXES:
2081
+
2082
+ - On Windows, properly convert synced folder host path to a string
2083
+ so that separator replacement works properly.
2084
+ - Use `--color=false` for no color in Puppet to support older
2085
+ versions properly. [GH-2000]
2086
+ - Make sure the hostname configuration is a string. [GH-1999]
2087
+ - cURL downloads now contain a user agent which fixes some
2088
+ issues with downloading Vagrant through proxies. [GH-2003]
2089
+ - `vagrant plugin install` will now always properly show the actual
2090
+ installed gem name. [GH-1834]
2091
+
2092
+ ## 1.2.6 (July 26, 2013)
2093
+
2094
+ BUG FIXES:
2095
+
2096
+ - Box collections with multiple formats work properly by converting
2097
+ the supported formats to symbols. [GH-1990]
2098
+
2099
+ ## 1.2.5 (July 26, 2013)
2100
+
2101
+ FEATURES:
2102
+
2103
+ - `vagrant help <command>` now works. [GH-1578]
2104
+ - Added `config.vm.box_download_insecure` to allow the box_url setting
2105
+ to point to an https site that won't be validated. [GH-1712]
2106
+ - VirtualBox VBoxManage customizations can now be specified to run
2107
+ pre-boot (the default and existing functionality, pre-import,
2108
+ or post-boot. [GH-1247]
2109
+ - VirtualBox no longer destroys unused network interfaces by default.
2110
+ This didn't work across multi-user systems and required admin privileges
2111
+ on Windows, so it has been disabled by default. It can be enabled using
2112
+ the VirtualBox provider-specific `destroy_unused_network_interfaces`
2113
+ configuration by setting it to true. [GH-1324]
2114
+
2115
+ IMPROVEMENTS:
2116
+
2117
+ - Remote commands that fail will now show the stdout/stderr of the
2118
+ command that failed. [GH-1203]
2119
+ - Puppet will run without color if the UI is not colored. [GH-1344]
2120
+ - Chef supports the "formatter" configuration for setting the
2121
+ formatter. [GH-1250]
2122
+ - VAGRANT_DOTFILE_PATH environmental variable reintroduces the
2123
+ functionality removed in 1.1 from "config.dotfile_name" [GH-1524]
2124
+ - Vagrant will show an error if VirtualBox 4.2.14 is running.
2125
+ - Added provider to BoxNotFound error message. [GH-1692]
2126
+ - If Ansible fails to run properly, show an error message. [GH-1699]
2127
+ - Adding a box with the `--provider` flag will now allow a box for
2128
+ any of that provider's supported formats.
2129
+ - NFS mounts enable UDP by default, resulting in higher performance.
2130
+ (Because mount is over local network, packet loss is not an issue)
2131
+ [GH-1706]
2132
+
2133
+ BUG FIXES:
2134
+
2135
+ - `box_url` now handles the case where the provider doesn't perfectly
2136
+ match the provider in use, but the provider supports it. [GH-1752]
2137
+ - Fix uninitialized constant error when configuring Arch Linux network. [GH-1734]
2138
+ - Debian/Ubuntu change hostname works properly if eth0 is configured
2139
+ with hot-plugging. [GH-1929]
2140
+ - NFS exports with improper casing on Mac OS X work properly. [GH-1202]
2141
+ - Shared folders overriding '/vagrant' in multi-VM environments no
2142
+ longer all just use the last value. [GH-1935]
2143
+ - NFS export fsid's are now 32-bit integers, rather than UUIDs. This
2144
+ lets NFS exports work with Linux kernels older than 2.6.20. [GH-1127]
2145
+ - NFS export allows access from all private networks on the VM. [GH-1204]
2146
+ - Default VirtualBox VM name now contains the machine name as defined
2147
+ in the Vagrantfile, helping differentiate multi-VM. [GH-1281]
2148
+ - NFS works properly on CentOS hosts. [GH-1394]
2149
+ - Solaris guests actually shut down properly. [GH-1506]
2150
+ - All provisioners only output newlines when the provisioner sends a
2151
+ newline. This results in the output looking a lot nicer.
2152
+ - Sharing folders works properly if ".profile" contains an echo. [GH-1677]
2153
+ - `vagrant ssh-config` IdentityFile is only wrapped in quotes if it
2154
+ contains a space. [GH-1682]
2155
+ - Shared folder target path can be a Windows path. [GH-1688]
2156
+ - Forwarded ports don't auto-correct by default, and will raise an
2157
+ error properly if they collide. [GH-1701]
2158
+ - Retry SSH on ENETUNREACH error. [GH-1732]
2159
+ - NFS is silently ignored on Windows. [GH-1748]
2160
+ - Validation so that private network static IP does not end in ".1" [GH-1750]
2161
+ - With forward agent enabled and sudo being used, Vagrant will automatically
2162
+ discover and set `SSH_AUTH_SOCK` remotely so that forward agent
2163
+ works properly despite misconfigured sudoers. [GH-1307]
2164
+ - Synced folder paths on Windows containing '\' are replaced with
2165
+ '/' internally so that they work properly.
2166
+ - Unused config objects are finalized properly. [GH-1877]
2167
+ - Private networks work with Fedora guests once again. [GH-1738]
2168
+ - Default internal encoding of strings in Vagrant is now UTF-8, allowing
2169
+ detection of Fedora to work again (which contained a UTF-8 string). [GH-1977]
2170
+
2171
+ ## 1.2.4 (July 16, 2013)
2172
+
2173
+ FEATURES:
2174
+
2175
+ - Chef solo and client provisioning now support a `custom_config_path`
2176
+ setting that accepts a path to a Ruby file to load as part of Chef
2177
+ configuration, allowing you to override any setting available. [GH-876]
2178
+ - CFEngine provisioner: you can now specify the package name to install,
2179
+ so CFEngine enterprise is supported. [GH-1920]
2180
+
2181
+ IMPROVEMENTS:
2182
+
2183
+ - `vagrant box remove` works with only the name of the box if that
2184
+ box exists only backed by one provider. [GH-1032]
2185
+ - `vagrant destroy` returns exit status 1 if any of the confirmations
2186
+ are declined. [GH-923]
2187
+ - Forwarded ports can specify a host IP and guest IP to bind to. [GH-1121]
2188
+ - You can now set the "ip" of a private network that uses DHCP. This will
2189
+ change the subnet and such that the DHCP server uses.
2190
+ - Add `file_cache_path` support for chef_solo. [GH-1897]
2191
+
2192
+ BUG FIXES:
2193
+
2194
+ - VBoxManage or any other executable missing from PATH properly
2195
+ reported. Regression from 1.2.2. [GH-1928]
2196
+ - Boxes downloaded as part of `vagrant up` are now done so _prior_ to
2197
+ config validation. This allows Vagrantfiles to references files that
2198
+ may be in the box itself. [GH-1061]
2199
+ - Chef removes dna.json and encrypted data bag secret file prior to
2200
+ uploading. [GH-1111]
2201
+ - NFS synced folders exporting sub-directories of other exported folders now
2202
+ works properly. [GH-785]
2203
+ - NFS shared folders properly dereference symlinks so that the real path
2204
+ is used, avoiding mount errors [GH-1101]
2205
+ - SSH channel is closed after the exit status is received, potentially
2206
+ eliminating any SSH hangs. [GH-603]
2207
+ - Fix regression where VirtualBox detection wasn't working anymore. [GH-1918]
2208
+ - NFS shared folders with single quotes in their name now work properly. [GH-1166]
2209
+ - Debian/Ubuntu request DHCP renewal when hostname changes, which will
2210
+ fix issues with FQDN detecting. [GH-1929]
2211
+ - SSH adds the "DSAAuthentication=yes" option in case that is disabled
2212
+ on the user's system. [GH-1900]
2213
+
2214
+ ## 1.2.3 (July 9, 2013)
2215
+
2216
+ FEATURES:
2217
+
2218
+ - Puppet provisioner now supports Hiera by specifying a `hiera_config_path`.
2219
+ - Added a `working_directory` configuration option to the Puppet apply
2220
+ provisioner so you can specify the working directory when `puppet` is
2221
+ called, making it friendly to Hiera data and such. [GH-1670]
2222
+ - Ability to specify the host IP to bind forwarded ports to. [GH-1785]
2223
+
2224
+ IMPROVEMENTS:
2225
+
2226
+ - Setting hostnames works properly on OmniOS. [GH-1672]
2227
+ - Better VBoxManage error detection on Windows systems. This avoids
2228
+ some major issues where Vagrant would sometimes "lose" your VM. [GH-1669]
2229
+ - Better detection of missing VirtualBox kernel drivers on Linux
2230
+ systems. [GH-1671]
2231
+ - More precise detection of Ubuntu/Debian guests so that running Vagrant
2232
+ within an LXC container works properly now.
2233
+ - Allow strings in addition to symbols to more places in V1 configuration
2234
+ as well as V2 configuration.
2235
+ - Add `ARPCHECK=0` to RedHat OS family network configuration. [GH-1815]
2236
+ - Add SSH agent forwarding sample to initial Vagrantfile. [GH-1808]
2237
+ - VirtualBox: Only configure networks if there are any to configure.
2238
+ This allows linux's that don't implement this capability to work with
2239
+ Vagrant. [GH-1796]
2240
+ - Default SSH forwarded port now binds to 127.0.0.1 so only local
2241
+ connections are allowed. [GH-1785]
2242
+ - Use `netctl` for Arch Linux network configuration. [GH-1760]
2243
+ - Improve fedora host detection regular expression. [GH-1913]
2244
+ - SSH shows a proper error on EHOSTUNREACH. [GH-1911]
2245
+
2246
+ BUG FIXES:
2247
+
2248
+ - Ignore "guest not ready" errors when attempting to graceful halt and
2249
+ carry on checks whether the halt succeeded. [GH-1679]
2250
+ - Handle the case where a roles path for Chef solo isn't properly
2251
+ defined. [GH-1665]
2252
+ - Finding V1 boxes now works properly again to avoid "box not found"
2253
+ errors. [GH-1691]
2254
+ - Setting hostname on SLES 11 works again. [GH-1781]
2255
+ - `config.vm.guest` properly forces guests again. [GH-1800]
2256
+ - The `read_ip_address` capability for linux properly reads the IP
2257
+ of only the first network interface. [GH-1799]
2258
+ - Validate that an IP is given for a private network. [GH-1788]
2259
+ - Fix uninitialized constant error for Gentoo plugin. [GH-1698]
2260
+
2261
+ ## 1.2.2 (April 23, 2013)
2262
+
2263
+ FEATURES:
2264
+
2265
+ - New `DestroyConfirm` built-in middleware for providers so they can
2266
+ more easily conform to the `destroy` action.
2267
+
2268
+ IMPROVEMENTS:
2269
+
2270
+ - No longer an error if the Chef run list is empty. It is now
2271
+ a warning. [GH-1620]
2272
+ - Better locking around handling the `box_url` parameter for
2273
+ parallel providers.
2274
+ - Solaris guest is now properly detected on SmartOS, OmniOS, etc. [GH-1639]
2275
+ - Guest addition version detection is more robust, attempting other
2276
+ routes to get the version, and also retrying a few times. [GH-1575]
2277
+
2278
+ BUG FIXES:
2279
+
2280
+ - `vagrant package --base` works again. [GH-1615]
2281
+ - Box overrides specified in provider config overrides no longer
2282
+ fail to detect the box. [GH-1617]
2283
+ - In a multi-machine environment, a box not found won't be downloaded
2284
+ multiple times. [GH-1467]
2285
+ - `vagrant box add` with a file path now works correctly on Windows
2286
+ when a drive letter is specified.
2287
+ - DOS line endings are converted to Unix line endings for the
2288
+ shell provisioner automatically. [GH-1495]
2289
+
2290
+ ## 1.2.1 (April 17, 2013)
2291
+
2292
+ FEATURES:
2293
+
2294
+ - Add a `--[no-]parallel` flag to `vagrant up` to enable/disable
2295
+ parallelism. Vagrant will parallelize by default.
2296
+
2297
+ IMPROVEMENTS:
2298
+
2299
+ - Get rid of arbitrary 4 second sleep when connecting via SSH. The
2300
+ issue it was attempting to work around may be gone now.
2301
+
2302
+ BUG FIXES:
2303
+
2304
+ - Chef solo run list properly set. [GH-1608]
2305
+ - Follow 30x redirects when downloading boxes. [GH-1607]
2306
+ - Chef client config defaults are done properly. [GH-1609]
2307
+ - VirtualBox mounts shared folders with the proper owner/group. [GH-1611]
2308
+ - Use the Mozilla CA cert bundle for cURL so SSL validation works
2309
+ properly.
2310
+
2311
+ ## 1.2.0 (April 16, 2013)
2312
+
2313
+ BACKWARDS INCOMPATIBILITIES:
2314
+
2315
+ - WINDOWS USERS: Vagrant now defaults to using the 'USERPROFILE' environmental
2316
+ variable for the home directory if it is set. This means that the default
2317
+ location for the Vagrant home directory is now `%USERPROFILE%/.vagrant.d`.
2318
+ On Cygwin, this will cause existing Cygwin users to "lose" their boxes.
2319
+ To work around this, either set `VAGRANT_HOME` to your Cygwin ".vagrant.d"
2320
+ folder or move your ".vagrant.d" folder to `USERPROFILE`. The latter is
2321
+ recommended for long-term support.
2322
+ - The constant `Vagrant::Environment::VAGRANT_HOME` was removed in favor of
2323
+ `Vagrant::Environment#default_vagrant_home`.
2324
+
2325
+ FEATURES:
2326
+
2327
+ - Providers can now parallelize! If they explicitly support it, Vagrant
2328
+ will run "up" and other commands in parallel. For providers such AWS,
2329
+ this means that your instances will come up in parallel. VirtualBox
2330
+ does not support this mode.
2331
+ - Box downloads are now done via `curl` rather than Ruby's built-in
2332
+ HTTP library. This results in massive speedups, support for SSL
2333
+ verification, FTP downloads, and more.
2334
+ - `config.vm.provider` now takes an optional second parameter to the block,
2335
+ allowing you to override any configuration value. These overrides are
2336
+ applied last, and therefore override any other configuration value.
2337
+ Note that while this feature is available, the "Vagrant way" is instead
2338
+ to use box manifests to ensure that the "box" for every provider matches,
2339
+ so these sorts of overrides are unnecessary.
2340
+ - A new "guest capabilities" system to replace the old "guest" system.
2341
+ This new abstraction allows plugins to define "capabilities" that
2342
+ certain guest operating systems can implement. This allows greater
2343
+ flexibility in doing guest-specific behavior.
2344
+ - Ansible provisioner support. [GH-1465]
2345
+ - Providers can now support multiple box formats by specifying the
2346
+ `box_format:` option.
2347
+ - CFEngine provisioner support.
2348
+ - `config.ssh.default` settings introduced to set SSH defaults that
2349
+ providers can still override. [GH-1479]
2350
+
2351
+ IMPROVEMENTS:
2352
+
2353
+ - Full Windows support in cmd.exe, PowerShell, Cygwin, and MingW based
2354
+ environments.
2355
+ - By adding the "disabled" boolean flag to synced folders you can disable
2356
+ them altogether. [GH-1004]
2357
+ - Specify the default provider with the `VAGRANT_DEFAULT_PROVIDER`
2358
+ environmental variable. [GH-1478]
2359
+ - Invalid settings are now caught and shown in a user-friendly way. [GH-1484]
2360
+ - Detect PuTTY Link SSH client on Windows and show an error. [GH-1518]
2361
+ - `vagrant ssh` in Cygwin won't output DOS path file warnings.
2362
+ - Add `--rtcuseutc on` as a sane default for VirtualBox. [GH-912]
2363
+ - SSH will send keep-alive packets every 5 seconds by default to
2364
+ keep connections alive. Can be disabled with `config.ssh.keep_alive`. [GH-516]
2365
+ - Show a message on `vagrant up` if the machine is already running. [GH-1558]
2366
+ - "Running provisioner" output now shoes the provisioner shortcut name,
2367
+ rather than the less-than-helpful class name.
2368
+ - Shared folders with the same guest path will overwrite each other. No
2369
+ more shared folder IDs.
2370
+ - Shell provisioner outputs script it is running. [GH-1568]
2371
+ - Automatically merge forwarded ports that share the same host
2372
+ port.
2373
+
2374
+ BUG FIXES:
2375
+
2376
+ - The `:mac` option for host-only networks is respected. [GH-1536]
2377
+ - Don't preserve modified time when untarring boxes. [GH-1539]
2378
+ - Forwarded port auto-correct will not auto-correct to a port
2379
+ that is also in use.
2380
+ - Cygwin will always output color by default. Specify `--no-color` to
2381
+ override this.
2382
+ - Assume Cygwin has a TTY for asking for input. [GH-1430]
2383
+ - Expand Cygwin paths to Windows paths for calls to VBoxManage and
2384
+ for VirtualBox shared folders.
2385
+ - Output the proper clear line text for shells in Cygwin when
2386
+ reporting dynamic progress.
2387
+ - When using `Builder` instances for hooks, the builders will be
2388
+ merged for the proper before/after chain. [GH-1555]
2389
+ - Use the Vagrant temporary directory again for temporary files
2390
+ since they can be quite large and were messing with tmpfs. [GH-1442]
2391
+ - Fix issue parsing extra SSH args in `vagrant ssh` in multi-machine
2392
+ environments. [GH-1545]
2393
+ - Networks come back up properly on RedHat systems after reboot. [GH-921]
2394
+ - `config.ssh` settings override all detected SSH settings (regression). [GH-1479]
2395
+ - `ssh-config` won't raise an exception if the VirtualBox machine
2396
+ is not created. [GH-1562]
2397
+ - Multiple machines defined in the same Vagrantfile with the same
2398
+ name will properly merge.
2399
+ - More robust hostname checking for RedHat. [GH-1566]
2400
+ - Cookbook path existence for Chef is no longer an error, so that
2401
+ things like librarian and berkshelf plugins work properly. [GH-1570]
2402
+ - Chef solo provisioner uses proper SSH username instead of hardcoded
2403
+ config. [GH-1576]
2404
+ - Shell provisioner takes ownership of uploaded files properly so
2405
+ that they can also be manually executed later. [GH-1576]
2406
+
2407
+ ## 1.1.6 (April 3, 2013)
2408
+
2409
+ BUG FIXES:
2410
+
2411
+ - Fix SSH re-use connection logic to drop connection if an
2412
+ error occurs.
2413
+
2414
+ ## 1.1.5 (April 2, 2013)
2415
+
2416
+ IMPROVEMENTS:
2417
+
2418
+ - More robust SSH connection close detection.
2419
+ - Don't load `vagrant plugin` installed plugins when in a Bundler
2420
+ environment. This happens during plugin development. This will make
2421
+ Vagrant errors much quieter when developing plugins.
2422
+ - Vagrant will detect Bundler environments, make assumptions that you're
2423
+ developing plugins, and will quiet its error output a bit.
2424
+ - More comprehensive synced folder configuration validation.
2425
+ - VBoxManage errors now show the output from the command so that
2426
+ users can potentially know what is wrong.
2427
+
2428
+ BUG FIXES:
2429
+
2430
+ - Proper error message if invalid provisioner is used. [GH-1515]
2431
+ - Don't error on graceful halt if machine just shut down very
2432
+ quickly. [GH-1505]
2433
+ - Error message if private key for SSH isn't owned by the proper
2434
+ user. [GH-1503]
2435
+ - Don't error too early when `config.vm.box` is not properly set.
2436
+ - Show a human-friendly error if VBoxManage is not found (exit
2437
+ status 126). [GH-934]
2438
+ - Action hook prepend/append will only prepend or append once.
2439
+ - Retry SSH on Errno::EACCES.
2440
+ - Show an error if an invalid network type is used.
2441
+ - Don't share Chef solo folder if it doesn't exist on host.
2442
+
2443
+ ## 1.1.4 (March 25, 2013)
2444
+
2445
+ BUG FIXES:
2446
+
2447
+ - Default forwarded port adapter for VirtualBox should be 1.
2448
+
2449
+ ## 1.1.3 (March 25, 2013)
2450
+
2451
+ IMPROVEMENTS:
2452
+
2453
+ - Puppet apply provisioner now retains the default module path
2454
+ even while specifying custom module paths. [GH-1207]
2455
+ - Re-added DHCP support for host-only networks. [GH-1466]
2456
+ - Ability to specify a plugin version, plugin sources, and
2457
+ pre-release versions using `--plugin-version`, `--plugin-source`,
2458
+ and `--plugin-prerelease`. [GH-1461]
2459
+ - Move VirtualBox guest addition checks to after the machine
2460
+ boots. [GH-1179]
2461
+ - Removed `Vagrant::TestHelpers` because it doesn't really work anymore.
2462
+ - Add PLX linux guest support. [GH-1490]
2463
+
2464
+ BUG FIXES:
2465
+
2466
+ - Attempt to re-establish SSH connection on `Net::SSH::Disconnect`
2467
+ - Allow any value that can convert to a string for `Vagrant.plugin`
2468
+ - Chef solo `recipe_url` works properly again. [GH-1467]
2469
+ - Port collision detection works properly in VirtualBox with
2470
+ auto-corrected ports. [GH-1472]
2471
+ - Fix obscure error when temp directory is world writable when
2472
+ adding boxes.
2473
+ - Improved error handling around network interface detection for
2474
+ VirtualBox [GH-1480]
2475
+
2476
+ ## 1.1.2 (March 18, 2013)
2477
+
2478
+ BUG FIXES:
2479
+
2480
+ - When not specifying a cookbooks_path for chef-solo, an error won't
2481
+ be shown if "cookbooks" folder is missing.
2482
+ - Fix typo for exception when no host-only network with NFS. [GH-1448]
2483
+ - Use UNSET_VALUE/nil with args on shell provisioner by default since
2484
+ `[]` was too truthy. [GH-1447]
2485
+
2486
+ ## 1.1.1 (March 18, 2013)
2487
+
2488
+ IMPROVEMENTS:
2489
+
2490
+ - Don't load plugins on any `vagrant plugin` command, so that errors
2491
+ are avoided. [GH-1418]
2492
+ - An error will be shown if you forward a port to the same host port
2493
+ multiple times.
2494
+ - Automatically convert network, provider, and provisioner names to
2495
+ symbols internally in case people define them as strings.
2496
+ - Using newer versions of net-ssh and net-scp. [GH-1436]
2497
+
2498
+ BUG FIXES:
2499
+
2500
+ - Quote keys to StringBlockEditor so keys with spaces, parens, and
2501
+ so on work properly.
2502
+ - When there is no route to host for SSH, re-establish a new connection.
2503
+ - `vagrant package` once again works, no more nil error. [GH-1423]
2504
+ - Human friendly error when "metadata.json" is missing in a box.
2505
+ - Don't use the full path to the manifest file with the Puppet provisioner
2506
+ because it exposes a bug with Puppet path lookup on VMware.
2507
+ - Fix bug in VirtualBox provider where port forwarding just didn't work if
2508
+ you attempted to forward to a port under 1024. [GH-1421]
2509
+ - Fix cross-device box adds for Windows. [GH-1424]
2510
+ - Fix minor issues with defaults of configuration of the shell
2511
+ provisioner.
2512
+ - Fix Puppet server using "host_name" instead of "hostname" [GH-1444]
2513
+ - Raise a proper error if no hostonly network is found for NFS with
2514
+ VirtualBox. [GH-1437]
2515
+
2516
+ ## 1.1.0 (March 14, 2013)
2517
+
2518
+ BACKWARDS INCOMPATIBILITIES:
2519
+
2520
+ - Vagrantfiles from 1.0.x that _do not use_ any plugins are fully
2521
+ backwards compatible. If plugins are used, they must be removed prior
2522
+ to upgrading. The new plugin system in place will avoid this issue in
2523
+ the future.
2524
+ - Lots of changes introduced in the form of a new configuration version and
2525
+ format, but this is _opt-in_. Old Vagrantfile format continues to be supported,
2526
+ as promised. To use the new features that will be introduced throughout
2527
+ the 1.x series, you'll have to upgrade at some point.
2528
+
2529
+ FEATURES:
2530
+
2531
+ - Groundwork for **providers**, alternate backends for Vagrant that
2532
+ allow Vagrant to power systems other than VirtualBox. Much improvement
2533
+ and change will come to this throughout the 1.x lifecycle. The API
2534
+ will continue to change, features will be added, and more. Specifically,
2535
+ a revamped system for handling shared folders gracefully across providers
2536
+ will be introduced in a future release.
2537
+ - New plugin system which adds much more structure and stability to
2538
+ the overall API. The goal of this system is to make it easier to write
2539
+ powerful plugins for Vagrant while providing a backwards-compatible API
2540
+ so that plugins will always _load_ (though they will almost certainly
2541
+ not be _functional_ in future versions of Vagrant).
2542
+ - Plugins are now installed and managed using the `vagrant plugin` interface.
2543
+ - Allow "file://" URLs for box URLs. [GH-1087]
2544
+ - Emit "vagrant-mount" upstart event when NFS shares are mounted. [GH-1118]
2545
+ - Add a VirtualBox provider config `auto_nat_dns_proxy` which when set to
2546
+ false will not attempt to automatically manage NAT DNS proxy settings
2547
+ with VirtualBox. [GH-1313]
2548
+ - `vagrant provision` accepts the `--provision-with` flag [GH-1167]
2549
+ - Set the name of VirtualBox machines with `virtualbox.name` in the
2550
+ VirtualBox provider config. [GH-1126]
2551
+ - `vagrant ssh` will execute an `ssh` binary on Windows if it is on
2552
+ your PATH. [GH-933]
2553
+ - The environmental variable `VAGRANT_VAGRANTFILE` can be used to
2554
+ specify an alternate Vagrantfile filename.
2555
+
2556
+ IMPROVEMENTS / BUG FIXES:
2557
+
2558
+ - Vagrant works much better in Cygwin environments on Windows by
2559
+ properly resolving Cygwin paths. [GH-1366]
2560
+ - Improve the SSH "ready?" check by more gracefully handling timeouts. [GH-841]
2561
+ - Human friendly error if connection times out for HTTP downloads. [GH-849]
2562
+ - Detect when the VirtualBox installation is incomplete and error. [GH-846]
2563
+ - Detect when kernel modules for VirtualBox need to be installed on Gentoo
2564
+ systems and report a user-friendly error. [GH-710]
2565
+ - All `vagrant` commands that can take a target VM name can take one even
2566
+ if you're not in a multi-VM environment. [GH-894]
2567
+ - Hostname is set before networks are setup to avoid very slow `sudo`
2568
+ speeds on CentOS. [GH-922]
2569
+ - `config.ssh.shell` now includes the flags to pass to it, such as `-l` [GH-917]
2570
+ - The check for whether a port is open or not is more complete by
2571
+ catching ENETUNREACH errors. [GH-948]
2572
+ - SSH uses LogLevel FATAL so that errors are still shown.
2573
+ - Sending a SIGINT (Ctrl-C) very early on when executing `vagrant` no
2574
+ longer results in an ugly stack trace.
2575
+ - Chef JSON configuration output is now pretty-printed to be
2576
+ human readable. [GH-1146]
2577
+ that SSHing succeeds when booting a machine.
2578
+ - VMs in the "guru meditation" state can be destroyed now using
2579
+ `vagrant destroy`.
2580
+ - Fix issue where changing SSH key permissions didn't properly work. [GH-911]
2581
+ - Fix issue where Vagrant didn't properly detect VBoxManage on Windows
2582
+ if VBOX_INSTALL_PATH contained multiple paths. [GH-885]
2583
+ - Fix typo in setting host name for Gentoo guests. [GH-931]
2584
+ - Files that are included with `vagrant package --include` now properly
2585
+ preserve file attributes on earlier versions of Ruby. [GH-951]
2586
+ - Multiple interfaces now work with Arch linux guests. [GH-957]
2587
+ - Fix issue where subprocess execution would always spin CPU of Ruby
2588
+ process to 100%. [GH-832]
2589
+ - Fix issue where shell provisioner would sometimes never end. [GH-968]
2590
+ - Fix issue where puppet would reorder module paths. [GH-964]
2591
+ - When console input is asked for (destroying a VM, bridged interfaces, etc.),
2592
+ keystrokes such as ctrl-D and ctrl-C are more gracefully handled. [GH-1017]
2593
+ - Fixed bug where port check would use "localhost" on systems where
2594
+ "localhost" is not available. [GH-1057]
2595
+ - Add missing translation for "saving" state on VirtualBox. [GH-1110]
2596
+ - Proper error message if the remote end unexpectedly resets the connection
2597
+ while downloading a box over HTTP. [GH-1090]
2598
+ - Human-friendly error is raised if there are permission issues when
2599
+ using SCP to upload files. [GH-924]
2600
+ - Box adding doesn't use `/tmp` anymore which can avoid some cross-device
2601
+ copy issues. [GH-1199]
2602
+ - Vagrant works properly in folders with strange characters. [GH-1223]
2603
+ - Vagrant properly handles "paused" VirtualBox machines. [GH-1184]
2604
+ - Better behavior around permissions issues when copying insecure
2605
+ private key. [GH-580]
2606
+
2607
+ ## 1.0.7 (March 13, 2013)
2608
+
2609
+ - Detect if a newer version of Vagrant ran and error if it did,
2610
+ because we're not forward-compatible.
2611
+ - Check for guest additions version AFTER booting. [GH-1179]
2612
+ - Quote IdentityFile in `ssh-config` so private keys with spaces in
2613
+ the path work. [GH-1322]
2614
+ - Fix issue where multiple Puppet module paths can be re-ordered [GH-964]
2615
+ - Shell provisioner won't hang on Windows anymore due to unclosed
2616
+ tempfile. [GH-1040]
2617
+ - Retry setting default VM name, since it sometimes fails first time. [GH-1368]
2618
+ - Support setting hostname on Suse [GH-1063]
2619
+
2620
+ ## 1.0.6 (December 21, 2012)
2621
+
2622
+ - Shell provisioner outputs proper line endings on Windows [GH-1164]
2623
+ - SSH upload opens file to stream which fixes strange upload issues.
2624
+ - Check for proper exit codes for Puppet, since multiple exit codes
2625
+ can mean success. [GH-1180]
2626
+ - Fix issue where DNS doesn't resolve properly for 12.10. [GH-1176]
2627
+ - Allow hostname to be a substring of the box name for Ubuntu [GH-1163]
2628
+ - Use `puppet agent` instead of `puppetd` to be Puppet 3.x
2629
+ compatible. [GH-1169]
2630
+ - Work around bug in VirtualBox exposed by bug in OS X 10.8 where
2631
+ VirtualBox executables couldn't handle garbage being injected into
2632
+ stdout by OS X.
2633
+
2634
+ ## 1.0.5 (September 18, 2012)
2635
+
2636
+ - Work around a critical bug in VirtualBox 4.2.0 on Windows that
2637
+ causes Vagrant to not work. [GH-1130]
2638
+ - Plugin loading works better on Windows by using the proper
2639
+ file path separator.
2640
+ - NFS works on Fedora 16+. [GH-1140]
2641
+ - NFS works with newer versions of Arch hosts that use systemd. [GH-1142]
2642
+
2643
+ ## 1.0.4 (September 13, 2012)
2644
+
2645
+ - VirtualBox 4.2 driver. [GH-1120]
2646
+ - Correct `ssh-config` help to use `--host`, not `-h`.
2647
+ - Use "127.0.0.1" instead of "localhost" for port checking to fix problem
2648
+ where "localhost" is not properly setup. [GH-1057]
2649
+ - Disable read timeout on Net::HTTP to avoid `rbuf_fill` error. [GH-1072]
2650
+ - Retry SSH on `EHOSTUNREACH` errors.
2651
+ - Add missing translation for "saving" state. [GH-1110]
2652
+
2653
+ ## 1.0.3 (May 1, 2012)
2654
+
2655
+ - Don't enable NAT DNS proxy on machines where resolv.conf already points
2656
+ to localhost. This allows Vagrant to work once again with Ubuntu
2657
+ 12.04. [GH-909]
2658
+
2659
+ ## 1.0.2 (March 25, 2012)
2660
+
2661
+ - Provisioners will still mount folders and such if `--no-provision` is
2662
+ used, so that `vagrant provision` works. [GH-803]
2663
+ - Nicer error message if an unsupported SSH key type is used. [GH-805]
2664
+ - Gentoo guests can now have their host names changed. [GH-796]
2665
+ - Relative paths can be used for the `config.ssh.private_key_path`
2666
+ setting. [GH-808]
2667
+ - `vagrant ssh` now works on Solaris, where `IdentitiesOnly` was not
2668
+ an available option. [GH-820]
2669
+ - Output works properly in the face of broken pipes. [GH-819]
2670
+ - Enable Host IO Cache on the SATA controller by default.
2671
+ - Chef-solo provisioner now supports encrypted data bags. [GH-816]
2672
+ - Enable the NAT DNS proxy by default, allowing your DNS to continue
2673
+ working when you switch networks. [GH-834]
2674
+ - Checking for port forwarding collisions also checks for other applications
2675
+ that are potentially listening on that port as well. [GH-821]
2676
+ - Multiple VM names can be specified for the various commands now. For
2677
+ example: `vagrant up web db service`. [GH-795]
2678
+ - More robust error handling if a VM fails to boot. The error message
2679
+ is much clearer now. [GH-825]
2680
+
2681
+ ## 1.0.1 (March 11, 2012)
2682
+
2683
+ - Installers are now bundled with Ruby 1.9.3p125. Previously they were
2684
+ bundled with 1.9.3p0. This actually fixes some IO issues with Windows.
2685
+ - Windows installer now outputs a `vagrant` binary that will work in msys
2686
+ or Cygwin environments.
2687
+ - Fix crashing issue which manifested itself in multi-VM environments.
2688
+ - Add missing `rubygems` require in `environment.rb` to avoid
2689
+ possible load errors. [GH-781]
2690
+ - `vagrant destroy` shows a nice error when called without a
2691
+ TTY (and hence can't confirm). [GH-779]
2692
+ - Fix an issue with the `:vagrantfile_name` option to `Vagrant::Environment`
2693
+ not working properly. [GH-778]
2694
+ - `VAGRANT_CWD` environmental variable can be used to set the CWD to
2695
+ something other than the current directory.
2696
+ - Downloading boxes from servers that don't send a content-length
2697
+ now works properly. [GH-788]
2698
+ - The `:facter` option now works for puppet server. [GH-790]
2699
+ - The `--no-provision` and `--provision-with` flags are available to
2700
+ `vagrant reload` now.
2701
+ - `:openbsd` guest which supports only halting at the moment. [GH-773]
2702
+ - `ssh-config -h` now shows help, instead of assuming a host is being
2703
+ specified. For host, you can still use `--host`. [GH-793]
2704
+
2705
+ ## 1.0.0 (March 6, 2012)
2706
+
2707
+ - `vagrant gem` should now be used to install Vagrant plugins that are
2708
+ gems. This installs the gems to a private gem folder that Vagrant adds
2709
+ to its own load path. This isolates Vagrant-related gems from system
2710
+ gems.
2711
+ - Plugin loading no longer happens right when Vagrant is loaded, but when
2712
+ a Vagrant environment is loaded. I don't anticipate this causing any
2713
+ problems but it is a backwards incompatible change should a plugin
2714
+ depend on this (but I don't see any reason why they would).
2715
+ - `vagrant destroy` now asks for confirmation by default. This can be
2716
+ overridden with the `--force` flag. [GH-699]
2717
+ - Fix issue with Puppet config inheritance. [GH-722]
2718
+ - Fix issue where starting a VM on some systems was incorrectly treated
2719
+ as failing. [GH-720]
2720
+ - It is now an error to specify the packaging `output` as a directory. [GH-730]
2721
+ - Unix-style line endings are used properly for guest OS. [GH-727]
2722
+ - Retry certain VirtualBox operations, since they intermittently fail.
2723
+ [GH-726]
2724
+ - Fix issue where Vagrant would sometimes "lose" a VM if an exception
2725
+ occurred. [GH-725]
2726
+ - `vagrant destroy` destroys virtual machines in reverse order. [GH-739]
2727
+ - Add an `fsid` option to Linux NFS exports. [GH-736]
2728
+ - Fix edge case where an exception could be raised in networking code. [GH-742]
2729
+ - Add missing translation for the "guru meditation" state. [GH-745]
2730
+ - Check that VirtualBox exists before certain commands. [GH-746]
2731
+ - NIC type can be defined for host-only network adapters. [GH-750]
2732
+ - Fix issue where re-running chef-client would sometimes cause
2733
+ problems due to file permissions. [GH-748]
2734
+ - FreeBSD guests can now have their hostnames changed. [GH-757]
2735
+ - FreeBSD guests now support host only networking and bridged networking. [GH-762]
2736
+ - `VM#run_action` is now public so plugin-devs can hook into it.
2737
+ - Fix crashing bug when attempting to run commands on the "primary"
2738
+ VM in a multi-VM environment. [GH-761]
2739
+ - With puppet you can now specify `:facter` as a dictionary of facts to
2740
+ override what is generated by Puppet. [GH-753]
2741
+ - Automatically convert all arguments to `customize` to strings.
2742
+ - openSUSE host system. [GH-766]
2743
+ - Fix subprocess IO deadlock which would occur on Windows. [GH-765]
2744
+ - Fedora 16 guest support. [GH-772]
2745
+
2746
+ ## 0.9.7 (February 9, 2012)
2747
+
2748
+ - Fix regression where all subprocess IO simply didn't work with
2749
+ Windows. [GH-721]
2750
+
2751
+ ## 0.9.6 (February 7, 2012)
2752
+
2753
+ - Fix strange issue with inconsistent childprocess reads on JRuby. [GH-711]
2754
+ - `vagrant ssh` does a direct `exec()` syscall now instead of going through
2755
+ the shell. This makes it so things like shell expansion oddities no longer
2756
+ cause problems. [GH-715]
2757
+ - Fix crashing case if there are no ports to forward.
2758
+ - Fix issue surrounding improper configuration of host only networks on
2759
+ RedHat guests. [GH-719]
2760
+ - NFS should work properly on Gentoo. [GH-706]
2761
+
2762
+ ## 0.9.5 (February 5, 2012)
2763
+
2764
+ - Fix crashing case when all network options are `:auto_config false`.
2765
+ [GH-689]
2766
+ - Type of network adapter can be specified with `:nic_type`. [GH-690]
2767
+ - The NFS version can be specified with the `:nfs_version` option
2768
+ on shared folders. [GH-557]
2769
+ - Greatly improved FreeBSD guest and host support. [GH-695]
2770
+ - Fix instability with RedHat guests and host only and bridged networks.
2771
+ [GH-698]
2772
+ - When using bridged networking, only list the network interfaces
2773
+ that are up as choices. [GH-701]
2774
+ - More intelligent handling of the `certname` option for puppet
2775
+ server. [GH-702]
2776
+ - You may now explicitly set the network to bridge to in the Vagrantfile
2777
+ using the `:bridge` parameter. [GH-655]
2778
+
2779
+ ## 0.9.4 (January 28, 2012)
2780
+
2781
+ - Important internal changes to middlewares that make plugin developer's
2782
+ lives much easier. [GH-684]
2783
+ - Match VM names that have parens, brackets, etc.
2784
+ - Detect when the VirtualBox kernel module is not loaded and error. [GH-677]
2785
+ - Set `:auto_config` to false on any networking option to not automatically
2786
+ configure it on the guest. [GH-663]
2787
+ - NFS shared folder guest paths can now contain shell expansion characters
2788
+ such as `~`.
2789
+ - NFS shared folders with a `:create` flag will have their host folders
2790
+ properly created if they don't exist. [GH-667]
2791
+ - Fix the precedence for Arch, Ubuntu, and FreeBSD host classes so
2792
+ they are properly detected. [GH-683]
2793
+ - Fix issue where VM import sometimes made strange VirtualBox folder
2794
+ layouts. [GH-669]
2795
+ - Call proper `id` command on Solaris. [GH-679]
2796
+ - More accurate VBoxManage error detection.
2797
+ - Shared folders can now be marked as transient using the `:transient`
2798
+ flag. [GH-688]
2799
+
2800
+ ## 0.9.3 (January 24, 2012)
2801
+
2802
+ - Proper error handling for not enough arguments to `box` commands.
2803
+ - Fix issue causing crashes with bridged networking. [GH-673]
2804
+ - Ignore host only network interfaces that are "down." [GH-675]
2805
+ - Use "printf" instead of "echo" to determine shell expanded files paths
2806
+ which is more generally POSIX compliant. [GH-676]
2807
+
2808
+ ## 0.9.2 (January 20, 2012)
2809
+
2810
+ - Support shell expansions in shared folder guest paths again. [GH-656]
2811
+ - Fix issue where Chef solo always expected the host to have a
2812
+ "cookbooks" folder in their directory. [GH-638]
2813
+ - Fix `forward_agent` not working when outside of blocks. [GH-651]
2814
+ - Fix issue causing custom guest implementations to not load properly.
2815
+ - Filter clear screen character out of output on SSH.
2816
+ - Log output now goes on `stderr`, since it is utility information.
2817
+ - Get rid of case where a `NoMethodError` could be raised while
2818
+ determining VirtualBox version. [GH-658]
2819
+ - Debian/Ubuntu uses `ifdown` again, instead of `ifconfig xxx down`, since
2820
+ the behavior seems different/wrong.
2821
+ - Give a nice error if `:vagrant` is used as a JSON key, since Vagrant
2822
+ uses this. [GH-661]
2823
+ - If there is only one bridgable interface, use that without asking
2824
+ the user. [GH-655]
2825
+ - The shell will have color output if ANSICON is installed on Windows. [GH-666]
2826
+
2827
+ ## 0.9.1 (January 18, 2012)
2828
+
2829
+ - Use `ifconfig device down` instead of `ifdown`. [GH-649]
2830
+ - Clearer invalid log level error. [GH-645]
2831
+ - Fix exception raised with NFS `recover` method.
2832
+ - Fix `ui` `NoMethodError` exception in puppet server.
2833
+ - Fix `vagrant box help` on Ruby 1.8.7. [GH-647]
2834
+
2835
+ ## 0.9.0 (January 17, 2012)
2836
+
2837
+ - VirtualBox 4.0 support backported in addition to supporting VirtualBox 4.1.
2838
+ - `config.vm.network` syntax changed so that the first argument is now the type
2839
+ of argument. Previously where you had `config.vm.network "33.33.33.10"` you
2840
+ should now put `config.vm.network :hostonly, "33.33.33.10"`. This is in order
2841
+ to support bridged networking, as well.
2842
+ - `config.vm.forward_port` no longer requires a name parameter.
2843
+ - Bridged networking. `config.vm.network` with `:bridged` as the option will
2844
+ setup a bridged network.
2845
+ - Host only networks can be configured with DHCP now. Specify `:dhcp` as
2846
+ the IP and it will be done.
2847
+ - `config.vm.customize` now takes a command to send to `VBoxManage`, so any
2848
+ arbitrary command can be sent. The older style of passing a block no longer
2849
+ works and Vagrant will give a proper error message if it notices this old-style
2850
+ being used.
2851
+ - `config.ssh.forwarded_port_key` is gone. Vagrant no longer cares about
2852
+ forwarded port names for any reason. Please use `config.ssh.guest_port`
2853
+ (more below).
2854
+ - `config.ssh.forwarded_port_destination` has been replaced by
2855
+ `config.ssh.guest_port` which more accurately reflects what it is
2856
+ used for. Vagrant will automatically scan forwarded ports that match the
2857
+ guest port to find the SSH port.
2858
+ - Logging. The entire Vagrant source has had logging sprinkled throughout
2859
+ to make debugging issues easier. To enable logging, set the VAGRANT_LOG
2860
+ environmental variable to the log level you wish to see. By default,
2861
+ logging is silent.
2862
+ - `system` renamed to `guest` throughout the source. Any `config.vm.system`
2863
+ configurations must be changed to `config.vm.guest`
2864
+ - Puppet provisioner no longer defaults manifest to "box.pp." Instead, it
2865
+ is now "default.pp"
2866
+ - All Vagrant commands that take a VM name in a Multi-VM environment
2867
+ can now be given a regular expression. If the name starts and ends with a "/"
2868
+ then it is assumed to be a regular expression. [GH-573]
2869
+ - Added a "--plain" flag to `vagrant ssh` which will cause Vagrant to not
2870
+ perform any authentication. It will simply `ssh` into the proper IP and
2871
+ port of the virtual machine.
2872
+ - If a shared folder now has a `:create` flag set to `true`, the path on the
2873
+ host will be created if it doesn't exist.
2874
+ - Added `--force` flag to `box add`, which will overwite any existing boxes
2875
+ if they exist. [GH-631]
2876
+ - Added `--provision-with` to `up` which configures what provisioners run,
2877
+ by shortcut. [GH-367]
2878
+ - Arbitrary mount options can be passed with `:extra` to any shared
2879
+ folders. [GH-551]
2880
+ - Options passed after a `--` to `vagrant ssh` are now passed directly to
2881
+ `ssh`. [GH-554]
2882
+ - Ubuntu guests will now emit a `vagrant-mounted` upstart event after shared
2883
+ folders are mounted.
2884
+ - `attempts` is a new option on chef client and chef solo provisioners. This
2885
+ will run the provisioner multiple times until erroring about failing
2886
+ convergence. [GH-282]
2887
+ - Removed Thor as a dependency for the command line interfaces. This resulted
2888
+ in general speed increases across all command line commands.
2889
+ - Linux uses `shutdown -h` instead of `halt` to hopefully more consistently
2890
+ power off the system. [GH-575]
2891
+ - Tweaks to SSH to hopefully be more reliable in coming up.
2892
+ - Helpful error message when SCP is unavailable in the guest. [GH-568]
2893
+ - Error message for improperly packaged box files. [GH-198]
2894
+ - Copy insecure private key to user-owned directory so even
2895
+ `sudo` installed Vagrant installations work. [GH-580]
2896
+ - Provisioner stdout/stderr is now color coded based on stdout/stderr.
2897
+ stdout is green, stderr is red. [GH-595]
2898
+ - Chef solo now prompts users to run a `reload` if shared folders
2899
+ are not found on the VM. [GH-253]
2900
+ - "--no-provision" once again works for certain commands. [GH-591]
2901
+ - Resuming a VM from a saved state will show an error message if there
2902
+ would be port collisions. [GH-602]
2903
+ - `vagrant ssh -c` will now exit with the same exit code as the command
2904
+ run. [GH-598]
2905
+ - `vagrant ssh -c` will now send stderr to stderr and stdout to stdout
2906
+ on the host machine, instead of all output to stdout.
2907
+ - `vagrant box add` path now accepts unexpanded shell paths such as
2908
+ `~/foo` and will properly expand them. [GH-633]
2909
+ - Vagrant can now be interrupted during the "importing" step.
2910
+ - NFS exports will no longer be cleared when an expected error occurs. [GH-577]
2911
+
2912
+ ## 0.8.10 (December 10, 2011)
2913
+
2914
+ - Revert the SSH tweaks made in 0.8.8. It affected stability
2915
+
2916
+ ## 0.8.8 (December 1, 2011)
2917
+
2918
+ - Mount shared folders shortest to longest to avoid mounting
2919
+ subfolders first. [GH-525]
2920
+ - Support for basic HTTP auth in the URL for boxes.
2921
+ - Solaris support for host only networks. [GH-533]
2922
+ - `vagrant init` respects `Vagrant::Environment` cwd. [GH-528]
2923
+ - `vagrant` commands will not output color when stdout is
2924
+ not a TTY.
2925
+ - Fix issue where `box_url` set with multiple VMs could cause issues. [GH-564]
2926
+ - Chef provisioners no longer depend on a "v-root" share being
2927
+ available. [GH-556]
2928
+ - NFS should work for FreeBSD hosts now. [GH-510]
2929
+ - SSH executed methods respect `config.ssh.max_tries`. [GH-508]
2930
+ - `vagrant box add` now respects the "no_proxy" environmental variable.
2931
+ [GH-502]
2932
+ - Tweaks that should make "Waiting for VM to boot" slightly more
2933
+ reliable.
2934
+ - Add comments to Vagrantfile to make it detected as Ruby file for
2935
+ `vi` and `emacs`. [GH-515]
2936
+ - More correct guest addition version checking. [GH-514]
2937
+ - Chef solo support on Windows is improved. [GH-542]
2938
+ - Put encrypted data bag secret into `/tmp` by default so that
2939
+ permissions are almost certainly guaranteed. [GH-512]
2940
+
2941
+ ## 0.8.7 (September 13, 2011)
2942
+
2943
+ - Fix regression with remote paths from chef-solo. [GH-431]
2944
+ - Fix issue where Vagrant crashes if `.vagrant` file becomes invalid. [GH-496]
2945
+ - Issue a warning instead of an error for attempting to forward a port
2946
+ <= 1024. [GH-487]
2947
+
2948
+ ## 0.8.6 (August 28, 2011)
2949
+
2950
+ - Fix issue with download progress not properly clearing the line. [GH-476]
2951
+ - NFS should work properly on Fedora. [GH-450]
2952
+ - Arguments can be specified to the `shell` provisioner via the `args` option. [GH-475]
2953
+ - Vagrant behaves much better when there are "inaccessible" VMs. [GH-453]
2954
+
2955
+ ## 0.8.5 (August 15, 2011)
2956
+
2957
+ Note: 0.8.3 and 0.8.4 was yanked due to RubyGems encoding issue.
2958
+
2959
+ - Fix SSH `exec!` to inherit proper `$PATH`. [GH-426]
2960
+ - Chef client now accepts an empty (`nil`) run list again. [GH-429]
2961
+ - Fix incorrect error message when running `provision` on halted VM. [GH-447]
2962
+ - Checking guest addition versions now ignores OSE. [GH-438]
2963
+ - Chef solo from a remote URL fixed. [GH-431]
2964
+ - Arch linux support: host only networks and changing the host name. [GH-439] [GH-448]
2965
+ - Chef solo `roles_path` and `data_bags_path` can only be single paths. [GH-446]
2966
+ - Fix `virtualbox_not_detected` error message to require 4.1.x. [GH-458]
2967
+ - Add shortname (`hostname -s`) for hostname setting on RHEL systems. [GH-456]
2968
+ - `vagrant ssh -c` output no longer has a prefix and respects newlines
2969
+ from the output. [GH-462]
2970
+
2971
+ ## 0.8.2 (July 22, 2011)
2972
+
2973
+ - Fix issue with SSH disconnects not reconnecting.
2974
+ - Fix chef solo simply not working with roles/data bags. [GH-425]
2975
+ - Multiple chef solo provisioners now work together.
2976
+ - Update Puppet provisioner so no deprecation warning is shown. [GH-421]
2977
+ - Removed error on "provisioner=" in config, as this has not existed
2978
+ for some time now.
2979
+ - Add better validation for networking.
2980
+
2981
+ ## 0.8.1 (July 20, 2011)
2982
+
2983
+ - Repush of 0.8.0 to fix a Ruby 1.9.2 RubyGems issue.
2984
+
2985
+ ## 0.8.0 (July 20, 2011)
2986
+
2987
+ - VirtualBox 4.1 support _only_. Previous versions of VirtualBox
2988
+ are supported by earlier versions of Vagrant.
2989
+ - Performance optimizations in `virtualbox` gem. Huge speed gains.
2990
+ - `:chef_server` provisioner is now `:chef_client`. [GH-359]
2991
+ - SSH connection is now cached after first access internally,
2992
+ speeding up `vagrant up`, `reload`, etc. quite a bit.
2993
+ - Actions which modify the VM now occur much more quickly,
2994
+ greatly speeding up `vagrant up`, `reload`, etc.
2995
+ - SUSE host only networking support. [GH-369]
2996
+ - Show nice error message for invalid HTTP responses for HTTP
2997
+ downloader. [GH-403]
2998
+ - New `:inline` option for shell provisioner to provide inline
2999
+ scripts as a string. [GH-395]
3000
+ - Host only network now properly works on multiple adapters. [GH-365]
3001
+ - Can now specify owner/group for regular shared folders. [GH-350]
3002
+ - `ssh_config` host name will use VM name if given. [GH-332]
3003
+ - `ssh` `-e` flag changed to `-c` to align with `ssh` standard
3004
+ behavior. [GH-323]
3005
+ - Forward agent and forward X11 settings properly appear in
3006
+ `ssh_config` output. [GH-105]
3007
+ - Chef JSON can now be set with `chef.json =` instead of the old
3008
+ `merge` technique. [GH-314]
3009
+ - Provisioner configuration is no longer cleared when the box
3010
+ needs to be downloaded during an `up`. [GH-308]
3011
+ - Multiple Chef provisioners no longer overwrite cookbook folders. [GH-407]
3012
+ - `package` won't delete previously existing file. [GH-408]
3013
+ - Vagrantfile can be lowercase now. [GH-399]
3014
+ - Only one copy of Vagrant may be running at any given time. [GH-364]
3015
+ - Default home directory for Vagrant moved to `~/.vagrant.d` [GH-333]
3016
+ - Specify a `forwarded_port_destination` for SSH configuration and
3017
+ SSH port searching will fall back to that if it can't find any
3018
+ other port. [GH-375]
3019
+
3020
+ ## 0.7.8 (July 19, 2011)
3021
+
3022
+ - Make sure VirtualBox version check verifies that it is 4.0.x.
3023
+
3024
+ ## 0.7.7 (July 12, 2011)
3025
+
3026
+ - Fix crashing bug with Psych and Ruby 1.9.2. [GH-411]
3027
+
3028
+ ## 0.7.6 (July 2, 2011)
3029
+
3030
+ - Run Chef commands in a single command. [GH-390]
3031
+ - Add `nfs` option for Chef to mount Chef folders via NFS. [GH-378]
3032
+ - Add translation for `aborted` state in VM. [GH-371]
3033
+ - Use full paths with the Chef provisioner so that restart cookbook will
3034
+ work. [GH-374]
3035
+ - Add "--no-color" as an argument and no colorized output will be used. [GH-379]
3036
+ - Added DEVICE option to the RedHat host only networking entry, which allows
3037
+ host only networking to work even if the VM has multiple NICs. [GH-382]
3038
+ - Touch the network configuration file for RedHat so that the `sed` works
3039
+ with host only networking. [GH-381]
3040
+ - Load prerelease versions of plugins if available.
3041
+ - Do not load a plugin if it depends on an invalid version of Vagrant.
3042
+ - Encrypted data bag support in Chef server provisioner. [GH-398]
3043
+ - Use the `-H` flag to set the proper home directory for `sudo`. [GH-370]
3044
+
3045
+ ## 0.7.5 (May 16, 2011)
3046
+
3047
+ - `config.ssh.port` can be specified and takes highest precedence if specified.
3048
+ Otherwise, Vagrant will still attempt to auto-detect the port. [GH-363]
3049
+ - Get rid of RubyGems deprecations introduced with RubyGems 1.8.x
3050
+ - Search in pre-release gems for plugins as well as release gems.
3051
+ - Support for Chef-solo `data_bags_path` [GH-362]
3052
+ - Can specify path to Chef binary using `binary_path` [GH-342]
3053
+ - Can specify additional environment data for Chef using `binary_env` [GH-342]
3054
+
3055
+ ## 0.7.4 (May 12, 2011)
3056
+
3057
+ - Chef environments support (for Chef 0.10) [GH-358]
3058
+ - Suppress the "added to known hosts" message for SSH [GH-354]
3059
+ - Ruby 1.8.6 support [GH-352]
3060
+ - Chef proxy settings now work for chef server [GH-335]
3061
+
3062
+ ## 0.7.3 (April 19, 2011)
3063
+
3064
+ - Retry all SSH on Net::SSH::Disconnect in case SSH is just restarting. [GH-313]
3065
+ - Add NFS shared folder support for Arch linux. [GH-346]
3066
+ - Fix issue with unknown terminal type output for sudo commands.
3067
+ - Forwarded port protocol can now be set as UDP. [GH-311]
3068
+ - Chef server file cache path and file backup path can be configured. [GH-310]
3069
+ - Setting hostname should work on Debian now. [GH-307]
3070
+
3071
+ ## 0.7.2 (February 8, 2011)
3072
+
3073
+ - Update JSON dependency to 1.5.1, which works with Ruby 1.9 on
3074
+ Windows.
3075
+ - Fix sudo issues on sudo < 1.7.0 (again).
3076
+ - Fix race condition in SSH, which specifically manifested itself in
3077
+ the chef server provisioner. [GH-295]
3078
+ - Change sudo shell to use `bash` (configurable). [GH-301]
3079
+ - Can now set mac address of host only network. [GH-294]
3080
+ - NFS shared folders with spaces now work properly. [GH-293]
3081
+ - Failed SSH commands now show output in error message. [GH-285]
3082
+
3083
+ ## 0.7.1 (January 28, 2011)
3084
+
3085
+ - Change error output with references to VirtualBox 3.2 to 4.0.
3086
+ - Internal SSH through net-ssh now uses `IdentitiesOnly` thanks to
3087
+ upstream net-ssh fix.
3088
+ - Fix issue causing warnings to show with `forwardx11` enabled for SSH. [GH-279]
3089
+ - FreeBSD support for host only networks, NFS, halting, etc. [GH-275]
3090
+ - Make SSH commands which use sudo compatible with sudo < 1.7.0. [GH-278]
3091
+ - Fix broken puppet server provisioner which called a nonexistent
3092
+ method.
3093
+ - Default SSH host changed from `localhost` to `127.0.0.1` since
3094
+ `localhost` is not always loopback.
3095
+ - New `shell` provisioner which simply uploads and executes a script as
3096
+ root on the VM.
3097
+ - Gentoo host only networking no longer fails if already setup. [GH-286]
3098
+ - Set the host name of your guest OS with `config.vm.host_name` [GH-273]
3099
+ - `vagrant ssh-config` now outputs the configured `config.ssh.host`
3100
+
3101
+ ## 0.7.0 (January 19, 2011)
3102
+
3103
+ - VirtualBox 4.0 support. Support for VirtualBox 3.2 is _dropped_, since
3104
+ the API is so different. Stay with the 0.6.x series if you have VirtualBox
3105
+ 3.2.x.
3106
+ - Puppet server provisioner. [GH-262]
3107
+ - Use numeric uid/gid in mounting shared folders to increase portability. [GH-252]
3108
+ - HTTP downloading follows redirects. [GH-163]
3109
+ - Downloaders have clearer output to note what they're doing.
3110
+ - Shared folders with no guest path are not automounted. [GH-184]
3111
+ - Boxes downloaded during `vagrant up` reload the Vagrantfile config, which
3112
+ fixes a problem with box settings not being properly loaded. [GH-231]
3113
+ - `config.ssh.forward_x11` to enable the ForwardX11 SSH option. [GH-255]
3114
+ - Vagrant source now has a `contrib` directory where contributions of miscellaneous
3115
+ addons for Vagrant will be added.
3116
+ - Vagrantfiles are now loaded only once (instead of 4+ times) [GH-238]
3117
+ - Ability to move home vagrant dir (~/.vagrant) by setting VAGRANT_HOME
3118
+ environmental variable.
3119
+ - Removed check and error for the "OSE" version of VirtualBox, since with
3120
+ VirtualBox 4 this distinction no longer exists.
3121
+ - Ability to specify proxy settings for chef. [GH-169]
3122
+ - Helpful error message shown if NFS mounting fails. [GH-135]
3123
+ - Gentoo guests now support host only networks. [GH-240]
3124
+ - RedHat (CentOS included) guests now support host only networks. [GH-260]
3125
+ - New Vagrantfile syntax for enabling and configuring provisioners. This
3126
+ change is not backwards compatible. [GH-265]
3127
+ - Provisioners are now RVM-friendly, meaning if you installed chef or puppet
3128
+ with an RVM managed Ruby, Vagrant now finds then. [GH-254]
3129
+ - Changed the unused host only network destroy mechanism to check for
3130
+ uselessness after the VM is destroyed. This should result in more accurate
3131
+ checks.
3132
+ - Networks are no longer disabled upon halt/destroy. With the above
3133
+ change, its unnecessary.
3134
+ - Puppet supports `module_path` configuration to mount local modules directory
3135
+ as a shared folder and configure puppet with it. [GH-270]
3136
+ - `ssh-config` now outputs `127.0.0.1` as the host instead of `localhost`.
3137
+
3138
+ ## 0.6.9 (December 21, 2010)
3139
+
3140
+ - Puppet provisioner. [GH-223]
3141
+ - Solaris system configurable to use `sudo`.
3142
+ - Solaris system registered, so it can be set with `:solaris`.
3143
+ - `vagrant package` include can be a directory name, which will cause the
3144
+ contents to be recursively copied into the package. [GH-241]
3145
+ - Arbitrary options to puppet binary can be set with `config.puppet.options`. [GH-242]
3146
+ - BSD hosts use proper GNU sed syntax for clearing NFS shares. [GH-243]
3147
+ - Enumerate VMs in a multi-VM environment in order they were defined. [GH-244]
3148
+ - Check for VM boot changed to use `timeout` library, which works better with Windows.
3149
+ - Show special error if VirtualBox not detected on 64-bit Windows.
3150
+ - Show error to Windows users attempting to use host only networking since
3151
+ it doesn't work yet.
3152
+
3153
+ ## 0.6.8 (November 30, 2010)
3154
+
3155
+ - Network interfaces are now up/down in distinct commands instead of just
3156
+ restarting "networking." [GH-192]
3157
+ - Add missing translation for chef binary missing. [GH-203]
3158
+ - Fix default settings for Opscode platform and comments. [GH-213]
3159
+ - Blank client name for chef server now uses FQDN by default, instead of "client" [GH-214]
3160
+ - Run list can now be nil, which will cause it to sync with chef server (when
3161
+ chef server is enabled). [GH-214]
3162
+ - Multiple NFS folders now work on linux. [GH-215]
3163
+ - Add translation for state "stuck" which is very rare. [GH-218]
3164
+ - virtualbox gem dependency minimum raised to 0.7.6 to verify FFI < 1.0.0 is used.
3165
+ - Fix issue where box downloading from `vagrant up` didn't reload the box collection. [GH-229]
3166
+
3167
+ ## 0.6.7 (November 3, 2010)
3168
+
3169
+ - Added validation to verify that a box is specified.
3170
+ - Proper error message when box is not found for `config.vm.box`. [GH-195]
3171
+ - Fix output of `vagrant status` with multi-vm to be correct. [GH-196]
3172
+
3173
+ ## 0.6.6 (October 14, 2010)
3174
+
3175
+ - `vagrant status NAME` works once again. [GH-191]
3176
+ - Conditional validation of Vagrantfile so that some commands don't validate. [GH-188]
3177
+ - Fix "junk" output for ssh-config. [GH-189]
3178
+ - Fix port collision handling with greater than two VMs. [GH-185]
3179
+ - Fix potential infinite loop with root path if bad CWD is given to environment.
3180
+
3181
+ ## 0.6.5 (October 8, 2010)
3182
+
3183
+ - Validations on base MAC address to avoid situation described in GH-166, GH-181
3184
+ from ever happening again.
3185
+ - Properly load sub-VM configuration on first-pass of config loading. Solves
3186
+ a LOT of problems with multi-VM. [GH-166] [GH-181]
3187
+ - Configuration now only validates on final Vagrantfile proc, so multi-VM
3188
+ validates correctly.
3189
+ - A nice error message is given if ".vagrant" is a directory and therefore
3190
+ can't be accessed. [GH-172]
3191
+ - Fix plugin loading in a Rails 2.3.x project. [GH-176]
3192
+
3193
+ ## 0.6.4 (October 4, 2010)
3194
+
3195
+ - Default VM name is now properly the parent folder of the working directory
3196
+ of the environment.
3197
+ - Added method to `TestHelpers` to assist with testing new downloaders.
3198
+ - `up --no-provision` works again. This disables provisioning during the
3199
+ boot process.
3200
+ - Action warden doesn't do recovery process on `SystemExit` exceptions,
3201
+ allowing the double ctrl-C to work properly again. [related to GH-166]
3202
+ - Initial Vagrantfile is now heavily commented with various available
3203
+ options. [GH-171]
3204
+ - Box add checks if a box already exists before the download. [GH-170]
3205
+ - NFS no longer attempts to clean exports file if VM is not created,
3206
+ which was causing a stack trace during recovery. [related to GH-166]
3207
+ - Basic validation added for Chef configuration (both solo and server).
3208
+ - Top config class is now available in all `Vagrant::Config::Base`
3209
+ subclasses, which is useful for config validation.
3210
+ - Subcommand help shows proper full command in task listing. [GH-168]
3211
+ - SSH gives error message if `ssh` binary is not found. [GH-161]
3212
+ - SSH gives proper error message if VM is not running. [GH-167]
3213
+ - Fix some issues with undefined constants in command errors.
3214
+
3215
+ ## 0.6.1, 0.6.2, 0.6.3 (September 27, 2010)
3216
+
3217
+ A lot of quick releases which all were to fix issues with Ruby 1.8.7
3218
+ compatibility.
3219
+
3220
+ ## 0.6.0 (September 27, 2010)
3221
+
3222
+ - VM name now defaults to the name of the containing folder, plus a timestamp.
3223
+ This should make it easier to identify VMs in the VirtualBox GUI.
3224
+ - Exposed Vagrant test helpers in `Vagrant::TestHelpers` for plugins to easily
3225
+ test themselves against Vagrant environments.
3226
+ - **Plugins** have landed. Plugins are simply gems which have a `vagrant_init.rb`
3227
+ file somewhere in their load path. Please read the documentation on
3228
+ vagrantup.com before attempting to create a plugin (which is very easy)
3229
+ for more information on how it all works and also some guidelines.
3230
+ - `vagrant package` now takes a `--vagrantfile` option to specify a
3231
+ Vagrantfile to package. The `--include` approach for including a Vagrantfile
3232
+ no longer works (previously built boxes will continue to work).
3233
+ - `vagrant package` has new logic with regards to the `--include` option
3234
+ depending on if the file path is relative or absolute (they can be
3235
+ intermixed):
3236
+ * _Relative_ paths are copied directly into the box, preserving
3237
+ their path. So `--include lib/foo` would be in the box as "lib/foo"
3238
+ * _Absolute_ paths are simply copied files into the root of the
3239
+ box. So `--include /lib/foo` would be in the box as "foo"
3240
+ - "vagrant_main" is no longer the default run list. Instead, chef
3241
+ run list starts empty. It is up to you to specify all recipes in
3242
+ the Vagrantfile now.
3243
+ - Fixed various issues with certain action middleware not working if
3244
+ the VM was not created.
3245
+ - SSH connection is retried 5 times if there is a connection refused.
3246
+ Related to GH-140.
3247
+ - If `http_proxy` environmental variable is set, it will be used as the proxy
3248
+ box adding via http.
3249
+ - Remove `config.ssh.password`. It hasn't been used for a few versions
3250
+ now and was only kept around to avoid exceptions in Vagrantfiles.
3251
+ - Configuration is now validated so improper input can be found in
3252
+ Vagrantfiles.
3253
+ - Fixed issue with not detecting Vagrantfile at root directory ("/").
3254
+ - Vagrant now gives a nice error message if there is a syntax error
3255
+ in any Vagrantfile. [GH-154]
3256
+ - The format of the ".vagrant" file which stores persisted VMs has
3257
+ changed. This is **backwards incompatible**. Will provide an upgrade
3258
+ utility prior to 0.6 launch.
3259
+ - Every [expected] Vagrant error now exits with a clean error message
3260
+ and a unique exit status, and raises a unique exception (if you're
3261
+ scripting Vagrant).
3262
+ - Added I18n gem dependency for pulling strings into clean YML files.
3263
+ Vagrant is now localizable as a side effect! Translations welcome.
3264
+ - Fixed issue with "Waiting for cleanup" message appearing twice in
3265
+ some cases. [GH-145]
3266
+ - Converted CLI to use Thor. As a tradeoff, there are some backwards
3267
+ incompatibilities:
3268
+ * `vagrant package` - The `--include` flag now separates filenames
3269
+ by spaces, instead of by commas. e.g. `vagrant package --include x y z`
3270
+ * `vagrant ssh` - If you specify a command to execute using the `--execute`
3271
+ flag, you may now only specify one command (before you were able to
3272
+ specify an arbitrary amount). e.g. `vagrant ssh -e "echo hello"`
3273
+ * `vagrant ssh-config` has become `vagrant ssh_config` due to a limitation
3274
+ in Thor.
3275
+
3276
+ ## 0.5.4 (September 7, 2010)
3277
+
3278
+ - Fix issue with the "exec failed" by running on Tiger as well.
3279
+ - Give an error when downloading a box which already exists prior
3280
+ to actually downloading the box.
3281
+
3282
+ ## 0.5.3 (August 23, 2010)
3283
+
3284
+ - Add erubis as a dependency since its rendering of `erb` is sane.
3285
+ - Fixed poorly formatted Vagrantfile after `vagrant init`. [GH-142]
3286
+ - Fixed NFS not working properly with multiple NFS folders.
3287
+ - Fixed chef solo provision to work on Windows. It was expanding a linux
3288
+ path which prepended a drive letter onto it.
3289
+
3290
+ ## 0.5.2 (August 3, 2010)
3291
+
3292
+ - `vagrant up` can be used as a way to resume the VM as well (same as
3293
+ `vagrant resume`). [GH-134]
3294
+ - Sudo uses "-E" flag to preserve environment for chef provisioners.
3295
+ This fixes issues with CentOS. [GH-133]
3296
+ - Added "IdentitiesOnly yes" to options when `vagrant ssh` is run to
3297
+ avoid "Too Many Authentication Failures" error. [GH-131]
3298
+ - Fix regression with `package` not working. [GH-132]
3299
+ - Added ability to specify box url in `init`, which populates the
3300
+ Vagrantfile with the proper `config.vm.box_url`.
3301
+
3302
+ ## 0.5.1 (July 31, 2010)
3303
+
3304
+ - Allow specifying cookbook paths which exist only on the VM in `config.chef.cookbooks_path`.
3305
+ This is used for specifying cookbook paths when `config.chef.recipe_url` is used. [GH-130]
3306
+ See updated chef solo documentation for more information on this.
3307
+ - No longer show "Disabling host only networks..." if no host only networks
3308
+ are destroyed. Quiets `destroy`, `halt`, etc output a bit.
3309
+ - Updated getting started guide to be more up to date and generic. [GH-125]
3310
+ - Fixed error with doing a `vagrant up` when no Vagrantfile existed. [GH-128]
3311
+ - Fixed NFS erroring when NFS wasn't even enabled if `/etc/exports` doesn't
3312
+ exist. [GH-126]
3313
+ - Fixed `vagrant resume` to properly resume a suspended VM. [GH-122]
3314
+ - Fixed `halt`, `destroy`, `reload` to where they failed if the VM was
3315
+ in a saved state. [GH-123]
3316
+ - Added `config.chef.recipe_url` which allows you to specify a URL to
3317
+ a gzipped tar file for chef solo to download cookbooks. See the
3318
+ [chef-solo docs](https://docs.chef.io/chef_solo.html) for more information.
3319
+ [GH-121]
3320
+ - Added `vagrant box repackage` which repackages boxes which have
3321
+ been added. This is useful in case you want to redistribute a base
3322
+ box you have but may have lost the actual "box" file. [GH-120]
3323
+
3324
+ ## Previous
3325
+
3326
+ The changelog began with version 0.5.1 so any changes prior to that
3327
+ can be seen by checking the tagged releases and reading git commit
3328
+ messages.