vagrant-unbundled 2.2.7.0 → 2.2.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (282) hide show
  1. checksums.yaml +4 -4
  2. data/.hashibot.hcl +2 -0
  3. data/CHANGELOG.md +228 -0
  4. data/Gemfile +1 -1
  5. data/README.md +9 -51
  6. data/RELEASE.md +1 -1
  7. data/bin/vagrant +50 -1
  8. data/contrib/README.md +1 -0
  9. data/contrib/sudoers/linux-suse +2 -2
  10. data/contrib/zsh/_vagrant +738 -0
  11. data/contrib/zsh/generate_zsh_completion.rb +165 -0
  12. data/lib/vagrant.rb +28 -5
  13. data/lib/vagrant/action.rb +7 -0
  14. data/lib/vagrant/action/builder.rb +184 -38
  15. data/lib/vagrant/action/builtin/box_add.rb +24 -8
  16. data/lib/vagrant/action/builtin/box_check_outdated.rb +2 -1
  17. data/lib/vagrant/action/builtin/cleanup_disks.rb +56 -0
  18. data/lib/vagrant/action/builtin/cloud_init_setup.rb +122 -0
  19. data/lib/vagrant/action/builtin/cloud_init_wait.rb +30 -0
  20. data/lib/vagrant/action/builtin/delayed.rb +26 -0
  21. data/lib/vagrant/action/builtin/disk.rb +14 -1
  22. data/lib/vagrant/action/builtin/handle_box.rb +3 -1
  23. data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +28 -9
  24. data/lib/vagrant/action/builtin/has_provisioner.rb +36 -0
  25. data/lib/vagrant/action/builtin/mixin_provisioners.rb +1 -0
  26. data/lib/vagrant/action/builtin/mixin_synced_folders.rb +20 -21
  27. data/lib/vagrant/action/builtin/set_hostname.rb +5 -1
  28. data/lib/vagrant/action/builtin/synced_folders.rb +16 -0
  29. data/lib/vagrant/action/builtin/trigger.rb +37 -0
  30. data/lib/vagrant/action/hook.rb +76 -23
  31. data/lib/vagrant/action/runner.rb +12 -27
  32. data/lib/vagrant/action/warden.rb +28 -31
  33. data/lib/vagrant/box.rb +11 -4
  34. data/lib/vagrant/box_collection.rb +1 -1
  35. data/lib/vagrant/bundler.rb +310 -61
  36. data/lib/vagrant/cli.rb +4 -2
  37. data/lib/vagrant/environment.rb +1 -0
  38. data/lib/vagrant/errors.rb +69 -1
  39. data/lib/vagrant/machine.rb +64 -11
  40. data/lib/vagrant/machine_index.rb +28 -1
  41. data/lib/vagrant/patches/net-ssh.rb +186 -0
  42. data/lib/vagrant/plugin/manager.rb +45 -16
  43. data/lib/vagrant/plugin/v2/command.rb +7 -2
  44. data/lib/vagrant/plugin/v2/components.rb +6 -0
  45. data/lib/vagrant/plugin/v2/manager.rb +67 -0
  46. data/lib/vagrant/plugin/v2/plugin.rb +13 -0
  47. data/lib/vagrant/plugin/v2/synced_folder.rb +50 -0
  48. data/lib/vagrant/plugin/v2/trigger.rb +64 -25
  49. data/lib/vagrant/shared_helpers.rb +36 -0
  50. data/lib/vagrant/ui.rb +43 -2
  51. data/lib/vagrant/util.rb +2 -0
  52. data/lib/vagrant/util/ansi_escape_code_remover.rb +1 -1
  53. data/lib/vagrant/util/caps.rb +48 -0
  54. data/lib/vagrant/util/credential_scrubber.rb +1 -1
  55. data/lib/vagrant/util/curl_helper.rb +12 -8
  56. data/lib/vagrant/util/directory.rb +19 -0
  57. data/lib/vagrant/util/downloader.rb +10 -5
  58. data/lib/vagrant/util/guest_hosts.rb +68 -0
  59. data/lib/vagrant/util/guest_inspection.rb +9 -1
  60. data/lib/vagrant/util/install_cli_autocomplete.rb +118 -0
  61. data/lib/vagrant/util/io.rb +7 -27
  62. data/lib/vagrant/util/ipv4_interfaces.rb +15 -0
  63. data/lib/vagrant/util/is_port_open.rb +8 -19
  64. data/lib/vagrant/util/map_command_options.rb +33 -0
  65. data/lib/vagrant/util/mime.rb +92 -0
  66. data/lib/vagrant/util/network_ip.rb +11 -1
  67. data/lib/vagrant/util/numeric.rb +28 -0
  68. data/lib/vagrant/util/platform.rb +10 -2
  69. data/lib/vagrant/util/powershell.rb +31 -15
  70. data/lib/vagrant/util/subprocess.rb +9 -1
  71. data/lib/vagrant/util/template_renderer.rb +2 -2
  72. data/lib/vagrant/util/uploader.rb +7 -4
  73. data/lib/vagrant/vagrantfile.rb +2 -2
  74. data/plugins/commands/autocomplete/command/install.rb +49 -0
  75. data/plugins/commands/autocomplete/command/root.rb +64 -0
  76. data/plugins/commands/autocomplete/plugin.rb +18 -0
  77. data/plugins/commands/cap/command.rb +5 -1
  78. data/plugins/commands/cloud/auth/login.rb +20 -23
  79. data/plugins/commands/cloud/auth/logout.rb +2 -10
  80. data/plugins/commands/cloud/auth/middleware/add_authentication.rb +60 -31
  81. data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +64 -0
  82. data/plugins/commands/cloud/auth/whoami.rb +18 -20
  83. data/plugins/commands/cloud/box/create.rb +33 -29
  84. data/plugins/commands/cloud/box/delete.rb +30 -24
  85. data/plugins/commands/cloud/box/show.rb +41 -31
  86. data/plugins/commands/cloud/box/update.rb +34 -26
  87. data/plugins/commands/cloud/client/client.rb +55 -79
  88. data/plugins/commands/cloud/list.rb +3 -4
  89. data/plugins/commands/cloud/locales/en.yml +15 -11
  90. data/plugins/commands/cloud/plugin.rb +10 -0
  91. data/plugins/commands/cloud/provider/create.rb +38 -28
  92. data/plugins/commands/cloud/provider/delete.rb +39 -29
  93. data/plugins/commands/cloud/provider/update.rb +37 -28
  94. data/plugins/commands/cloud/provider/upload.rb +53 -33
  95. data/plugins/commands/cloud/publish.rb +193 -106
  96. data/plugins/commands/cloud/search.rb +34 -21
  97. data/plugins/commands/cloud/util.rb +273 -161
  98. data/plugins/commands/cloud/version/create.rb +33 -28
  99. data/plugins/commands/cloud/version/delete.rb +35 -28
  100. data/plugins/commands/cloud/version/release.rb +35 -29
  101. data/plugins/commands/cloud/version/revoke.rb +36 -29
  102. data/plugins/commands/cloud/version/update.rb +29 -25
  103. data/plugins/commands/destroy/command.rb +7 -7
  104. data/plugins/commands/login/plugin.rb +0 -13
  105. data/plugins/commands/ssh_config/command.rb +1 -1
  106. data/plugins/communicators/ssh/communicator.rb +25 -24
  107. data/plugins/communicators/winrm/config.rb +1 -1
  108. data/plugins/communicators/winrm/helper.rb +1 -1
  109. data/plugins/communicators/winrm/shell.rb +1 -1
  110. data/plugins/communicators/winssh/communicator.rb +126 -38
  111. data/plugins/communicators/winssh/config.rb +3 -7
  112. data/plugins/guests/alpine/cap/change_host_name.rb +10 -11
  113. data/plugins/guests/alpine/cap/configure_networks.rb +1 -1
  114. data/plugins/guests/alt/cap/change_host_name.rb +40 -53
  115. data/plugins/guests/arch/cap/change_host_name.rb +5 -14
  116. data/plugins/guests/arch/cap/configure_networks.rb +27 -10
  117. data/plugins/guests/arch/cap/smb.rb +1 -1
  118. data/plugins/guests/atomic/cap/change_host_name.rb +5 -14
  119. data/plugins/guests/centos/cap/flavor.rb +24 -0
  120. data/plugins/guests/centos/guest.rb +9 -0
  121. data/plugins/guests/centos/plugin.rb +20 -0
  122. data/plugins/guests/darwin/cap/change_host_name.rb +10 -6
  123. data/plugins/guests/darwin/cap/darwin_version.rb +40 -0
  124. data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +1 -1
  125. data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +33 -10
  126. data/plugins/guests/darwin/plugin.rb +15 -0
  127. data/plugins/guests/debian/cap/change_host_name.rb +12 -11
  128. data/plugins/guests/debian/cap/configure_networks.rb +14 -6
  129. data/plugins/guests/esxi/cap/public_key.rb +3 -1
  130. data/plugins/guests/fedora/guest.rb +4 -4
  131. data/plugins/guests/freebsd/cap/change_host_name.rb +10 -6
  132. data/plugins/guests/gentoo/cap/change_host_name.rb +14 -22
  133. data/plugins/guests/haiku/cap/rsync.rb +19 -0
  134. data/plugins/guests/haiku/plugin.rb +15 -0
  135. data/plugins/guests/linux/cap/change_host_name.rb +46 -0
  136. data/plugins/guests/linux/cap/halt.rb +9 -1
  137. data/plugins/guests/linux/cap/mount_smb_shared_folder.rb +25 -34
  138. data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +10 -11
  139. data/plugins/guests/linux/cap/persist_mount_shared_folder.rb +74 -0
  140. data/plugins/guests/linux/cap/reboot.rb +36 -7
  141. data/plugins/guests/linux/plugin.rb +10 -0
  142. data/plugins/guests/omnios/cap/change_host_name.rb +10 -16
  143. data/plugins/guests/openbsd/cap/change_host_name.rb +10 -6
  144. data/plugins/guests/openwrt/cap/change_host_name.rb +19 -0
  145. data/plugins/guests/openwrt/cap/halt.rb +16 -0
  146. data/plugins/guests/openwrt/cap/insert_public_key.rb +20 -0
  147. data/plugins/guests/openwrt/cap/remove_public_key.rb +22 -0
  148. data/plugins/guests/openwrt/cap/rsync.rb +35 -0
  149. data/plugins/guests/openwrt/guest.rb +23 -0
  150. data/plugins/guests/openwrt/plugin.rb +61 -0
  151. data/plugins/guests/photon/cap/change_host_name.rb +9 -15
  152. data/plugins/guests/pld/cap/change_host_name.rb +11 -17
  153. data/plugins/guests/redhat/cap/change_host_name.rb +14 -5
  154. data/plugins/guests/redhat/cap/flavor.rb +3 -1
  155. data/plugins/guests/redhat/cap/smb.rb +20 -0
  156. data/plugins/guests/redhat/plugin.rb +5 -0
  157. data/plugins/guests/slackware/cap/change_host_name.rb +11 -17
  158. data/plugins/guests/solaris11/plugin.rb +5 -0
  159. data/plugins/guests/suse/cap/change_host_name.rb +31 -9
  160. data/plugins/guests/windows/cap/public_key.rb +3 -3
  161. data/plugins/guests/windows/cap/reboot.rb +10 -5
  162. data/plugins/hosts/darwin/cap/fs_iso.rb +49 -0
  163. data/plugins/hosts/darwin/plugin.rb +10 -0
  164. data/plugins/hosts/linux/cap/fs_iso.rb +49 -0
  165. data/plugins/hosts/linux/cap/nfs.rb +1 -0
  166. data/plugins/hosts/linux/cap/rdp.rb +1 -1
  167. data/plugins/hosts/linux/plugin.rb +10 -0
  168. data/plugins/hosts/windows/cap/fs_iso.rb +48 -0
  169. data/plugins/hosts/windows/cap/rdp.rb +1 -1
  170. data/plugins/hosts/windows/plugin.rb +15 -0
  171. data/plugins/kernel_v2/config/cloud_init.rb +133 -0
  172. data/plugins/kernel_v2/config/disk.rb +67 -14
  173. data/plugins/kernel_v2/config/ssh_connect.rb +24 -0
  174. data/plugins/kernel_v2/config/vm.rb +155 -21
  175. data/plugins/kernel_v2/config/vm_provisioner.rb +13 -2
  176. data/plugins/kernel_v2/config/vm_trigger.rb +6 -5
  177. data/plugins/providers/docker/action.rb +8 -17
  178. data/plugins/providers/docker/action/forwarded_ports.rb +2 -0
  179. data/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +61 -0
  180. data/plugins/providers/docker/cap/has_communicator.rb +11 -0
  181. data/plugins/providers/docker/communicator.rb +1 -1
  182. data/plugins/providers/docker/driver.rb +58 -7
  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 +13 -1
  205. data/plugins/providers/virtualbox/action/export.rb +4 -2
  206. data/plugins/providers/virtualbox/action/forward_ports.rb +2 -2
  207. data/plugins/providers/virtualbox/action/import.rb +8 -4
  208. data/plugins/providers/virtualbox/action/network.rb +12 -5
  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 +40 -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 +16 -2
  218. data/plugins/providers/virtualbox/driver/version_5_0.rb +217 -2
  219. data/plugins/providers/virtualbox/driver/version_6_1.rb +23 -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 +42 -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/freebsd/ansible_install.rb +1 -1
  227. data/plugins/provisioners/ansible/plugin.rb +5 -0
  228. data/plugins/provisioners/ansible/provisioner/base.rb +1 -1
  229. data/plugins/provisioners/container/client.rb +203 -0
  230. data/plugins/provisioners/container/config.rb +83 -0
  231. data/plugins/provisioners/container/installer.rb +13 -0
  232. data/plugins/provisioners/container/plugin.rb +23 -0
  233. data/plugins/provisioners/container/provisioner.rb +28 -0
  234. data/plugins/provisioners/docker/cap/{redhat → centos}/docker_install.rb +10 -7
  235. data/plugins/provisioners/docker/cap/centos/docker_start_service.rb +24 -0
  236. data/plugins/provisioners/docker/client.rb +4 -175
  237. data/plugins/provisioners/docker/config.rb +2 -72
  238. data/plugins/provisioners/docker/installer.rb +3 -5
  239. data/plugins/provisioners/docker/plugin.rb +6 -6
  240. data/plugins/provisioners/docker/provisioner.rb +4 -10
  241. data/plugins/provisioners/podman/cap/centos/podman_install.rb +35 -0
  242. data/plugins/provisioners/podman/cap/linux/podman_installed.rb +13 -0
  243. data/plugins/provisioners/podman/cap/redhat/podman_install.rb +26 -0
  244. data/plugins/provisioners/podman/client.rb +12 -0
  245. data/plugins/provisioners/podman/config.rb +28 -0
  246. data/plugins/provisioners/podman/installer.rb +33 -0
  247. data/plugins/provisioners/podman/plugin.rb +38 -0
  248. data/plugins/provisioners/podman/provisioner.rb +52 -0
  249. data/plugins/provisioners/salt/bootstrap-salt.sh +7 -4
  250. data/plugins/provisioners/salt/provisioner.rb +4 -0
  251. data/plugins/provisioners/shell/config.rb +1 -6
  252. data/plugins/provisioners/shell/provisioner.rb +61 -26
  253. data/plugins/synced_folders/nfs/synced_folder.rb +3 -1
  254. data/plugins/synced_folders/smb/cap/default_fstab_modification.rb +11 -0
  255. data/plugins/synced_folders/smb/cap/mount_options.rb +56 -0
  256. data/plugins/synced_folders/smb/plugin.rb +20 -0
  257. data/plugins/synced_folders/smb/synced_folder.rb +2 -2
  258. data/plugins/synced_folders/unix_mount_helpers.rb +14 -0
  259. data/scripts/website_push_www.sh +1 -1
  260. data/templates/commands/init/Vagrantfile.min.erb +3 -0
  261. data/templates/guests/arch/{network_dhcp.erb → default_network/network_dhcp.erb} +0 -0
  262. data/templates/guests/arch/{network_static.erb → default_network/network_static.erb} +0 -0
  263. data/templates/guests/arch/{network_static6.erb → default_network/network_static6.erb} +0 -0
  264. data/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
  265. data/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
  266. data/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
  267. data/templates/guests/linux/etc_fstab.erb +6 -0
  268. data/templates/guests/nixos/network.erb +5 -6
  269. data/templates/locales/en.yml +221 -5
  270. data/templates/locales/providers_docker.yml +4 -0
  271. data/templates/nfs/exports_darwin.erb +1 -1
  272. data/vagrant.gemspec +14 -20
  273. data/version.txt +1 -1
  274. metadata +5092 -8978
  275. data/lib/vagrant/action/builtin/after_trigger.rb +0 -31
  276. data/lib/vagrant/action/builtin/before_trigger.rb +0 -28
  277. data/plugins/commands/login/client.rb +0 -253
  278. data/plugins/commands/login/command.rb +0 -137
  279. data/plugins/commands/login/errors.rb +0 -24
  280. data/plugins/commands/login/locales/en.yml +0 -49
  281. data/plugins/provisioners/docker/cap/redhat/docker_start_service.rb +0 -16
  282. data/scripts/website_push_docs.sh +0 -40
