vagrant-unbundled 2.2.6.2 → 2.2.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (287) hide show
  1. checksums.yaml +4 -4
  2. data/.hashibot.hcl +14 -0
  3. data/CHANGELOG.md +213 -2
  4. data/Gemfile +1 -1
  5. data/README.md +9 -51
  6. data/RELEASE.md +1 -1
  7. data/bin/vagrant +23 -0
  8. data/contrib/README.md +1 -0
  9. data/contrib/bash/completion.sh +13 -1
  10. data/contrib/sudoers/linux-suse +2 -2
  11. data/contrib/zsh/_vagrant +738 -0
  12. data/contrib/zsh/generate_zsh_completion.rb +165 -0
  13. data/lib/vagrant.rb +25 -4
  14. data/lib/vagrant/action.rb +8 -0
  15. data/lib/vagrant/action/builder.rb +184 -38
  16. data/lib/vagrant/action/builtin/box_add.rb +20 -8
  17. data/lib/vagrant/action/builtin/box_check_outdated.rb +12 -15
  18. data/lib/vagrant/action/builtin/cleanup_disks.rb +56 -0
  19. data/lib/vagrant/action/builtin/cloud_init_setup.rb +122 -0
  20. data/lib/vagrant/action/builtin/cloud_init_wait.rb +30 -0
  21. data/lib/vagrant/action/builtin/delayed.rb +26 -0
  22. data/lib/vagrant/action/builtin/disk.rb +52 -0
  23. data/lib/vagrant/action/builtin/handle_box.rb +3 -1
  24. data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +28 -9
  25. data/lib/vagrant/action/builtin/has_provisioner.rb +36 -0
  26. data/lib/vagrant/action/builtin/mixin_provisioners.rb +20 -1
  27. data/lib/vagrant/action/builtin/mixin_synced_folders.rb +20 -21
  28. data/lib/vagrant/action/builtin/set_hostname.rb +5 -1
  29. data/lib/vagrant/action/builtin/ssh_run.rb +21 -3
  30. data/lib/vagrant/action/builtin/synced_folders.rb +16 -0
  31. data/lib/vagrant/action/builtin/trigger.rb +37 -0
  32. data/lib/vagrant/action/hook.rb +76 -23
  33. data/lib/vagrant/action/runner.rb +12 -27
  34. data/lib/vagrant/action/warden.rb +28 -22
  35. data/lib/vagrant/box.rb +11 -4
  36. data/lib/vagrant/box_collection.rb +1 -1
  37. data/lib/vagrant/box_metadata.rb +17 -3
  38. data/lib/vagrant/bundler.rb +298 -59
  39. data/lib/vagrant/cli.rb +4 -2
  40. data/lib/vagrant/errors.rb +61 -1
  41. data/lib/vagrant/machine.rb +64 -11
  42. data/lib/vagrant/machine_index.rb +28 -1
  43. data/lib/vagrant/plugin/manager.rb +25 -14
  44. data/lib/vagrant/plugin/v2/command.rb +7 -2
  45. data/lib/vagrant/plugin/v2/components.rb +6 -0
  46. data/lib/vagrant/plugin/v2/manager.rb +67 -0
  47. data/lib/vagrant/plugin/v2/plugin.rb +13 -0
  48. data/lib/vagrant/plugin/v2/synced_folder.rb +50 -0
  49. data/lib/vagrant/plugin/v2/trigger.rb +64 -25
  50. data/lib/vagrant/shared_helpers.rb +36 -0
  51. data/lib/vagrant/ui.rb +51 -5
  52. data/lib/vagrant/util.rb +1 -0
  53. data/lib/vagrant/util/ansi_escape_code_remover.rb +1 -1
  54. data/lib/vagrant/util/caps.rb +48 -0
  55. data/lib/vagrant/util/credential_scrubber.rb +1 -1
  56. data/lib/vagrant/util/curl_helper.rb +8 -5
  57. data/lib/vagrant/util/directory.rb +19 -0
  58. data/lib/vagrant/util/downloader.rb +10 -5
  59. data/lib/vagrant/util/file_checksum.rb +6 -2
  60. data/lib/vagrant/util/guest_hosts.rb +68 -0
  61. data/lib/vagrant/util/guest_inspection.rb +9 -1
  62. data/lib/vagrant/util/install_cli_autocomplete.rb +118 -0
  63. data/lib/vagrant/util/io.rb +7 -27
  64. data/lib/vagrant/util/ipv4_interfaces.rb +15 -0
  65. data/lib/vagrant/util/is_port_open.rb +8 -20
  66. data/lib/vagrant/util/map_command_options.rb +33 -0
  67. data/lib/vagrant/util/mime.rb +92 -0
  68. data/lib/vagrant/util/network_ip.rb +11 -1
  69. data/lib/vagrant/util/numeric.rb +69 -0
  70. data/lib/vagrant/util/platform.rb +10 -2
  71. data/lib/vagrant/util/powershell.rb +1 -1
  72. data/lib/vagrant/util/subprocess.rb +9 -1
  73. data/lib/vagrant/util/template_renderer.rb +2 -2
  74. data/lib/vagrant/util/uploader.rb +7 -4
  75. data/lib/vagrant/vagrantfile.rb +1 -1
  76. data/plugins/commands/autocomplete/command/install.rb +49 -0
  77. data/plugins/commands/autocomplete/command/root.rb +64 -0
  78. data/plugins/commands/autocomplete/plugin.rb +18 -0
  79. data/plugins/commands/box/command/outdated.rb +14 -2
  80. data/plugins/commands/cap/command.rb +5 -1
  81. data/plugins/commands/cloud/auth/login.rb +20 -23
  82. data/plugins/commands/cloud/auth/logout.rb +2 -10
  83. data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +57 -0
  84. data/plugins/commands/cloud/auth/whoami.rb +18 -20
  85. data/plugins/commands/cloud/box/create.rb +33 -29
  86. data/plugins/commands/cloud/box/delete.rb +30 -24
  87. data/plugins/commands/cloud/box/show.rb +41 -31
  88. data/plugins/commands/cloud/box/update.rb +34 -26
  89. data/plugins/commands/cloud/client/client.rb +50 -81
  90. data/plugins/commands/cloud/list.rb +3 -4
  91. data/plugins/commands/cloud/locales/en.yml +10 -10
  92. data/plugins/commands/cloud/plugin.rb +10 -0
  93. data/plugins/commands/cloud/provider/create.rb +38 -28
  94. data/plugins/commands/cloud/provider/delete.rb +39 -29
  95. data/plugins/commands/cloud/provider/update.rb +37 -28
  96. data/plugins/commands/cloud/provider/upload.rb +44 -34
  97. data/plugins/commands/cloud/publish.rb +185 -108
  98. data/plugins/commands/cloud/search.rb +34 -21
  99. data/plugins/commands/cloud/util.rb +266 -162
  100. data/plugins/commands/cloud/version/create.rb +33 -28
  101. data/plugins/commands/cloud/version/delete.rb +35 -28
  102. data/plugins/commands/cloud/version/release.rb +35 -29
  103. data/plugins/commands/cloud/version/revoke.rb +36 -29
  104. data/plugins/commands/cloud/version/update.rb +29 -25
  105. data/plugins/commands/destroy/command.rb +6 -2
  106. data/plugins/commands/login/plugin.rb +0 -13
  107. data/plugins/commands/snapshot/command/save.rb +13 -8
  108. data/plugins/commands/ssh_config/command.rb +1 -1
  109. data/plugins/communicators/ssh/communicator.rb +25 -24
  110. data/plugins/communicators/winrm/config.rb +1 -1
  111. data/plugins/communicators/winrm/helper.rb +1 -1
  112. data/plugins/communicators/winrm/shell.rb +1 -1
  113. data/plugins/communicators/winssh/communicator.rb +126 -38
  114. data/plugins/communicators/winssh/config.rb +3 -7
  115. data/plugins/guests/alpine/cap/change_host_name.rb +10 -11
  116. data/plugins/guests/alpine/cap/rsync.rb +1 -1
  117. data/plugins/guests/alpine/plugin.rb +16 -0
  118. data/plugins/guests/alt/cap/change_host_name.rb +40 -53
  119. data/plugins/guests/arch/cap/change_host_name.rb +5 -14
  120. data/plugins/guests/arch/cap/configure_networks.rb +27 -10
  121. data/plugins/guests/arch/cap/smb.rb +1 -1
  122. data/plugins/guests/atomic/cap/change_host_name.rb +5 -14
  123. data/plugins/guests/centos/cap/flavor.rb +24 -0
  124. data/plugins/guests/centos/guest.rb +9 -0
  125. data/plugins/guests/centos/plugin.rb +20 -0
  126. data/plugins/guests/darwin/cap/change_host_name.rb +10 -6
  127. data/plugins/guests/darwin/cap/darwin_version.rb +40 -0
  128. data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +1 -1
  129. data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +109 -13
  130. data/plugins/guests/darwin/plugin.rb +15 -0
  131. data/plugins/guests/debian/cap/change_host_name.rb +12 -11
  132. data/plugins/guests/debian/cap/configure_networks.rb +14 -6
  133. data/plugins/guests/esxi/cap/public_key.rb +3 -1
  134. data/plugins/guests/freebsd/cap/change_host_name.rb +10 -6
  135. data/plugins/guests/gentoo/cap/change_host_name.rb +14 -22
  136. data/plugins/guests/haiku/cap/rsync.rb +19 -0
  137. data/plugins/guests/haiku/plugin.rb +15 -0
  138. data/plugins/guests/linux/cap/change_host_name.rb +46 -0
  139. data/plugins/guests/linux/cap/halt.rb +9 -1
  140. data/plugins/guests/linux/cap/mount_smb_shared_folder.rb +25 -34
  141. data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +10 -11
  142. data/plugins/guests/linux/cap/persist_mount_shared_folder.rb +75 -0
  143. data/plugins/guests/linux/cap/reboot.rb +53 -0
  144. data/plugins/guests/linux/plugin.rb +20 -0
  145. data/plugins/guests/omnios/cap/change_host_name.rb +10 -16
  146. data/plugins/guests/openbsd/cap/change_host_name.rb +10 -6
  147. data/plugins/guests/photon/cap/change_host_name.rb +9 -15
  148. data/plugins/guests/pld/cap/change_host_name.rb +11 -17
  149. data/plugins/guests/redhat/cap/change_host_name.rb +14 -5
  150. data/plugins/guests/redhat/cap/flavor.rb +3 -1
  151. data/plugins/guests/redhat/cap/nfs_client.rb +2 -2
  152. data/plugins/guests/redhat/cap/smb.rb +20 -0
  153. data/plugins/guests/redhat/plugin.rb +5 -0
  154. data/plugins/guests/slackware/cap/change_host_name.rb +11 -17
  155. data/plugins/guests/solaris11/plugin.rb +5 -0
  156. data/plugins/guests/suse/cap/change_host_name.rb +31 -9
  157. data/plugins/guests/windows/cap/public_key.rb +3 -3
  158. data/plugins/guests/windows/cap/reboot.rb +10 -5
  159. data/plugins/hosts/darwin/cap/fs_iso.rb +49 -0
  160. data/plugins/hosts/darwin/cap/nfs.rb +11 -0
  161. data/plugins/hosts/darwin/plugin.rb +15 -0
  162. data/plugins/hosts/linux/cap/fs_iso.rb +49 -0
  163. data/plugins/hosts/linux/cap/nfs.rb +21 -2
  164. data/plugins/hosts/linux/cap/rdp.rb +1 -1
  165. data/plugins/hosts/linux/plugin.rb +10 -0
  166. data/plugins/hosts/windows/cap/fs_iso.rb +48 -0
  167. data/plugins/hosts/windows/cap/rdp.rb +1 -1
  168. data/plugins/hosts/windows/plugin.rb +15 -0
  169. data/plugins/kernel_v2/config/cloud_init.rb +133 -0
  170. data/plugins/kernel_v2/config/disk.rb +221 -0
  171. data/plugins/kernel_v2/config/ssh_connect.rb +24 -0
  172. data/plugins/kernel_v2/config/vm.rb +230 -15
  173. data/plugins/kernel_v2/config/vm_provisioner.rb +17 -3
  174. data/plugins/kernel_v2/config/vm_trigger.rb +6 -5
  175. data/plugins/providers/docker/action.rb +8 -17
  176. data/plugins/providers/docker/action/forwarded_ports.rb +2 -0
  177. data/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +61 -0
  178. data/plugins/providers/docker/cap/has_communicator.rb +11 -0
  179. data/plugins/providers/docker/communicator.rb +1 -1
  180. data/plugins/providers/docker/driver.rb +73 -10
  181. data/plugins/providers/docker/errors.rb +4 -0
  182. data/plugins/providers/docker/executor/local.rb +7 -1
  183. data/plugins/providers/docker/plugin.rb +5 -0
  184. data/plugins/providers/hyperv/action.rb +3 -1
  185. data/plugins/providers/hyperv/action/configure.rb +8 -0
  186. data/plugins/providers/hyperv/action/export.rb +4 -2
  187. data/plugins/providers/hyperv/cap/cleanup_disks.rb +54 -0
  188. data/plugins/providers/hyperv/cap/configure_disks.rb +200 -0
  189. data/plugins/providers/hyperv/cap/validate_disk_ext.rb +34 -0
  190. data/plugins/providers/hyperv/config.rb +5 -0
  191. data/plugins/providers/hyperv/driver.rb +90 -9
  192. data/plugins/providers/hyperv/plugin.rb +25 -0
  193. data/plugins/providers/hyperv/scripts/attach_disk_drive.ps1 +28 -0
  194. data/plugins/providers/hyperv/scripts/dismount_vhd.ps1 +13 -0
  195. data/plugins/providers/hyperv/scripts/get_vhd.ps1 +16 -0
  196. data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +1 -1
  197. data/plugins/providers/hyperv/scripts/list_hdds.ps1 +17 -0
  198. data/plugins/providers/hyperv/scripts/new_vhd.ps1 +31 -0
  199. data/plugins/providers/hyperv/scripts/remove_disk_drive.ps1 +25 -0
  200. data/plugins/providers/hyperv/scripts/resize_disk_drive.ps1 +18 -0
  201. data/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1 +24 -0
  202. data/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +3 -3
  203. data/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +14 -6
  204. data/plugins/providers/virtualbox/action.rb +14 -1
  205. data/plugins/providers/virtualbox/action/clean_machine_folder.rb +10 -1
  206. data/plugins/providers/virtualbox/action/export.rb +4 -2
  207. data/plugins/providers/virtualbox/action/forward_ports.rb +2 -2
  208. data/plugins/providers/virtualbox/action/import.rb +8 -4
  209. data/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +4 -2
  210. data/plugins/providers/virtualbox/action/snapshot_delete.rb +4 -2
  211. data/plugins/providers/virtualbox/action/snapshot_restore.rb +4 -2
  212. data/plugins/providers/virtualbox/cap/cleanup_disks.rb +85 -0
  213. data/plugins/providers/virtualbox/cap/configure_disks.rb +440 -0
  214. data/plugins/providers/virtualbox/cap/mount_options.rb +35 -0
  215. data/plugins/providers/virtualbox/cap/validate_disk_ext.rb +34 -0
  216. data/plugins/providers/virtualbox/driver/base.rb +15 -0
  217. data/plugins/providers/virtualbox/driver/meta.rb +17 -2
  218. data/plugins/providers/virtualbox/driver/version_5_0.rb +217 -2
  219. data/plugins/providers/virtualbox/driver/version_6_1.rb +39 -0
  220. data/plugins/providers/virtualbox/model/storage_controller.rb +135 -0
  221. data/plugins/providers/virtualbox/model/storage_controller_array.rb +98 -0
  222. data/plugins/providers/virtualbox/plugin.rb +38 -0
  223. data/plugins/providers/virtualbox/provider.rb +2 -1
  224. data/plugins/providers/virtualbox/synced_folder.rb +1 -0
  225. data/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb +44 -0
  226. data/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +20 -3
  227. data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +4 -5
  228. data/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +2 -2
  229. data/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +2 -2
  230. data/plugins/provisioners/ansible/cap/guest/pip/pip.rb +8 -4
  231. data/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +2 -2
  232. data/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +2 -1
  233. data/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +3 -3
  234. data/plugins/provisioners/ansible/plugin.rb +5 -0
  235. data/plugins/provisioners/ansible/provisioner/base.rb +1 -1
  236. data/plugins/provisioners/container/client.rb +203 -0
  237. data/plugins/provisioners/container/config.rb +83 -0
  238. data/plugins/provisioners/container/installer.rb +13 -0
  239. data/plugins/provisioners/container/plugin.rb +23 -0
  240. data/plugins/provisioners/container/provisioner.rb +28 -0
  241. data/plugins/provisioners/docker/cap/{redhat → centos}/docker_install.rb +10 -7
  242. data/plugins/provisioners/docker/cap/centos/docker_start_service.rb +24 -0
  243. data/plugins/provisioners/docker/client.rb +4 -175
  244. data/plugins/provisioners/docker/config.rb +2 -72
  245. data/plugins/provisioners/docker/installer.rb +3 -5
  246. data/plugins/provisioners/docker/plugin.rb +6 -6
  247. data/plugins/provisioners/docker/provisioner.rb +4 -10
  248. data/plugins/provisioners/podman/cap/centos/podman_install.rb +35 -0
  249. data/plugins/provisioners/podman/cap/linux/podman_installed.rb +13 -0
  250. data/plugins/provisioners/podman/cap/redhat/podman_install.rb +26 -0
  251. data/plugins/provisioners/podman/client.rb +12 -0
  252. data/plugins/provisioners/podman/config.rb +28 -0
  253. data/plugins/provisioners/podman/installer.rb +33 -0
  254. data/plugins/provisioners/podman/plugin.rb +38 -0
  255. data/plugins/provisioners/podman/provisioner.rb +52 -0
  256. data/plugins/provisioners/salt/provisioner.rb +4 -0
  257. data/plugins/provisioners/shell/config.rb +1 -6
  258. data/plugins/provisioners/shell/provisioner.rb +61 -26
  259. data/plugins/synced_folders/nfs/synced_folder.rb +3 -1
  260. data/plugins/synced_folders/smb/cap/default_fstab_modification.rb +11 -0
  261. data/plugins/synced_folders/smb/cap/mount_options.rb +56 -0
  262. data/plugins/synced_folders/smb/plugin.rb +20 -0
  263. data/plugins/synced_folders/smb/synced_folder.rb +2 -2
  264. data/plugins/synced_folders/unix_mount_helpers.rb +14 -0
  265. data/scripts/website_push_www.sh +1 -1
  266. data/templates/commands/init/Vagrantfile.erb +1 -1
  267. data/templates/guests/arch/{network_dhcp.erb → default_network/network_dhcp.erb} +0 -0
  268. data/templates/guests/arch/{network_static.erb → default_network/network_static.erb} +0 -0
  269. data/templates/guests/arch/{network_static6.erb → default_network/network_static6.erb} +0 -0
  270. data/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
  271. data/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
  272. data/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
  273. data/templates/guests/linux/etc_fstab.erb +6 -0
  274. data/templates/locales/en.yml +235 -6
  275. data/templates/locales/providers_docker.yml +6 -0
  276. data/templates/nfs/exports_darwin.erb +7 -0
  277. data/vagrant.gemspec +14 -15
  278. data/version.txt +1 -1
  279. metadata +3577 -3855
  280. data/lib/vagrant/action/builtin/after_trigger.rb +0 -31
  281. data/lib/vagrant/action/builtin/before_trigger.rb +0 -28
  282. data/plugins/commands/login/client.rb +0 -253
  283. data/plugins/commands/login/command.rb +0 -137
  284. data/plugins/commands/login/errors.rb +0 -24
  285. data/plugins/commands/login/locales/en.yml +0 -49
  286. data/plugins/provisioners/docker/cap/redhat/docker_start_service.rb +0 -16
  287. data/scripts/website_push_docs.sh +0 -40