@@ -30,7 +30,9 @@ module VagrantPlugins
30
30
  if !machine.config.nfs.functional
31
31
  return false
32
32
  end
33
- return true if machine.env.host.capability(:nfs_installed)
33
+ if machine.env.host.capability?(:nfs_installed)
34
+ return true if machine.env.host.capability(:nfs_installed)
35
+ end
34
36
  return false if !raise_error
35
37
  raise Vagrant::Errors::NFSNotSupported
36
38
  end
@@ -0,0 +1,11 @@
1
+ module VagrantPlugins
2
+ module SyncedFolderSMB
3
+ module Cap
4
+ module DefaultFstabModification
5
+ def self.default_fstab_modification(machine)
6
+ return false
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,56 @@
1
+ require_relative "../../unix_mount_helpers"
2
+
3
+ module VagrantPlugins
4
+ module SyncedFolderSMB
5
+ module Cap
6
+ module MountOptions
7
+ extend VagrantPlugins::SyncedFolder::UnixMountHelpers
8
+
9
+ MOUNT_TYPE = "cifs".freeze
10
+
11
+ # Returns mount options for a smb synced folder
12
+ #
13
+ # @param [Machine] machine
14
+ # @param [String] name of mount
15
+ # @param [String] path of mount on guest
16
+ # @param [Hash] hash of mount options
17
+ def self.mount_options(machine, name, guest_path, options)
18
+ mount_options = options.fetch(:mount_options, [])
19
+ options[:smb_id] ||= name
20
+ detected_ids = detect_owner_group_ids(machine, guest_path, mount_options, options)
21
+ mount_uid = detected_ids[:uid]
22
+ mount_gid = detected_ids[:gid]
23
+
24
+ mnt_opts = []
25
+ if machine.env.host.capability?(:smb_mount_options)
26
+ mnt_opts += machine.env.host.capability(:smb_mount_options)
27
+ else
28
+ mnt_opts << "sec=ntlmssp"
29
+ end
30
+
31
+ mnt_opts << "credentials=/etc/smb_creds_#{options[:smb_id]}"
32
+ mnt_opts << "uid=#{mount_uid}"
33
+ mnt_opts << "gid=#{mount_gid}"
34
+ if !ENV['VAGRANT_DISABLE_SMBMFSYMLINKS']
35
+ mnt_opts << "mfsymlinks"
36
+ end
37
+ mnt_opts << "_netdev"
38
+ mnt_opts = merge_mount_options(mnt_opts, options[:mount_options] || [])
39
+ mnt_opts << "nofail"
40
+ mount_options = mnt_opts.join(",")
41
+ return mount_options, mount_uid, mount_gid
42
+ end
43
+
44
+ def self.mount_type(machine)
45
+ return MOUNT_TYPE
46
+ end
47
+
48
+ def self.mount_name(machine, name, data)
49
+ data[:smb_host] ||= machine.guest.capability(
50
+ :choose_addressable_ip_addr, candidate_ips)
51
+ "//#{data[:smb_host]}/#{data[:smb_id]}"
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -23,6 +23,26 @@ module VagrantPlugins
23
23
  SyncedFolder