@@ -0,0 +1,15 @@
1
+ module Vagrant
2
+ module Util
3
+ module IPv4Interfaces
4
+ def ipv4_interfaces
5
+ Socket.getifaddrs.select do |ifaddr|
6
+ ifaddr.addr && ifaddr.addr.ipv4?
7
+ end.map do |ifaddr|
8
+ [ifaddr.name, ifaddr.addr.ip_address]
9
+ end
10
+ end
11
+
12
+ extend IPv4Interfaces
13
+ end
14
+ end
15
+ end
@@ -1,5 +1,4 @@
1
1
  require "socket"
2
- require "timeout"
3
2
 
4
3
  module Vagrant
5
4
  module Util
@@ -14,27 +13,16 @@ module Vagrant
14
13
  # @return [Boolean] `true` if the port is open (listening), `false`
15
14
  # otherwise.
16
15
  def is_port_open?(host, port)
17
- # We wrap this in a timeout because once in awhile the TCPSocket
18
- # _will_ hang, but this signals that the port is closed.
19
- Timeout.timeout(1) do
20
- # Attempt to make a connection
21
- s = TCPSocket.new(host, port)
22
-
23
- # A connection was made! Properly clean up the socket, not caring
24
- # at all if any exception is raised, because we already know the
25
- # result.
26
- s.close rescue nil
27
-
28
- # The port is open if we reached this point, since we were able
29
- # to connect.
30
- return true
16
+ begin
17
+ Socket.tcp(host, port, connect_timeout: 0.1).close
18
+ true
19
+ rescue Errno::ETIMEDOUT, Errno::ECONNREFUSED, Errno::EHOSTUNREACH, \
20
+ Errno::ENETUNREACH, Errno::EACCES, Errno::ENOTCONN, Errno::EALREADY
21
+ false
31
22
  end
32
- rescue Timeout::Error, Errno::ECONNREFUSED, Errno::EHOSTUNREACH, \
33
- Errno::ENETUNREACH, Errno::EACCES, Errno::ENOTCONN, \
34
- Errno::EADDRNOTAVAIL
35
- # Any of the above exceptions signal that the port is closed.
36
- return false
37
23
  end
24
+
25
+ extend IsPortOpen
38
26
  end
39
27
  end
40
28
  end
@@ -0,0 +1,33 @@
1
+ module Vagrant
2
+ module Util
3
+ class MapCommandOptions
4
+ # Given a hash map of user specified argments, will generate
5
+ # a list. Set the key to the command flag, and the value to
6
+ # it's value. If the value is boolean (true), only the flag is
7
+ # added. eg.
8
+ # {a: "opt-a", b: true} -> ["--a", "opt-a", "--b"]
9
+ #
10
+ # @param [Hash] map of commands
11
+ # @param [String] string prepended to cmd line flags (keys)
12
+ #
13
+ # @return[Array<String>] commands in list form
14
+ def self.map_to_command_options(map, cmd_flag="--")
15
+ opt_list = []
16
+ if map == nil
17
+ return opt_list
18
+ end
19
+ map.each do |k, v|
20
+ # If the value is true (bool) add the key as the cmd flag
21
+ if v.is_a?(TrueClass)
22
+ opt_list.push("#{cmd_flag}#{k}")
23
+ # If the value is a string, add the key as the flag, and value as the flags argument
24
+ elsif v.is_a?(String)
25
+ opt_list.push("#{cmd_flag}#{k}")
26
+ opt_list.push(v)
27
+ end
28
+ end
29
+ return opt_list
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,92 @@
1
+ require 'mime/types'
2
+ require 'securerandom'
3
+
4
+ module Vagrant
5
+ module Util
6
+ module Mime
7
+ class Multipart
8
+
9
+ # @return [Array<String>] collection of content part of the multipart mime
10
+ attr_accessor :content
11
+
12
+ # @return [String] type of the content
13
+ attr_accessor :content_type
14
+
15
+ # @return [Hash] headers for the mime
16
+ attr_accessor :headers
17
+
18
+ # @param [String] (optional) mime content type
19
+ # @param [String] (optional) mime version
20
+ def initialize(content_type="multipart/mixed")
21
+ @content_id = "#{Time.now.to_i}@#{SecureRandom.alphanumeric(24)}.local"
22
+ @boundary = "Boundary_#{SecureRandom.alphanumeric(24)}"
23
+ @content_type = MIME::Types[content_type].first
24
+ @content = []
25
+ @headers = {
26
+ "Content-ID"=> "<#{@content_id}>",
27
+ "Content-Type"=> "#{content_type}; boundary=#{@boundary}",
28
+ }
29
+ end
30
+
31
+ # Add an entry to the multipart mime
32
+ #
33
+ # @param entry to add
34
+ def add(entry)
35
+ content << entry
36
+ end
37
+
38
+ # Output MimeEntity as a string
39
+ #
40
+ # @return [String] mime data
41
+ def to_s
42
+ output_string = ""
43
+ headers.each do |k, v|
44
+ output_string += "#{k}: #{v}\n"
45
+ end
46
+ output_string += "\n--#{@boundary}\n"
47
+ @content.each do |entry|
48
+ output_string += entry.to_s
49
+ output_string += "\n--#{@boundary}\n"
50
+ end
51
+ output_string
52
+ end
53
+ end
54
+
55
+ class Entity
56
+
57
+ # @return [String] entity content
58
+ attr_reader :content
59
+
60
+ # @return [String] type of the entity content
61
+ attr_reader :content_type
62
+
63
+ # @return [String] content disposition
64
+ attr_accessor :disposition
65
+
66
+ # @param [String] entity content
67
+ # @param [String] type of the entity content
68
+ def initialize(content, content_type)
69
+ if !MIME::Types.include?(content_type)
70
+ MIME::Types.add(MIME::Type.new(content_type))
71
+ end
72
+ @content = content
73
+ @content_type = MIME::Types[content_type].first
74
+ @content_id = "#{Time.now.to_i}@#{SecureRandom.alphanumeric(24)}.local"
75
+ end
76
+
77
+ # Output MimeEntity as a string
78
+ #
79
+ # @return [String] mime data
80
+ def to_s
81
+ output_string = "Content-ID: <#{@content_id}>\n"
82
+ output_string += "Content-Type: #{@content_type}\n"
83
+ if disposition
84
+ output_string += "Content-Disposition: #{@disposition}\n"
85
+ end
86
+ output_string += "\n#{content}"
87
+ output_string
88
+ end
89
+ end
90
+ end
91
+ end
92
+ end
@@ -3,11 +3,21 @@ require "ipaddr"
3
3
  module Vagrant