24
24
  end
25
25
 
26
+ synced_folder_capability("smb", "default_fstab_modification") do
27
+ require_relative "cap/default_fstab_modification"
28
+ Cap::DefaultFstabModification
29
+ end
30
+
31
+ synced_folder_capability("smb", "mount_options") do
32
+ require_relative "cap/mount_options"
33
+ Cap::MountOptions
34
+ end
35
+
36
+ synced_folder_capability("smb", "mount_name") do
37
+ require_relative "cap/mount_options"
38
+ Cap::MountOptions
39
+ end
40
+
41
+ synced_folder_capability("smb", "mount_type") do
42
+ require_relative "cap/mount_options"
43
+ Cap::MountOptions
44
+ end
45
+
26
46
  protected
27
47
 
28
48
  def self.init!
@@ -57,7 +57,7 @@ module VagrantPlugins
57
57
  smb_username = username if username != ""
58
58
  modify_username = true
59
59
  else
60
- smb_username = machine.ui.ask("Username: ")
60
+ smb_username = machine.ui.ask("Username (user[@domain]): ")
61
61
  end
62
62
 
63
63
  smb_password = machine.ui.ask("Password (will be hidden): ", echo: false)
@@ -66,7 +66,7 @@ module VagrantPlugins
66
66
  if machine.env.host.capability?(:smb_validate_password)