4
4
  module Util
5
5
  module NetworkIP
6
+
7
+ DEFAULT_MASK = "255.255.255.0".freeze
8
+
9
+ LOGGER = Log4r::Logger.new("vagrant::util::NetworkIP")
10
+
6
11
  # Returns the network address of the given IP and subnet.
7
12
  #
8
13
  # @return [String]
9
14
  def network_address(ip, subnet)
10
- IPAddr.new(ip).mask(subnet).to_s
15
+ begin
16
+ IPAddr.new(ip).mask(subnet).to_s
17
+ rescue IPAddr::InvalidPrefixError
18
+ LOGGER.warn("Provided mask '#{subnet}' is invalid. Falling back to using mask '#{DEFAULT_MASK}'")
19
+ IPAddr.new(ip).mask(DEFAULT_MASK).to_s
20
+ end
11
21
  end
12
22
  end
13
23
  end
@@ -0,0 +1,69 @@
1
+ require "log4r"
2
+
3
+ module Vagrant
4
+ module Util
5
+ class Numeric
6
+
7
+ # Authors Note: This conversion has been borrowed from the ActiveSupport Numeric class
8
+ # Conversion helper constants
9
+ KILOBYTE = 1024
10
+ MEGABYTE = KILOBYTE * 1024
11
+ GIGABYTE = MEGABYTE * 1024
12
+ TERABYTE = GIGABYTE * 1024
13
+ PETABYTE = TERABYTE * 1024
14
+ EXABYTE = PETABYTE * 1024
15
+
16
+ BYTES_CONVERSION_MAP = {KB: KILOBYTE, MB: MEGABYTE, GB: GIGABYTE, TB: TERABYTE,
17
+ PB: PETABYTE, EB: EXABYTE}
18
+
19
+ # Regex borrowed from the vagrant-disksize config class
20
+ SHORTHAND_MATCH_REGEX = /^(?<number>[0-9]+)\s?(?<unit>KB|MB|GB|TB)?$/
21
+
22
+ class << self
23
+ LOGGER = Log4r::Logger.new("vagrant::util::numeric")
24
+
25
+ # A helper that converts a shortcut string to its bytes representation.
26
+ # The expected format of `str` is essentially: "<Number>XX"
27
+ # Where `XX` is shorthand for KB, MB, GB, TB, PB, or EB. For example, 50 megabytes:
28
+ #
29
+ # str = "50MB"
30
+ #
31
+ # @param [String] - str
32
+ # @return [Integer,nil] - bytes - returns nil if method fails to convert to bytes
33
+ def string_to_bytes(str)
34
+ bytes = nil
35
+
36
+ str = str.to_s.strip
37
+ matches = SHORTHAND_MATCH_REGEX.match(str)
38
+ if matches
39
+ number = matches[:number].to_i
40
+ unit = matches[:unit].to_sym
41
+
42
+ if BYTES_CONVERSION_MAP.key?(unit)
43
+ bytes = number * BYTES_CONVERSION_MAP[unit]
44
+ else
45
+ LOGGER.error("An invalid unit or format was given, string_to_bytes cannot convert #{str}")
46
+ end
47
+ end
48
+
49
+ bytes
50
+ end
51
+
52
+ # Rounds actual value to two decimal places
53
+ #
54
+ # @param [Integer] bytes
55
+ # @return [Integer] megabytes - bytes representation in megabytes
56
+ def bytes_to_megabytes(bytes)
57
+ (bytes / MEGABYTE.to_f).round(2)
58
+ end
59
+
60
+ # @private
61
+ # Reset the cached values for platform. This is not considered a public
62
+ # API and should only be used for testing.
63
+ def reset!
64
+ instance_variables.each(&method(:remove_instance_variable))
65
+ end
66
+ end
67
+ end
68
+ end
69
+ end
@@ -213,13 +213,20 @@ module Vagrant
213
213
  return path if !cygwin?
214
214
 
215
215
  # Replace all "\" with "/", otherwise cygpath doesn't work.
216
- path = path.gsub("\\", "/")
216
+ path = unix_windows_path(path)
217
217
 
218
218
  # Call out to cygpath and gather the result
219
219
  process = Subprocess.execute("cygpath", "-w", "-l", "-a", path.to_s)
220
220
  return process.stdout.chomp
221
221
  end
222
222
 
223
+ # This takes any path and converts Windows-style path separators
224
+ # to Unix-like path separators.
225
+ # @return [String]
226
+ def unix_windows_path(path)
227
+ path.gsub("\\", "/")
228
+ end
229
+
223
230
  # This checks if the filesystem is case sensitive. This is not a
224
231
  # 100% correct check, since it is possible that the temporary
225
232
  # directory runs a different filesystem than the root directory.
@@ -547,6 +554,7 @@ module Vagrant
547
554
  # Get list of local mount paths that are DrvFs file systems
548
555
  #
549
556
  # @return [Array<String>]
557
+ # @todo(chrisroberts): Constantize types for check
550
558
  def wsl_drvfs_mounts
551
559
  if !defined?(@_wsl_drvfs_mounts)
552
560
  @_wsl_drvfs_mounts = []
@@ -554,7 +562,7 @@ module Vagrant
554
562
  result = Util::Subprocess.execute("mount")