67
67
  Vagrant::Util::CredentialScrubber.sensitive(smb_password)
68
68
  auth_success = machine.env.host.capability(:smb_validate_password,
69
- smb_username, smb_password)
69
+ machine, smb_username, smb_password)
70
70
  end
71
71
 
72
72
  break if auth_success
@@ -100,6 +100,20 @@ module VagrantPlugins
100
100
  EOH
101
101
  end
102
102
 
103
+ def merge_mount_options(base, overrides)
104
+ base = base.join(",").split(",")
105
+ overrides = overrides.join(",").split(",")
106
+ b_kv = Hash[base.map{|item| item.split("=", 2) }]
107
+ o_kv = Hash[overrides.map{|item| item.split("=", 2) }]
108
+ merged = {}.tap do |opts|
109
+ (b_kv.keys + o_kv.keys).uniq.each do |key|
110
+ opts[key] = o_kv.fetch(key, b_kv[key])
111
+ end
112
+ end
113
+ merged.map do |key, value|
114
+ [key, value].compact.join("=")
115
+ end
116
+ end
103
117
  end
104
118
  end
105
119
  end
@@ -34,7 +34,7 @@ git add .
34
34
  git commit -q -m "Deploy by $USER"
35
35
 
36
36
  git remote add heroku git@heroku.com:vagrantup-www-2.git
37
- git push -f heroku master
37
+ git push -f heroku main
38
38
 
39
39
  # Cleanup the deploy
40
40
  rm -rf $DEPLOY
@@ -1,3 +1,6 @@
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
1
4
  Vagrant.configure("2") do |config|
2
5
  config.vm.box = "<%= box_name %>"
3
6
  <% if box_version -%>
@@ -0,0 +1,6 @@
1
+ [Match]
2
+ Name=<%= options[:device] %>
3
+
4
+ [Network]
5
+ Description=A basic DHCP ethernet connection
6
+ DHCP=ipv4
@@ -0,0 +1,9 @@
1
+ [Match]
2
+ Name=<%= options[:device] %>
3
+
4
+ [Network]
5
+ Description=A basic static ethernet connection
6
+ Address=<%= options[:ip]%>/<%= options[:netmask] %>
7
+ <% if options[:gateway] -%>
8
+ Gateway=<%= options[:gateway] %>
9
+ <% end -%>
@@ -0,0 +1,9 @@
1
+ [Match]
2
+ Name=<%= options[:device] %>
3
+
4
+ [Network]
5
+ Description=A basic static ethernet connection
6
+ Address=<%= options[:ip]%>/<%= options[:netmask] %>
7
+ <% if options[:gateway] -%>
8
+ Gateway=<%= options[:gateway] %>
9
+ <% end -%>
@@ -0,0 +1,6 @@
1
+ #VAGRANT-BEGIN
2
+ # The contents below are automatically generated by Vagrant. Do not modify.
3
+ <% folders.each do |opts| %>
4
+ <%= opts[:name] %> <%= opts[:mount_point] %> <%= opts[:mount_type] %> <%= opts[:mount_options] || 'default' %> <%= opts[:dump] || 0 %> <%= opts[:fsck] || 0 %>
5
+ <%end%>
6
+ #VAGRANT-END
@@ -1,16 +1,15 @@
1
1
  { config, pkgs, ... }:
2
2
  {
3
- networking.interfaces = [
3
+ networking.interfaces = {
4
4
  <% networks.select {|n| n[:device]}.each do |network| %>
5
- {
6
- name = "<%= network[:device] %>";
5
+ <%= network[:device] %>.ipv4.addresses = [{
7
6
  <% if network[:type] == :static %>
8
- ipAddress = "<%= network[:ip] %>";
7
+ address = "<%= network[:ip] %>";
9
8
  <% end %>
10
9
  <% if network[:prefix_length] %>
11
10
  prefixLength = <%= network[:prefix_length] %>;
12
11
  <% end %>
13
- }
12
+ }];
14
13
  <% end %>
15
- ];
14
+ };
16
15
  }
@@ -127,6 +127,17 @@ en:
127
127
  Warning: Chef run list is empty. This may not be what you want.
128
128
  cli_interrupt: |-
129
129
  Exiting due to interrupt.
130
+ cloud_init_waiting: Waiting for cloud init to finish running
131
+ container_pulling_single: |-
132
+ -- Image: %{name}
133
+ container_building_single: |-
134
+ -- Path: %{path}
135
+ container_running: |-
136
+ -- Container: %{name}
137
+ container_restarting_container_args: |-
138
+ -- Detected changes to container '%{name}' args, restarting...
139
+ container_restarting_container_image: |-
140
+ -- Detected newer image for container '%{name}', restarting...
130
141
  docker_auto_start_not_available: |-
131
142
  Unable to configure automatic restart of Docker containers on
132
143
  the guest machine
@@ -154,6 +165,10 @@ en:
154
165
  -- Detected newer image for container '%{name}', restarting...
155
166
  docker_starting_containers: |-
156
167
  Starting Docker containers...
168
+ hyperv_enable_enhanced_session: |-
169
+ Setting VM Enhanced session transport type to HvSocket
170
+ hyperv_disable_enhanced_session: |-
171
+ Setting VM Enhanced session transport type to disabled/default (VMBus)
157
172
  inserted_key: |-
158
173
  Key inserted! Disconnecting and reconnecting using new SSH key...
159
174
  inserting_insecure_detected: |-
@@ -301,7 +316,7 @@ en:
301
316
  Vagrant has been configured to abort. Vagrant will terminate
302
317
  after remaining running actions have completed...
303
318
  start: |-
304
- Running %{type} triggers %{stage} %{action} ...
319
+ Running %{type} triggers %{stage} %{name} ...
305
320
  fire_with_name: |-
306
321
  Running trigger: %{name}...
307
322
  fire: |-
@@ -711,6 +726,10 @@ en:
711
726
  or transient network issues. The reported error is:
712
727
 
713
728
  %{message}
729
+ source_spec_not_found: |-
730
+ Vagrant failed to properly initialize its internal library
731
+ dependencies. Please try running the command again. If this
732
+ error persists, please report a bug.
714
733
  cant_read_mac_addresses: |-
715
734
  The provider you are using ('%{provider}') doesn't support the
716
735
  "nic_mac_addresses" provider capability which is required
@@ -774,6 +793,11 @@ en:
774
793
  Additionally, the created environment must be started with a provider
775
794
  matching this provider. For example, if you're using VirtualBox,
776
795
  the clone environment must also be using VirtualBox.
796
+ cloud_init_not_found: |-
797
+ cloud-init is not found. Please ensure that cloud-init is installed and
798
+ available on path for guest '%{guest_name}'.
799
+ cloud_init_command_failed: |-
800
+ cloud init command '%{cmd}' failed on guest '%{guest_name}'.
777
801
  command_deprecated: |-
778
802
  The command 'vagrant %{name}' has been deprecated and is no longer functional
779
803
  within Vagrant.
@@ -818,6 +842,9 @@ en:
818
842
  they'll have to be destroyed manually.
819
843
 
820
844
  Path: %{path}
845
+ create_iso_host_cap_not_found: |-
846
+ Vagrant cannot create an iso due to the host capability for creating isos not existing.
847
+ Vagrant will now exit.
821
848
  destroy_requires_force: |-
822
849
  Destroy doesn't have a TTY to ask for confirmation. Please pass the
823
850
  `--force` flag to force a destroy, otherwise attach a TTY so that
@@ -925,6 +952,18 @@ en:
925
952
  ("%{value}") could not be found. Please verify that the plugin is
926
953
  installed which implements this host and that the value you used
927
954
  for `config.vagrant.host` is correct.
955
+ iso_build_failed: |-
956
+ Failed to build iso image. The following command returned an error:
957
+
958
+ %{cmd}
959
+
960
+ Stdout from the command:
961
+
962
+ %{stdout}
963
+
964
+ Stderr from the command:
965
+
966
+ %{stderr}
928
967
  hyperv_virtualbox_error: |-
929
968
  Hyper-V and VirtualBox cannot be used together and will result in a
930
969
  system crash. Vagrant will now exit. Please disable Hyper-V if you wish
@@ -996,6 +1035,9 @@ en:
996
1035
  the proper location.
997
1036
  multi_vm_target_required: |-
998
1037
  This command requires a specific VM name to target in a multi-VM environment.
1038
+ netplan_no_available_renderers: |-
1039
+ No renderers compatible with netplan are available on guest. Please install
1040
+ a compatible renderer.
999
1041
  net_ssh_exception: |-