555
563
  result.stdout.each_line do |line|
556
564
  info = line.match(MOUNT_PATTERN)
557
- if info && info[:type] == "drvfs"
565
+ if info && (info[:type] == "drvfs" || info[:type] == "9p")
558
566
  @_wsl_drvfs_mounts << info[:mount]
559
567
  end
560
568
  end
@@ -231,7 +231,7 @@ module Vagrant
231
231
  "-PassThru -WindowStyle Hidden -Wait -Verb RunAs; if($p){ exit $p.ExitCode; }else{ exit 1 }"
232
232
 
233
233
  cmd = [
234
- "powershell",
234
+ executable,
235
235
  "-NoLogo",
236
236
  "-NoProfile",
237
237
  "-NonInteractive",
@@ -90,6 +90,8 @@ module Vagrant
90
90
  process.io.stdout = stdout_writer
91
91
  process.io.stderr = stderr_writer
92
92
  process.duplex = true
93
+ process.leader = true if @options[:detach]
94
+ process.detach = true if @options[:detach]
93
95
 
94
96
  # Special installer-related things
95
97
  if Vagrant.in_installer?
@@ -158,6 +160,12 @@ module Vagrant
158
160
  raise LaunchError.new(ex.message)
159
161
  end
160
162
 
163
+ # If running with the detach option, no need to capture IO or
164
+ # ensure program exists.
165
+ if @options[:detach]
166
+ return
167
+ end
168
+
161
169
  # Make sure the stdin does not buffer
162
170
  process.io.stdin.sync = true
163
171
 
@@ -261,7 +269,7 @@ module Vagrant
261
269
  # Return an exit status container
262
270
  return Result.new(process.exit_code, io_data[:stdout], io_data[:stderr])
263
271
  ensure
264
- if process && process.alive?
272
+ if process && process.alive? && !@options[:detach]
265
273
  # Make sure no matter what happens, the process exits
266
274
  process.stop(2)
267
275
  end
@@ -1,7 +1,7 @@
1
1
  require 'ostruct'
2
2
  require "pathname"
3
3
 
4
- require 'erubis'
4
+ require 'erubi'
5
5
 
6
6
  module Vagrant
7
7
  module Util
@@ -73,7 +73,7 @@ module Vagrant
73
73
  #
74
74
  # @return [String]
75
75
  def render_string
76
- Erubis::Eruby.new(template, trim: true).result(binding)
76
+ binding.eval(Erubi::Engine.new(template, trim: true).src)
77
77
  end
78
78
 
79
79
  # Returns the full path to the template, taking into account the gem directory
@@ -13,9 +13,11 @@ module Vagrant
13
13
  # a hand-rolled Ruby library, so we defer to its expertise.
14
14
  class Uploader
15
15
 
16
- # @param [String] destination - valid URL to upload file to
17
- # @param [String] file - location of file to upload on disk
18
- # @param [Hash] options
16
+ # @param [String] destination Valid URL to upload file to
17
+ # @param [String] file Location of file to upload on disk
18
+ # @param [Hash] options
19
+ # @option options [Vagrant::UI] :ui UI interface for output
20
+ # @option options [String, Symbol] :method Request method for upload
19
21
  def initialize(destination, file, options=nil)
20
22
  options ||= {}
21
23
  @logger = Log4r::Logger.new("vagrant::util::uploader")
@@ -27,6 +29,7 @@ module Vagrant
27
29
  if !@request_method
28
30
  @request_method = "PUT"
29
31
  end
32
+ @request_method = @request_method.to_s.upcase
30
33
  end
31
34
 
32
35
  def upload!
@@ -51,7 +54,7 @@ module Vagrant
51
54
  protected
52
55
 
53
56
  def build_options
54
- options = [@destination, "--request", @request_method, "--upload-file", @file]
57
+ options = [@destination, "--request", @request_method, "--upload-file", @file, "--fail"]
55
58
  return options
56
59
  end
57
60
 
@@ -197,7 +197,7 @@ module Vagrant
197
197
  local_keys = keys.dup
198
198
 
199
199
  # Load the box Vagrantfile, if there is one
200
- if config.vm.box && boxes
200
+ if !config.vm.box.to_s.empty? && boxes
201
201
  box = boxes.find(config.vm.box, box_formats, config.vm.box_version)
202
202
  if box
203
203
  box_vagrantfile = find_vagrantfile(box.directory)
@@ -0,0 +1,49 @@
1
+ require 'optparse'
2
+
3
+ require 'vagrant/util/install_cli_autocomplete'
4
+
5
+ module VagrantPlugins
6
+ module CommandAutocomplete
7
+ module Command
8
+ class Install < Vagrant.plugin("2", :command)
9
+ def execute
10
+ options = {
11
+ shells: []
12
+ }
13
+
14
+ opts = OptionParser.new do |o|
15
+ o.banner = "Usage: vagrant autocomplete install [-h] [shell name]"
16
+ o.separator ""
17
+ o.separator "Available shells: #{Vagrant::Util::InstallCLIAutocomplete::SUPPORTED_SHELLS.keys.join(' ')}"
18
+ o.separator ""
19
+ o.separator "Options:"
20
+ o.separator ""
21
+
22
+ o.on("-b", "--bash", "Install bash autocomplete") do |c|
23
+ options[:shells].append("bash")
24
+ end
25
+
26
+ o.on("-z", "--zsh", "Install zsh autocomplete") do |c|
27
+ options[:shells].append("zsh")
28
+ end
29
+ end
30
+
31
+ # Parse the options
32
+ argv = parse_options(opts)
33
+ return if !argv
34
+ raise Vagrant::Errors::CLIInvalidUsage, help: opts.help.chomp if argv.length > 0
35
+
36
+ written_paths = Vagrant::Util::InstallCLIAutocomplete.install(options[:shells])
37
+ if written_paths && written_paths.length > 0
38
+ @env.ui.info(I18n.t("vagrant.autocomplete.installed", paths: written_paths.join("\n- ")))
39
+ else
40
+ @env.ui.info(I18n.t("vagrant.autocomplete.not_installed"))
41
+ end
42
+
43
+ # Success, exit status 0
44
+ 0
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end