1000
1042
  An error occurred in the underlying SSH library that Vagrant uses.
1001
1043
  The error message is shown below. In many cases, errors from this
@@ -1113,6 +1155,10 @@ en:
1113
1155
  The license file to install could not be found. Please verify
1114
1156
  the path you gave is correct. The path to the license file given
1115
1157
  was: '%{path}'
1158
+ plugin_install_failed: |-
1159
+ Vagrant was unable to install the requested plugin: '%{name}'
1160
+ Please try to install this plugin again. If Vagrant is still unable
1161
+ to install the requested plugin, please report this error.
1116
1162
  plugin_install_space: |-
1117
1163
  The directory where plugins are installed (the Vagrant home directory)
1118
1164
  has a space in it. On Windows, there is a bug in Ruby when compiling
@@ -1192,6 +1238,23 @@ en:
1192
1238
  following command:
1193
1239
 
1194
1240
  vagrant plugin install --local
1241
+ plugin_needs_developer_tools: |-
1242
+ Vagrant failed to install the requested plugin because development tools
1243
+ are required for installation but are not currently installed on this
1244
+ machine. Please install development tools and then try this command
1245
+ again.
1246
+ plugin_missing_library: |-
1247
+ Vagrant failed to install the requested plugin because it depends
1248
+ on a library which is not currently installed on this system. The
1249
+ following library is required by the '%{name}' plugin:
1250
+
1251
+ %{library}
1252
+
1253
+ Please install the library and then run the command again.
1254
+ plugin_missing_ruby_dev: |-
1255
+ Vagrant failed to install the requested plugin because the Ruby header
1256
+ files could not be found. Install the ruby development package for your
1257
+ system and then run this command again.
1195
1258
  powershell_not_found: |-
1196
1259
  Failed to locate the powershell executable on the available PATH. Please
1197
1260
  ensure powershell is installed and available on the local PATH, then
@@ -1414,6 +1477,11 @@ en:
1414
1477
  usually indicates that SSH within the guest machine was unable to
1415
1478
  properly start up. Please boot the VM in GUI mode to check whether
1416
1479
  it is booting properly.
1480
+ ssh_no_exit_status: |-
1481
+ The SSH command completed, but Vagrant did not receive an exit status.
1482
+ This indicates that the command was terminated unexpectedly. Please
1483
+ check that the VM has sufficient memory to run the command and that no
1484
+ processes were killed by the guest operating system.
1417
1485
  ssh_no_route: |-
1418
1486
  While attempting to connect with SSH, a "no route to host" (EHOSTUNREACH)
1419
1487
  error was received. Please verify your network settings are correct
@@ -1525,7 +1593,8 @@ en:
1525
1593
  triggers_no_stage_given: |-
1526
1594
  The incorrect stage was given to the trigger plugin:
1527
1595
  Guest: %{guest_name}
1528
- Action: %{action}
1596
+ Name: %{name}
1597
+ Type: %{type}
1529
1598
  Stage: %{stage}
1530
1599
 
1531
1600
  This is an internal error that should be reported as a bug.
@@ -1641,6 +1710,30 @@ en:
1641
1710
  4.2.14 contains a critical bug which prevents it from working with
1642
1711
  Vagrant. VirtualBox 4.2.16+ fixes this problem. Please upgrade
1643
1712
  VirtualBox.
1713
+ virtualbox_disks_controller_not_found: |-
1714
+ Vagrant expected to find a storage controller called '%{name}',
1715
+ but there is no controller with this name attached to the current VM.
1716
+ If you have changed or removed any storage controllers, please restore
1717
+ them to their previous configuration.
1718
+ virtualbox_disks_no_supported_controllers: |-
1719
+ Vagrant was unable to detect a disk controller with any of the
1720
+ following supported types:
1721
+
1722
+ %{supported_types}
1723
+
1724
+ Please add one of the supported controller types in order to use the
1725
+ disk configuration feature.
1726
+ virtualbox_disks_defined_exceed_limit: |-
1727
+ VirtualBox only allows up to %{limit} disks to be attached to the
1728
+ storage controller '%{name}'. Please remove some disks from your disk
1729
+ configuration, or attach a new storage controller.
1730
+ virtualbox_disks_primary_not_found: |-
1731
+ Vagrant was not able to detect a primary disk attached to the main
1732
+ controller. Vagrant Disks requires that the primary disk be attached
1733
+ to the first port of the main controller in order to manage it.
1734
+ virtualbox_disks_unsupported_controller: |-
1735
+ An disk operation was attempted on the controller '%{controller_name}',
1736
+ but Vagrant doesn't support this type of disk controller.
1644
1737
  virtualbox_guest_property_not_found: |-
1645
1738
  Could not find a required VirtualBox guest property:
1646
1739
  %{guest_property}
@@ -1802,6 +1895,13 @@ en:
1802
1895
  #-------------------------------------------------------------------------------
1803
1896
  config:
1804
1897
  disk:
1898
+ dvd_type_file_required:
1899
+ A 'file' option is required when defining a disk of type ':dvd' for guest '%{machine}'.
1900
+ dvd_type_primary: |-
1901
+ Disks of type ':dvd' cannot be defined as a primary disks. Please
1902
+ remove the 'primary' argument for disk '%{name}' on guest '%{machine}'.
1903
+ invalid_ext: |-
1904
+ Disk type '%{ext}' is not a valid disk extension for '%{name}'. Please pick one of the following supported disk types: %{exts}
1805
1905
  invalid_type: |-
1806
1906
  Disk type '%{type}' is not a valid type. Please pick one of the following supported disk types: %{types}
1807
1907
  invalid_size: |-
@@ -1812,6 +1912,8 @@ en:
1812
1912
  Disk file '%{file_path}' for disk '%{name}' on machine '%{machine}' does not exist.
1813
1913
  missing_provider: |-
1814
1914
  Guest '%{machine}' using provider '%{provider_name}' has provider specific config options for a provider other than '%{provider_name}'. These provider config options will be ignored for this guest
1915
+ no_name_set: |-
1916
+ A 'name' option is required when defining a disk for guest '%{machine}'.
1815
1917
  common:
1816
1918
  bad_field: "The following settings shouldn't exist: %{fields}"
1817
1919
  chef:
@@ -1853,6 +1955,11 @@ en:
1853
1955
  The key `paranoid` is deprecated. Please use `verify_host_key`. Supported
1854
1956
  values are exactly the same, only the name of the option has changed.
1855
1957
  ssh_config_missing: "`config` file must exist: %{path}"
1958
+ connect_timeout_invalid_type: |-
1959
+ The `connect_timeout` key only accepts values of Integer type. Received
1960
+ `%{given}` type which cannot be converted to an Integer type.
1961
+ connect_timeout_invalid_value: |-
1962
+ The `connect_timeout` key only accepts values greater than 1 (received `%{given}`)
1856
1963
  triggers:
1857
1964
  bad_trigger_type: |-
1858
1965
  The type '%{type}' defined for trigger '%{trigger}' is not valid. Must be one of the following types: '%{types}'
@@ -1905,8 +2012,14 @@ en:
1905
2012
  Checksum type specified but "box_download_checksum" is blank
1906
2013
  box_download_checksum_notblank: |-
1907
2014
  Checksum specified but must also specify "box_download_checksum_type"
2015
+ box_empty: "Box value for guest '%{machine_name}' is an empty string."
1908
2016
  box_missing: "A box must be specified."
2017
+ box_download_options_type: |-
2018
+ Found "box_download_options" specified as type '%{type}', should be a Hash
2019
+ box_download_options_not_converted: |-
2020
+ Something went wrong converting VM config `box_download_options`. Value for provided key '%{missing_key}' is invalid type. Should be String or Bool
1909
2021
  clone_and_box: "Only one of clone or box can be specified."
2022
+ config_type: "Found '%{option}' specified as type '%{given}', should be '%{required}'"
1910
2023
  hostname_invalid_characters: |-
1911
2024
  The hostname set for the VM '%{name}' should only contain letters, numbers,
1912
2025
  hyphens or dots. It cannot start with a hyphen or dot.
@@ -1914,8 +2027,21 @@ en:
1914
2027
  Ignoring provider config for validation...
1915
2028
  multiple_primary_disks_error: |-
1916
2029
  There are more than one primary disks defined for guest '%{name}'. Please ensure that only one disk has been defined as a primary disk.
2030
+ multiple_disk_files_error: |-
2031
+ The following disk files are used multiple times in the disk
2032
+ configuration for the VM '%{name}':
2033
+
2034
+ %{disk_files}
2035
+
2036
+ Each disk file may only be attached to a VM once.
1917
2037
  multiple_disk_names_error: |-
1918
- Duplicate disk names defined: '%{name}'. Disk names must be unique.
2038
+ The following disks names are defined multiple times in the disk
2039
+ configuration for the VM '%{name}':
2040
+
2041
+ %{disk_names}
2042
+
2043
+ Disk names must be unique.
2044
+ multiple_networks_set_hostname: "Multiple networks have set `:hostname`"
1919
2045
  name_invalid: |-
1920
2046
  The sub-VM name '%{name}' is invalid. Please don't use special characters.
1921
2047
  network_ip_ends_in_one: |-
@@ -1934,6 +2060,7 @@ en:
1934
2060
  Forwarded port definitions require a "host" and "guest" value
1935
2061
  network_type_invalid: |-
1936
2062
  Network type '%{type}' is invalid. Please use a valid network type.
2063
+ network_with_hostname_must_set_ip: "Network specified with `:hostname` must provide a static ip"
1937
2064
  provisioner_not_found: |-
1938
2065
  The '%{name}' provisioner could not be found.
1939
2066
  shared_folder_guestpath_duplicate: |-
@@ -1943,6 +2070,12 @@ en:
1943
2070
  The shared folder guest path must be absolute: %{path}
1944
2071
  shared_folder_hostpath_missing: |-
1945
2072
  The host path of the shared folder is missing: %{path}
2073
+ shared_folder_invalid_option_type: |-
2074
+ The type '%{type}' is not a valid synced folder type. If 'type' is not
2075
+ specified, Vagrant will automatically choose the best synced folder
2076
+ option for your guest. Otherwise, please pick from the following available options:
2077
+
2078
+ %{options}
1946
2079
  shared_folder_nfs_owner_group: |-
1947
2080
  Shared folders that have NFS enabled do not support owner/group
1948
2081
  attributes. Host path: %{path}
@@ -2158,11 +2291,62 @@ en:
2158
2291
  #-------------------------------------------------------------------------------
2159
2292
  # Translations for Vagrant middleware actions
2160
2293
  #-------------------------------------------------------------------------------
2294
+ cap:
2295
+ cleanup_disks:
2296
+ disk_cleanup: |-
2297
+ Disk '%{name}' no longer exists in Vagrant config. Removing and closing medium from guest...
2298
+ disk_not_found: |-
2299
+ Disk '%{name}' could not be found, and could not be properly removed. Please remove this disk manually if it still exists
2300
+ configure_disks:
2301
+ create_disk: |-
2302
+ Disk '%{name}' not found in guest. Creating and attaching disk to guest...
2303
+ floppy_not_supported: "Floppy disk configuration not yet supported. Skipping disk '%{name}'..."
2304
+ shrink_size_not_supported: |-
2305
+ VirtualBox does not support shrinking disk sizes. Cannot shrink '%{name}' disks size.
2306
+ resize_disk: |-
2307
+ Disk '%{name}' needs to be resized. Resizing disk...
2308
+ recovery_from_resize: |-
2309
+ Vagrant has encountered an exception while trying to resize a disk. It will now attempt to reattach the original disk, as to prevent any data loss.
2310
+ The original disk is located at %{location}
2311
+ If Vagrant fails to reattach the original disk, it is recommended that you open the VirtualBox GUI and navigate to the current guests settings for '%{name}' and look at the 'storage' section. Here is where you can reattach a missing disk if Vagrant fails to do so...
2312
+ recovery_attached_disks: |-
2313
+ Disk has been reattached. Vagrant will now continue on an raise the exception receieved
2314
+ start: "Configuring storage mediums..."
2315
+ cloud_init:
2316
+ content_type_not_set: |-
2317
+ 'content_type' must be defined for a cloud_init config. Guest '%{machine}'
2318
+ has not defined a 'content_type' for its cloud_init config. Valid options
2319
+ supported by Vagrant are listed below:
2320
+
2321
+ %{accepted_types}
2322
+ incorrect_content_type: |-
2323
+ Content-type "%{content_type}" is not supported by Vagrant and
2324
+ cloud-init on machine '%{machine}'. Valid options supported by Vagrant are
2325
+ listed below:
2326
+
2327
+ %{accepted_types}
2328
+ incorrect_inline_type: |-
2329
+ The inline config cloud_init option for guest '%{machine}' is of type '%{type}', but
2330
+ should be a String.
2331
+ incorrect_path_type: |-
2332
+ The path '%{path}' given for guest '%{machine}' is of type '%{type}'.
2333
+ Config option 'path' must be a String.
2334
+ incorrect_type_set: |-
2335
+ The type '%{type}' defined for a cloud_init config with guest '%{machine}'
2336
+ is not a valid type. Currently, Vagrant only supports type: '%{default_type}'.
2337
+ path_and_inline_set: |-
2338
+ Guest '%{machine}' defines both a 'path' and 'inline' for its cloud_init config,
2339
+ however only one config option should be defined for cloud_init.
2340
+ path_invalid: |-
2341
+ The path '%{path}' defined for guest '%{machine}' cloud_init config was
2342
+ not found on the system.
2161
2343
  actions:
2162
2344
  runner:
2163
2345
  waiting_cleanup: "Waiting for cleanup before exiting..."
2164
2346
  exit_immediately: "Exiting immediately, without cleanup!"
2165
2347
  disk:
2348
+ cleanup_provider_unsupported: |-
2349
+ Guest provider '%{provider}' does not support the cleaning up disks, and will not attempt to clean up attached disks on the guest..
2166
2350
  provider_unsupported: |-
2167
2351
  Guest provider '%{provider}' does not support the disk feature, and will not use the disk configuration defined.
2168
2352
  vm:
@@ -2228,6 +2412,8 @@ en:
2228
2412
  create_master:
2229
2413
  failure: |-
2230
2414
  Failed to create lock-file for master VM creation for box %{box}.
2415
+ cloud_init_user_data_setup: |-
2416
+ Preparing user data for cloud-init...
2231
2417
  customize:
2232
2418
  failure: |-
2233
2419
  A customization command failed:
@@ -2283,6 +2469,13 @@ en:
2283
2469
  forwarding: Forwarding ports...
2284
2470
  forwarding_entry: |-
2285
2471
  %{guest_port} (guest) => %{host_port} (host) (adapter %{adapter})
2472
+ host_ip_not_found: |-
2473
+ You are trying to forward a host IP that does not exist. Please set `host_ip`
2474
+ to the address of an existing IPv4 network interface, or remove the option
2475
+ from your port forward configuration.
2476
+
2477
+ VM: %{name}
2478
+ Host IP: %{host_ip}
2286
2479
  non_nat: |-
2287
2480
  VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
2288
2481
  forwards on this adapter.
@@ -2365,6 +2558,17 @@ en:
2365
2558
  For more information see:
2366
2559
  RFC5661: https://tools.ietf.org/html/rfc5661#section-2.9.1
2367
2560
  RFC7530: https://tools.ietf.org/html/rfc7530#section-3.1
2561
+ smb:
2562
+ mfsymlink_warning: |-
2563
+ Vagrant is currently configured to mount SMB folders with the
2564
+ `mfsymlink` option enabled. This is equivalent to adding the
2565
+ following to your Vagrantfile:
2566
+
2567
+ config.vm.synced_folder '/host/path', '/guest/path', type: "smb", mount_options: ['mfsymlink']
2568
+
2569
+ This option may be globally disabled with an environment variable:
2570
+
2571
+ VAGRANT_DISABLE_SMBMFSYMLINKS=1
2368
2572
 
2369
2573
  provision:
2370
2574
  beginning: "Running provisioner: %{provisioner}..."
@@ -2526,7 +2730,7 @@ en:
2526
2730
  missing_provisioner_name: |-
2527
2731
  Could not find provisioner name `%{name}` defined for machine `%{machine_name}` to run provisioner "%{provisioner_name}" `%{action}`.
2528
2732
  wrong_type: |-
2529
- Provisioner option `%{opt}` is not set as a valid type. Must be a string.
2733
+ Provisioner option `%{opt}` is not set as a valid type. Must be a %{type}.
2530
2734
  chef:
2531
2735
  chef_not_detected: |-
2532
2736
  The chef binary (either `chef-solo` or `chef-client`) was not found on
@@ -2590,7 +2794,7 @@ en:
2590
2794
  server_url_required: |-
2591
2795
  Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
2592
2796
  URL of your chef server. Examples include "http://12.12.12.12:4000" and
2593
- "http://myserver.com:4000" (the port of course can be different, but 4000 is the default)
2797
+ "http://example.com:4000" (the port of course can be different, but 4000 is the default)
2594
2798
  server_validation_key_required: |-
2595
2799
  Chef server provisioning requires that the `config.chef.validation_key_path` configuration
2596
2800
  be set to a path on your local machine of the validation key used to register the
@@ -2784,6 +2988,12 @@ en:
2784
2988
  not_running: "Docker is not running on the guest VM."
2785
2989
  install_failed: "Docker installation failed."
2786
2990
 
2991
+ podman:
2992
+ wrong_provisioner: |-
2993
+ The Podman post-install provisioner cannot also take a Podman post-install
2994
+ provisioner
2995
+ install_failed: "Podman installation failed."
2996
+
2787
2997
  salt:
2788
2998
  minion_config_nonexist: |-
2789
2999
  The specified minion_config '%{missing_config_file}' file could not be found.
@@ -2805,3 +3015,9 @@ en:
2805
3015
  pushes:
2806
3016
  file:
2807
3017
  no_destination: "File destination must be specified."
3018
+
3019
+ autocomplete:
3020
+ installed: |-
3021
+ Autocomplete installed at paths:
3022
+ - %{paths}
3023
+ not_installed: "Autocomplete not installed"