vagrant 1.0.7 → 2.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1436) hide show
  1. checksums.yaml +7 -0
  2. data/.copywrite.hcl +15 -0
  3. data/.gitignore +57 -21
  4. data/.vimrc +5 -0
  5. data/CHANGELOG.md +3795 -6
  6. data/Gemfile +10 -1
  7. data/LICENSE +92 -21
  8. data/README.md +32 -67
  9. data/RELEASE.md +11 -0
  10. data/Rakefile +5 -1
  11. data/Vagrantfile +31 -0
  12. data/bin/vagrant +239 -29
  13. data/contrib/README.md +8 -3
  14. data/contrib/bash/completion.sh +190 -0
  15. data/contrib/emacs/vagrant.el +3 -0
  16. data/contrib/st/Ruby.sublime-settings +6 -0
  17. data/contrib/sudoers/linux-fedora +7 -0
  18. data/contrib/sudoers/linux-suse +6 -0
  19. data/contrib/sudoers/linux-ubuntu +8 -0
  20. data/contrib/sudoers/osx +10 -0
  21. data/contrib/zsh/_vagrant +738 -0
  22. data/contrib/zsh/generate_zsh_completion.rb +168 -0
  23. data/ext/vagrant/vagrant_ssl/extconf.rb +24 -0
  24. data/ext/vagrant/vagrant_ssl/vagrant_ssl.c +37 -0
  25. data/ext/vagrant/vagrant_ssl/vagrant_ssl.h +19 -0
  26. data/keys/README.md +15 -9
  27. data/keys/vagrant.key.ed25519 +7 -0
  28. data/keys/vagrant.key.rsa +27 -0
  29. data/keys/vagrant.pub +1 -0
  30. data/keys/vagrant.pub.ed25519 +1 -0
  31. data/keys/vagrant.pub.rsa +1 -0
  32. data/lib/vagrant/action/builder.rb +263 -35
  33. data/lib/vagrant/action/builtin/box_add.rb +638 -0
  34. data/lib/vagrant/action/builtin/box_check_outdated.rb +116 -0
  35. data/lib/vagrant/action/builtin/box_remove.rb +181 -0
  36. data/lib/vagrant/action/builtin/box_update.rb +23 -0
  37. data/lib/vagrant/action/builtin/call.rb +69 -0
  38. data/lib/vagrant/action/builtin/cleanup_disks.rb +59 -0
  39. data/lib/vagrant/action/builtin/cloud_init_setup.rb +125 -0
  40. data/lib/vagrant/action/builtin/cloud_init_wait.rb +35 -0
  41. data/lib/vagrant/action/builtin/config_validate.rb +33 -0
  42. data/lib/vagrant/action/builtin/confirm.rb +51 -0
  43. data/lib/vagrant/action/builtin/delayed.rb +29 -0
  44. data/lib/vagrant/action/builtin/destroy_confirm.rb +24 -0
  45. data/lib/vagrant/action/builtin/disk.rb +55 -0
  46. data/lib/vagrant/action/builtin/env_set.rb +27 -0
  47. data/lib/vagrant/action/builtin/graceful_halt.rb +88 -0
  48. data/lib/vagrant/action/builtin/handle_box.rb +111 -0
  49. data/lib/vagrant/action/builtin/handle_box_url.rb +17 -0
  50. data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +300 -0
  51. data/lib/vagrant/action/builtin/has_provisioner.rb +39 -0
  52. data/lib/vagrant/action/builtin/is_env_set.rb +25 -0
  53. data/lib/vagrant/action/builtin/is_state.rb +35 -0
  54. data/lib/vagrant/action/builtin/lock.rb +60 -0
  55. data/lib/vagrant/action/builtin/message.rb +29 -0
  56. data/lib/vagrant/action/builtin/mixin_provisioners.rb +159 -0
  57. data/lib/vagrant/action/builtin/mixin_synced_folders.rb +267 -0
  58. data/lib/vagrant/action/builtin/prepare_clone.rb +41 -0
  59. data/lib/vagrant/action/builtin/provision.rb +146 -0
  60. data/lib/vagrant/action/builtin/provisioner_cleanup.rb +57 -0
  61. data/lib/vagrant/action/builtin/set_hostname.rb +34 -0
  62. data/lib/vagrant/action/builtin/ssh_exec.rb +47 -0
  63. data/lib/vagrant/action/builtin/ssh_run.rb +88 -0
  64. data/lib/vagrant/action/builtin/synced_folder_cleanup.rb +36 -0
  65. data/lib/vagrant/action/builtin/synced_folders.rb +154 -0
  66. data/lib/vagrant/action/builtin/trigger.rb +40 -0
  67. data/lib/vagrant/action/builtin/wait_for_communicator.rb +82 -0
  68. data/lib/vagrant/action/general/package.rb +176 -29
  69. data/lib/vagrant/action/general/package_setup_files.rb +54 -0
  70. data/lib/vagrant/action/general/package_setup_folders.rb +40 -0
  71. data/lib/vagrant/action/hook.rb +163 -0
  72. data/lib/vagrant/action/primary_runner.rb +18 -0
  73. data/lib/vagrant/action/runner.rb +72 -13
  74. data/lib/vagrant/action/warden.rb +54 -20
  75. data/lib/vagrant/action.rb +74 -49
  76. data/lib/vagrant/alias.rb +59 -0
  77. data/lib/vagrant/batch_action.rb +181 -0
  78. data/lib/vagrant/box.rb +242 -26
  79. data/lib/vagrant/box_collection.rb +540 -35
  80. data/lib/vagrant/box_metadata.rb +275 -0
  81. data/lib/vagrant/bundler.rb +936 -0
  82. data/lib/vagrant/capability_host.rb +180 -0
  83. data/lib/vagrant/cli.rb +75 -29
  84. data/lib/vagrant/config/loader.rb +241 -45
  85. data/lib/vagrant/config/v1/dummy_config.rb +16 -0
  86. data/lib/vagrant/config/v1/loader.rb +108 -0
  87. data/lib/vagrant/config/v1/root.rb +63 -0
  88. data/lib/vagrant/config/v1.rb +12 -0
  89. data/lib/vagrant/config/v2/dummy_config.rb +60 -0
  90. data/lib/vagrant/config/v2/loader.rb +154 -0
  91. data/lib/vagrant/config/v2/root.rb +122 -0
  92. data/lib/vagrant/config/v2/util.rb +24 -0
  93. data/lib/vagrant/config/v2.rb +13 -0
  94. data/lib/vagrant/config/version_base.rb +83 -0
  95. data/lib/vagrant/config.rb +26 -11
  96. data/lib/vagrant/environment.rb +1019 -311
  97. data/lib/vagrant/errors.rb +853 -140
  98. data/lib/vagrant/guest.rb +68 -14
  99. data/lib/vagrant/host.rb +19 -0
  100. data/lib/vagrant/machine.rb +672 -0
  101. data/lib/vagrant/machine_index.rb +527 -0
  102. data/lib/vagrant/machine_state.rb +54 -0
  103. data/lib/vagrant/patches/builder/mkmf.rb +116 -0
  104. data/lib/vagrant/patches/fake_ftp.rb +28 -0
  105. data/lib/vagrant/patches/log4r.rb +54 -0
  106. data/lib/vagrant/patches/net-ssh.rb +76 -0
  107. data/lib/vagrant/patches/rubygems.rb +23 -0
  108. data/lib/vagrant/patches/timeout_error.rb +5 -0
  109. data/lib/vagrant/plugin/manager.rb +406 -0
  110. data/lib/vagrant/plugin/state_file.rb +136 -0
  111. data/lib/vagrant/plugin/v1/command.rb +171 -0
  112. data/lib/vagrant/plugin/v1/communicator.rb +101 -0
  113. data/lib/vagrant/plugin/v1/config.rb +115 -0
  114. data/lib/vagrant/plugin/v1/errors.rb +18 -0
  115. data/lib/vagrant/plugin/v1/guest.rb +95 -0
  116. data/lib/vagrant/plugin/v1/host.rb +69 -0
  117. data/lib/vagrant/plugin/v1/manager.rb +134 -0
  118. data/lib/vagrant/plugin/v1/plugin.rb +231 -0
  119. data/lib/vagrant/plugin/v1/provider.rb +71 -0
  120. data/lib/vagrant/plugin/v1/provisioner.rb +53 -0
  121. data/lib/vagrant/plugin/v1.rb +25 -0
  122. data/lib/vagrant/plugin/v2/command.rb +309 -0
  123. data/lib/vagrant/plugin/v2/communicator.rb +133 -0
  124. data/lib/vagrant/plugin/v2/components.rb +94 -0
  125. data/lib/vagrant/plugin/v2/config.rb +167 -0
  126. data/lib/vagrant/plugin/v2/errors.rb +18 -0
  127. data/lib/vagrant/plugin/v2/guest.rb +26 -0
  128. data/lib/vagrant/plugin/v2/host.rb +22 -0
  129. data/lib/vagrant/plugin/v2/manager.rb +306 -0
  130. data/lib/vagrant/plugin/v2/plugin.rb +296 -0
  131. data/lib/vagrant/plugin/v2/provider.rb +118 -0
  132. data/lib/vagrant/plugin/v2/provisioner.rb +56 -0
  133. data/lib/vagrant/plugin/v2/push.rb +30 -0
  134. data/lib/vagrant/plugin/v2/synced_folder.rb +113 -0
  135. data/lib/vagrant/plugin/v2/trigger.rb +367 -0
  136. data/lib/vagrant/plugin/v2.rb +33 -0
  137. data/lib/vagrant/plugin.rb +7 -77
  138. data/lib/vagrant/registry.rb +79 -18
  139. data/lib/vagrant/shared_helpers.rb +238 -0
  140. data/lib/vagrant/ui.rb +334 -53
  141. data/lib/vagrant/util/ansi_escape_code_remover.rb +4 -1
  142. data/lib/vagrant/util/busy.rb +4 -1
  143. data/lib/vagrant/util/caps.rb +51 -0
  144. data/lib/vagrant/util/checkpoint_client.rb +186 -0
  145. data/lib/vagrant/util/command_deprecation.rb +59 -0
  146. data/lib/vagrant/util/counter.rb +3 -0
  147. data/lib/vagrant/util/credential_scrubber.rb +74 -0
  148. data/lib/vagrant/util/curl_helper.rb +104 -0
  149. data/lib/vagrant/util/deep_merge.rb +23 -0
  150. data/lib/vagrant/util/directory.rb +22 -0
  151. data/lib/vagrant/util/downloader.rb +278 -0
  152. data/lib/vagrant/util/env.rb +56 -0
  153. data/lib/vagrant/util/experimental.rb +79 -0
  154. data/lib/vagrant/util/file_checksum.rb +47 -8
  155. data/lib/vagrant/util/file_mode.rb +3 -0
  156. data/lib/vagrant/util/file_mutex.rb +50 -0
  157. data/lib/vagrant/util/guest_hosts.rb +71 -0
  158. data/lib/vagrant/util/guest_inspection.rb +118 -0
  159. data/lib/vagrant/util/guest_networks.rb +107 -0
  160. data/lib/vagrant/util/hash_with_indifferent_access.rb +3 -0
  161. data/lib/vagrant/util/install_cli_autocomplete.rb +121 -0
  162. data/lib/vagrant/util/io.rb +53 -0
  163. data/lib/vagrant/util/ipv4_interfaces.rb +18 -0
  164. data/lib/vagrant/util/is_port_open.rb +12 -19
  165. data/lib/vagrant/util/keypair.rb +293 -0
  166. data/lib/vagrant/util/line_buffer.rb +63 -0
  167. data/lib/vagrant/util/line_ending_helpers.rb +3 -0
  168. data/lib/vagrant/util/logging_formatter.rb +70 -0
  169. data/lib/vagrant/util/map_command_options.rb +36 -0
  170. data/lib/vagrant/util/mime.rb +95 -0
  171. data/lib/vagrant/util/network_ip.rb +16 -17
  172. data/lib/vagrant/util/numeric.rb +92 -0
  173. data/lib/vagrant/util/platform.rb +695 -26
  174. data/lib/vagrant/util/powershell.rb +316 -0
  175. data/lib/vagrant/util/presence.rb +48 -0
  176. data/lib/vagrant/util/retryable.rb +11 -2
  177. data/lib/vagrant/util/safe_chdir.rb +36 -0
  178. data/lib/vagrant/util/safe_env.rb +17 -0
  179. data/lib/vagrant/util/safe_exec.rb +49 -7
  180. data/lib/vagrant/util/safe_puts.rb +5 -2
  181. data/lib/vagrant/util/scoped_hash_override.rb +47 -0
  182. data/lib/vagrant/util/shell_quote.rb +18 -0
  183. data/lib/vagrant/util/silence_warnings.rb +17 -0
  184. data/lib/vagrant/util/ssh.rb +267 -0
  185. data/lib/vagrant/util/stacked_proc_runner.rb +4 -1
  186. data/lib/vagrant/util/string_block_editor.rb +80 -0
  187. data/lib/vagrant/util/subprocess.rb +199 -81
  188. data/lib/vagrant/util/template_renderer.rb +14 -6
  189. data/lib/vagrant/util/uploader.rb +109 -0
  190. data/lib/vagrant/util/which.rb +56 -0
  191. data/lib/vagrant/util/windows_path.rb +41 -0
  192. data/lib/vagrant/util.rb +51 -0
  193. data/lib/vagrant/vagrantfile.rb +320 -0
  194. data/lib/vagrant/version.rb +5 -1
  195. data/lib/vagrant.rb +327 -144
  196. data/plugins/README.md +11 -0
  197. data/plugins/commands/autocomplete/command/install.rb +52 -0
  198. data/plugins/commands/autocomplete/command/root.rb +69 -0
  199. data/plugins/commands/autocomplete/plugin.rb +21 -0
  200. data/plugins/commands/box/command/add.rb +111 -0
  201. data/plugins/commands/box/command/download_mixins.rb +32 -0
  202. data/plugins/commands/box/command/list.rb +82 -0
  203. data/plugins/commands/box/command/outdated.rb +109 -0
  204. data/plugins/commands/box/command/prune.rb +136 -0
  205. data/plugins/commands/box/command/remove.rb +83 -0
  206. data/plugins/commands/box/command/repackage.rb +46 -0
  207. data/plugins/commands/box/command/root.rb +98 -0
  208. data/plugins/commands/box/command/update.rb +206 -0
  209. data/plugins/commands/box/plugin.rb +18 -0
  210. data/plugins/commands/cap/command.rb +83 -0
  211. data/plugins/commands/cap/plugin.rb +20 -0
  212. data/plugins/commands/cloud/auth/login.rb +90 -0
  213. data/plugins/commands/cloud/auth/logout.rb +37 -0
  214. data/plugins/commands/cloud/auth/middleware/add_authentication.rb +116 -0
  215. data/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb +68 -0
  216. data/plugins/commands/cloud/auth/plugin.rb +23 -0
  217. data/plugins/commands/cloud/auth/root.rb +77 -0
  218. data/plugins/commands/cloud/auth/whoami.rb +63 -0
  219. data/plugins/commands/cloud/box/create.rb +82 -0
  220. data/plugins/commands/cloud/box/delete.rb +74 -0
  221. data/plugins/commands/cloud/box/plugin.rb +22 -0
  222. data/plugins/commands/cloud/box/root.rb +81 -0
  223. data/plugins/commands/cloud/box/show.rb +133 -0
  224. data/plugins/commands/cloud/box/update.rb +82 -0
  225. data/plugins/commands/cloud/client/client.rb +257 -0
  226. data/plugins/commands/cloud/errors.rb +31 -0
  227. data/plugins/commands/cloud/list.rb +54 -0
  228. data/plugins/commands/cloud/locales/en.yml +197 -0
  229. data/plugins/commands/cloud/plugin.rb +48 -0
  230. data/plugins/commands/cloud/provider/create.rb +105 -0
  231. data/plugins/commands/cloud/provider/delete.rb +109 -0
  232. data/plugins/commands/cloud/provider/plugin.rb +22 -0
  233. data/plugins/commands/cloud/provider/root.rb +81 -0
  234. data/plugins/commands/cloud/provider/update.rb +102 -0
  235. data/plugins/commands/cloud/provider/upload.rb +100 -0
  236. data/plugins/commands/cloud/publish.rb +297 -0
  237. data/plugins/commands/cloud/root.rb +108 -0
  238. data/plugins/commands/cloud/search.rb +102 -0
  239. data/plugins/commands/cloud/util.rb +371 -0
  240. data/plugins/commands/cloud/version/create.rb +77 -0
  241. data/plugins/commands/cloud/version/delete.rb +78 -0
  242. data/plugins/commands/cloud/version/plugin.rb +22 -0
  243. data/plugins/commands/cloud/version/release.rb +78 -0
  244. data/plugins/commands/cloud/version/revoke.rb +79 -0
  245. data/plugins/commands/cloud/version/root.rb +85 -0
  246. data/plugins/commands/cloud/version/update.rb +76 -0
  247. data/plugins/commands/destroy/command.rb +79 -0
  248. data/plugins/commands/destroy/plugin.rb +21 -0
  249. data/plugins/commands/global-status/command.rb +114 -0
  250. data/plugins/commands/global-status/plugin.rb +21 -0
  251. data/plugins/commands/halt/command.rb +42 -0
  252. data/plugins/commands/halt/plugin.rb +21 -0
  253. data/plugins/commands/help/command.rb +19 -0
  254. data/plugins/commands/help/plugin.rb +20 -0
  255. data/plugins/commands/init/command.rb +110 -0
  256. data/plugins/commands/init/plugin.rb +21 -0
  257. data/plugins/commands/list-commands/command.rb +46 -0
  258. data/plugins/commands/list-commands/plugin.rb +21 -0
  259. data/plugins/commands/login/plugin.rb +20 -0
  260. data/plugins/commands/package/command.rb +104 -0
  261. data/plugins/commands/package/plugin.rb +21 -0
  262. data/plugins/commands/plugin/action/expunge_plugins.rb +77 -0
  263. data/plugins/commands/plugin/action/install_gem.rb +80 -0
  264. data/plugins/commands/plugin/action/license_plugin.rb +48 -0
  265. data/plugins/commands/plugin/action/list_plugins.rb +79 -0
  266. data/plugins/commands/plugin/action/plugin_exists_check.rb +28 -0
  267. data/plugins/commands/plugin/action/repair_plugins.rb +67 -0
  268. data/plugins/commands/plugin/action/uninstall_plugin.rb +28 -0
  269. data/plugins/commands/plugin/action/update_gems.rb +52 -0
  270. data/plugins/commands/plugin/action.rb +82 -0
  271. data/plugins/commands/plugin/command/base.rb +22 -0
  272. data/plugins/commands/plugin/command/expunge.rb +95 -0
  273. data/plugins/commands/plugin/command/install.rb +90 -0
  274. data/plugins/commands/plugin/command/license.rb +34 -0
  275. data/plugins/commands/plugin/command/list.rb +34 -0
  276. data/plugins/commands/plugin/command/mixin_install_opts.rb +34 -0
  277. data/plugins/commands/plugin/command/repair.rb +41 -0
  278. data/plugins/commands/plugin/command/root.rb +98 -0
  279. data/plugins/commands/plugin/command/uninstall.rb +38 -0
  280. data/plugins/commands/plugin/command/update.rb +42 -0
  281. data/plugins/commands/plugin/gem_helper.rb +89 -0
  282. data/plugins/commands/plugin/plugin.rb +23 -0
  283. data/plugins/commands/port/command.rb +91 -0
  284. data/plugins/commands/port/locales/en.yml +23 -0
  285. data/plugins/commands/port/plugin.rb +30 -0
  286. data/plugins/commands/powershell/command.rb +132 -0
  287. data/plugins/commands/powershell/errors.rb +29 -0
  288. data/plugins/commands/powershell/plugin.rb +34 -0
  289. data/plugins/commands/powershell/scripts/enable_psremoting.ps1 +63 -0
  290. data/plugins/commands/powershell/scripts/reset_trustedhosts.ps1 +15 -0
  291. data/plugins/commands/provider/command.rb +77 -0
  292. data/plugins/commands/provider/plugin.rb +21 -0
  293. data/plugins/commands/provision/command.rb +41 -0
  294. data/plugins/commands/provision/plugin.rb +21 -0
  295. data/plugins/commands/push/command.rb +78 -0
  296. data/plugins/commands/push/plugin.rb +20 -0
  297. data/plugins/commands/rdp/command.rb +114 -0
  298. data/plugins/commands/rdp/config.rb +29 -0
  299. data/plugins/commands/rdp/errors.rb +21 -0
  300. data/plugins/commands/rdp/plugin.rb +39 -0
  301. data/plugins/commands/reload/command.rb +67 -0
  302. data/plugins/commands/reload/plugin.rb +21 -0
  303. data/plugins/commands/resume/command.rb +46 -0
  304. data/plugins/commands/resume/plugin.rb +20 -0
  305. data/plugins/commands/snapshot/command/delete.rb +50 -0
  306. data/plugins/commands/snapshot/command/list.rb +50 -0
  307. data/plugins/commands/snapshot/command/pop.rb +52 -0
  308. data/plugins/commands/snapshot/command/push.rb +36 -0
  309. data/plugins/commands/snapshot/command/push_shared.rb +58 -0
  310. data/plugins/commands/snapshot/command/restore.rb +67 -0
  311. data/plugins/commands/snapshot/command/root.rb +95 -0
  312. data/plugins/commands/snapshot/command/save.rb +75 -0
  313. data/plugins/commands/snapshot/plugin.rb +18 -0
  314. data/plugins/commands/ssh/command.rb +80 -0
  315. data/plugins/commands/ssh/plugin.rb +20 -0
  316. data/plugins/commands/ssh_config/command.rb +78 -0
  317. data/plugins/commands/ssh_config/plugin.rb +21 -0
  318. data/plugins/commands/status/command.rb +59 -0
  319. data/plugins/commands/status/plugin.rb +21 -0
  320. data/plugins/commands/suspend/command.rb +49 -0
  321. data/plugins/commands/suspend/plugin.rb +21 -0
  322. data/plugins/commands/up/command.rb +194 -0
  323. data/plugins/commands/up/middleware/store_box_metadata.rb +40 -0
  324. data/plugins/commands/up/plugin.rb +25 -0
  325. data/plugins/commands/up/start_mixins.rb +58 -0
  326. data/plugins/commands/upload/command.rb +239 -0
  327. data/plugins/commands/upload/plugin.rb +20 -0
  328. data/plugins/commands/validate/command.rb +107 -0
  329. data/plugins/commands/validate/plugin.rb +20 -0
  330. data/plugins/commands/version/command.rb +60 -0
  331. data/plugins/commands/version/plugin.rb +21 -0
  332. data/plugins/commands/winrm/command.rb +71 -0
  333. data/plugins/commands/winrm/plugin.rb +20 -0
  334. data/plugins/commands/winrm_config/command.rb +129 -0
  335. data/plugins/commands/winrm_config/plugin.rb +20 -0
  336. data/plugins/communicators/ssh/communicator.rb +898 -0
  337. data/plugins/communicators/ssh/plugin.rb +22 -0
  338. data/plugins/communicators/winrm/command_filter.rb +49 -0
  339. data/plugins/communicators/winrm/command_filters/cat.rb +26 -0
  340. data/plugins/communicators/winrm/command_filters/chmod.rb +20 -0
  341. data/plugins/communicators/winrm/command_filters/chown.rb +20 -0
  342. data/plugins/communicators/winrm/command_filters/grep.rb +26 -0
  343. data/plugins/communicators/winrm/command_filters/mkdir.rb +30 -0
  344. data/plugins/communicators/winrm/command_filters/rm.rb +50 -0
  345. data/plugins/communicators/winrm/command_filters/test.rb +68 -0
  346. data/plugins/communicators/winrm/command_filters/uname.rb +30 -0
  347. data/plugins/communicators/winrm/command_filters/which.rb +27 -0
  348. data/plugins/communicators/winrm/communicator.rb +230 -0
  349. data/plugins/communicators/winrm/config.rb +76 -0
  350. data/plugins/communicators/winrm/errors.rb +72 -0
  351. data/plugins/communicators/winrm/helper.rb +91 -0
  352. data/plugins/communicators/winrm/plugin.rb +69 -0
  353. data/plugins/communicators/winrm/shell.rb +267 -0
  354. data/plugins/communicators/winssh/communicator.rb +252 -0
  355. data/plugins/communicators/winssh/config.rb +37 -0
  356. data/plugins/communicators/winssh/plugin.rb +24 -0
  357. data/plugins/guests/alma/cap/flavor.rb +26 -0
  358. data/plugins/guests/alma/guest.rb +13 -0
  359. data/plugins/guests/alma/plugin.rb +23 -0
  360. data/plugins/guests/alpine/cap/change_host_name.rb +85 -0
  361. data/plugins/guests/alpine/cap/configure_networks.rb +67 -0
  362. data/plugins/guests/alpine/cap/halt.rb +24 -0
  363. data/plugins/guests/alpine/cap/nfs_client.rb +17 -0
  364. data/plugins/guests/alpine/cap/rsync.rb +20 -0
  365. data/plugins/guests/alpine/cap/smb.rb +16 -0
  366. data/plugins/guests/alpine/guest.rb +14 -0
  367. data/plugins/guests/alpine/plugin.rb +69 -0
  368. data/plugins/guests/alt/cap/change_host_name.rb +55 -0
  369. data/plugins/guests/alt/cap/configure_networks.rb +132 -0
  370. data/plugins/guests/alt/cap/flavor.rb +66 -0
  371. data/plugins/guests/alt/cap/network_scripts_dir.rb +14 -0
  372. data/plugins/guests/alt/cap/rsync.rb +16 -0
  373. data/plugins/guests/alt/guest.rb +12 -0
  374. data/plugins/guests/alt/plugin.rb +43 -0
  375. data/plugins/guests/amazon/cap/configure_networks.rb +26 -0
  376. data/plugins/guests/amazon/cap/flavor.rb +17 -0
  377. data/plugins/guests/amazon/guest.rb +12 -0
  378. data/plugins/guests/amazon/plugin.rb +28 -0
  379. data/plugins/guests/arch/cap/change_host_name.rb +18 -0
  380. data/plugins/guests/arch/cap/configure_networks.rb +81 -0
  381. data/plugins/guests/arch/cap/nfs.rb +36 -0
  382. data/plugins/guests/arch/cap/rsync.rb +19 -0
  383. data/plugins/guests/arch/cap/smb.rb +20 -0
  384. data/plugins/guests/arch/guest.rb +14 -0
  385. data/plugins/guests/arch/plugin.rb +53 -0
  386. data/plugins/guests/atomic/cap/change_host_name.rb +18 -0
  387. data/plugins/guests/atomic/cap/docker.rb +14 -0
  388. data/plugins/guests/atomic/guest.rb +14 -0
  389. data/plugins/guests/atomic/plugin.rb +28 -0
  390. data/plugins/guests/bsd/cap/file_system.rb +80 -0
  391. data/plugins/guests/bsd/cap/halt.rb +19 -0
  392. data/plugins/guests/bsd/cap/mount_virtualbox_shared_folder.rb +19 -0
  393. data/plugins/guests/bsd/cap/nfs.rb +50 -0
  394. data/plugins/guests/bsd/cap/public_key.rb +69 -0
  395. data/plugins/guests/bsd/guest.rb +12 -0
  396. data/plugins/guests/bsd/plugin.rb +58 -0
  397. data/plugins/guests/centos/cap/flavor.rb +32 -0
  398. data/plugins/guests/centos/guest.rb +14 -0
  399. data/plugins/guests/centos/plugin.rb +23 -0
  400. data/plugins/guests/coreos/cap/change_host_name.rb +41 -0
  401. data/plugins/guests/coreos/cap/configure_networks.rb +138 -0
  402. data/plugins/guests/coreos/cap/docker.rb +14 -0
  403. data/plugins/guests/coreos/guest.rb +14 -0
  404. data/plugins/guests/coreos/plugin.rb +33 -0
  405. data/plugins/guests/darwin/cap/change_host_name.rb +43 -0
  406. data/plugins/guests/darwin/cap/choose_addressable_ip_addr.rb +23 -0
  407. data/plugins/guests/darwin/cap/configure_networks.rb +126 -0
  408. data/plugins/guests/darwin/cap/darwin_version.rb +43 -0
  409. data/plugins/guests/darwin/cap/halt.rb +21 -0
  410. data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +46 -0
  411. data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +135 -0
  412. data/plugins/guests/darwin/cap/rsync.rb +14 -0
  413. data/plugins/guests/darwin/cap/shell_expand_guest_path.rb +30 -0
  414. data/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +15 -0
  415. data/plugins/guests/darwin/guest.rb +18 -0
  416. data/plugins/guests/darwin/plugin.rb +93 -0
  417. data/plugins/guests/debian/cap/change_host_name.rb +110 -0
  418. data/plugins/guests/debian/cap/configure_networks.rb +205 -0
  419. data/plugins/guests/debian/cap/nfs.rb +19 -0
  420. data/plugins/guests/debian/cap/rsync.rb +18 -0
  421. data/plugins/guests/debian/cap/smb.rb +20 -0
  422. data/plugins/guests/debian/guest.rb +13 -0
  423. data/plugins/guests/debian/plugin.rb +43 -0
  424. data/plugins/guests/dragonflybsd/guest.rb +12 -0
  425. data/plugins/guests/dragonflybsd/plugin.rb +18 -0
  426. data/plugins/guests/elementary/guest.rb +13 -0
  427. data/plugins/guests/elementary/plugin.rb +18 -0
  428. data/plugins/guests/esxi/cap/change_host_name.rb +16 -0
  429. data/plugins/guests/esxi/cap/configure_networks.rb +41 -0
  430. data/plugins/guests/esxi/cap/halt.rb +19 -0
  431. data/plugins/guests/esxi/cap/mount_nfs_folder.rb +43 -0
  432. data/plugins/guests/esxi/cap/public_key.rb +68 -0
  433. data/plugins/guests/esxi/guest.rb +14 -0
  434. data/plugins/guests/esxi/plugin.rb +49 -0
  435. data/plugins/guests/fedora/cap/flavor.rb +26 -0
  436. data/plugins/guests/fedora/guest.rb +14 -0
  437. data/plugins/guests/fedora/plugin.rb +23 -0
  438. data/plugins/guests/freebsd/cap/change_host_name.rb +34 -0
  439. data/plugins/guests/freebsd/cap/configure_networks.rb +70 -0
  440. data/plugins/guests/freebsd/cap/mount_virtualbox_shared_folder.rb +79 -0
  441. data/plugins/guests/freebsd/cap/rsync.rb +18 -0
  442. data/plugins/guests/freebsd/cap/shell_expand_guest_path.rb +31 -0
  443. data/plugins/guests/freebsd/guest.rb +17 -0
  444. data/plugins/guests/freebsd/plugin.rb +68 -0
  445. data/plugins/guests/funtoo/cap/configure_networks.rb +50 -0
  446. data/plugins/guests/funtoo/guest.rb +12 -0
  447. data/plugins/guests/funtoo/plugin.rb +23 -0
  448. data/plugins/guests/gentoo/cap/change_host_name.rb +27 -0
  449. data/plugins/guests/gentoo/cap/configure_networks.rb +92 -0
  450. data/plugins/guests/gentoo/guest.rb +12 -0
  451. data/plugins/guests/gentoo/plugin.rb +28 -0
  452. data/plugins/guests/haiku/cap/change_host_name.rb +36 -0
  453. data/plugins/guests/haiku/cap/halt.rb +19 -0
  454. data/plugins/guests/haiku/cap/insert_public_key.rb +24 -0
  455. data/plugins/guests/haiku/cap/remove_public_key.rb +24 -0
  456. data/plugins/guests/haiku/cap/rsync.rb +22 -0
  457. data/plugins/guests/haiku/guest.rb +14 -0
  458. data/plugins/guests/haiku/plugin.rb +53 -0
  459. data/plugins/guests/kali/guest.rb +13 -0
  460. data/plugins/guests/kali/plugin.rb +18 -0
  461. data/plugins/guests/linux/cap/change_host_name.rb +49 -0
  462. data/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +22 -0
  463. data/plugins/guests/linux/cap/file_system.rb +82 -0
  464. data/plugins/guests/linux/cap/halt.rb +27 -0
  465. data/plugins/guests/linux/cap/mount_smb_shared_folder.rb +95 -0
  466. data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +78 -0
  467. data/plugins/guests/linux/cap/network_interfaces.rb +89 -0
  468. data/plugins/guests/linux/cap/nfs.rb +51 -0
  469. data/plugins/guests/linux/cap/persist_mount_shared_folder.rb +77 -0
  470. data/plugins/guests/linux/cap/port.rb +14 -0
  471. data/plugins/guests/linux/cap/public_key.rb +65 -0
  472. data/plugins/guests/linux/cap/read_ip_address.rb +28 -0
  473. data/plugins/guests/linux/cap/reboot.rb +74 -0
  474. data/plugins/guests/linux/cap/rsync.rb +14 -0
  475. data/plugins/guests/linux/cap/shell_expand_guest_path.rb +35 -0
  476. data/plugins/guests/linux/guest.rb +26 -0
  477. data/plugins/guests/linux/plugin.rb +139 -0
  478. data/plugins/guests/mint/guest.rb +13 -0
  479. data/plugins/guests/mint/plugin.rb +18 -0
  480. data/plugins/guests/netbsd/cap/change_host_name.rb +20 -0
  481. data/plugins/guests/netbsd/cap/configure_networks.rb +56 -0
  482. data/plugins/guests/netbsd/cap/rsync.rb +23 -0
  483. data/plugins/guests/netbsd/cap/shell_expand_guest_path.rb +30 -0
  484. data/plugins/guests/netbsd/guest.rb +14 -0
  485. data/plugins/guests/netbsd/plugin.rb +58 -0
  486. data/plugins/guests/nixos/cap/change_host_name.rb +47 -0
  487. data/plugins/guests/nixos/cap/configure_networks.rb +135 -0
  488. data/plugins/guests/nixos/cap/nfs_client.rb +14 -0
  489. data/plugins/guests/nixos/guest.rb +20 -0
  490. data/plugins/guests/nixos/plugin.rb +33 -0
  491. data/plugins/guests/omnios/cap/change_host_name.rb +23 -0
  492. data/plugins/guests/omnios/cap/mount_nfs_folder.rb +24 -0
  493. data/plugins/guests/omnios/cap/rsync.rb +14 -0
  494. data/plugins/guests/omnios/guest.rb +12 -0
  495. data/plugins/guests/omnios/plugin.rb +33 -0
  496. data/plugins/guests/openbsd/cap/change_host_name.rb +35 -0
  497. data/plugins/guests/openbsd/cap/configure_networks.rb +49 -0
  498. data/plugins/guests/openbsd/cap/halt.rb +22 -0
  499. data/plugins/guests/openbsd/cap/rsync.rb +32 -0
  500. data/plugins/guests/openbsd/cap/shell_expand_guest_path.rb +30 -0
  501. data/plugins/guests/openbsd/guest.rb +14 -0
  502. data/plugins/guests/openbsd/plugin.rb +63 -0
  503. data/plugins/guests/openwrt/cap/change_host_name.rb +22 -0
  504. data/plugins/guests/openwrt/cap/halt.rb +19 -0
  505. data/plugins/guests/openwrt/cap/insert_public_key.rb +23 -0
  506. data/plugins/guests/openwrt/cap/remove_public_key.rb +25 -0
  507. data/plugins/guests/openwrt/cap/rsync.rb +38 -0
  508. data/plugins/guests/openwrt/guest.rb +26 -0
  509. data/plugins/guests/openwrt/plugin.rb +64 -0
  510. data/plugins/guests/photon/cap/change_host_name.rb +22 -0
  511. data/plugins/guests/photon/cap/configure_networks.rb +33 -0
  512. data/plugins/guests/photon/cap/docker.rb +14 -0
  513. data/plugins/guests/photon/guest.rb +12 -0
  514. data/plugins/guests/photon/plugin.rb +33 -0
  515. data/plugins/guests/pld/cap/change_host_name.rb +26 -0
  516. data/plugins/guests/pld/cap/flavor.rb +14 -0
  517. data/plugins/guests/pld/cap/network_scripts_dir.rb +14 -0
  518. data/plugins/guests/pld/guest.rb +12 -0
  519. data/plugins/guests/pld/plugin.rb +33 -0
  520. data/plugins/guests/redhat/cap/change_host_name.rb +59 -0
  521. data/plugins/guests/redhat/cap/configure_networks.rb +113 -0
  522. data/plugins/guests/redhat/cap/flavor.rb +32 -0
  523. data/plugins/guests/redhat/cap/network_scripts_dir.rb +18 -0
  524. data/plugins/guests/redhat/cap/nfs_client.rb +33 -0
  525. data/plugins/guests/redhat/cap/rsync.rb +20 -0
  526. data/plugins/guests/redhat/cap/smb.rb +23 -0
  527. data/plugins/guests/redhat/guest.rb +12 -0
  528. data/plugins/guests/redhat/plugin.rb +53 -0
  529. data/plugins/guests/rocky/cap/flavor.rb +26 -0
  530. data/plugins/guests/rocky/guest.rb +13 -0
  531. data/plugins/guests/rocky/plugin.rb +23 -0
  532. data/plugins/guests/slackware/cap/change_host_name.rb +24 -0
  533. data/plugins/guests/slackware/cap/configure_networks.rb +51 -0
  534. data/plugins/guests/slackware/guest.rb +12 -0
  535. data/plugins/guests/slackware/plugin.rb +28 -0
  536. data/plugins/guests/smartos/cap/change_host_name.rb +29 -0
  537. data/plugins/guests/smartos/cap/configure_networks.rb +30 -0
  538. data/plugins/guests/smartos/cap/halt.rb +25 -0
  539. data/plugins/guests/smartos/cap/insert_public_key.rb +31 -0
  540. data/plugins/guests/smartos/cap/mount_nfs.rb +31 -0
  541. data/plugins/guests/smartos/cap/remove_public_key.rb +28 -0
  542. data/plugins/guests/smartos/cap/rsync.rb +36 -0
  543. data/plugins/guests/smartos/config.rb +18 -0
  544. data/plugins/guests/smartos/guest.rb +14 -0
  545. data/plugins/guests/smartos/plugin.rb +74 -0
  546. data/plugins/guests/solaris/cap/change_host_name.rb +20 -0
  547. data/plugins/guests/solaris/cap/configure_networks.rb +28 -0
  548. data/plugins/guests/solaris/cap/file_system.rb +80 -0
  549. data/plugins/guests/solaris/cap/halt.rb +25 -0
  550. data/plugins/guests/solaris/cap/insert_public_key.rb +25 -0
  551. data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +44 -0
  552. data/plugins/guests/solaris/cap/remove_public_key.rb +25 -0
  553. data/plugins/guests/solaris/cap/rsync.rb +36 -0
  554. data/plugins/guests/solaris/config.rb +34 -0
  555. data/plugins/guests/solaris/guest.rb +17 -0
  556. data/plugins/guests/solaris/plugin.rb +88 -0
  557. data/plugins/guests/solaris11/cap/change_host_name.rb +26 -0
  558. data/plugins/guests/solaris11/cap/configure_networks.rb +37 -0
  559. data/plugins/guests/solaris11/config.rb +37 -0
  560. data/plugins/guests/solaris11/guest.rb +22 -0
  561. data/plugins/guests/solaris11/plugin.rb +42 -0
  562. data/plugins/guests/suse/cap/change_host_name.rb +48 -0
  563. data/plugins/guests/suse/cap/configure_networks.rb +53 -0
  564. data/plugins/guests/suse/cap/halt.rb +23 -0
  565. data/plugins/guests/suse/cap/network_scripts_dir.rb +14 -0
  566. data/plugins/guests/suse/cap/nfs_client.rb +18 -0
  567. data/plugins/guests/suse/cap/rsync.rb +18 -0
  568. data/plugins/guests/suse/guest.rb +12 -0
  569. data/plugins/guests/suse/plugin.rb +53 -0
  570. data/plugins/guests/tinycore/cap/change_host_name.rb +16 -0
  571. data/plugins/guests/tinycore/cap/configure_networks.rb +29 -0
  572. data/plugins/guests/tinycore/cap/halt.rb +19 -0
  573. data/plugins/guests/tinycore/cap/mount_nfs.rb +44 -0
  574. data/plugins/guests/tinycore/cap/rsync.rb +20 -0
  575. data/plugins/guests/tinycore/guest.rb +13 -0
  576. data/plugins/guests/tinycore/plugin.rb +43 -0
  577. data/plugins/guests/trisquel/guest.rb +12 -0
  578. data/plugins/guests/trisquel/plugin.rb +18 -0
  579. data/plugins/guests/ubuntu/guest.rb +13 -0
  580. data/plugins/guests/ubuntu/plugin.rb +18 -0
  581. data/plugins/guests/windows/cap/change_host_name.rb +36 -0
  582. data/plugins/guests/windows/cap/choose_addressable_ip_addr.rb +23 -0
  583. data/plugins/guests/windows/cap/configure_networks.rb +83 -0
  584. data/plugins/guests/windows/cap/file_system.rb +68 -0
  585. data/plugins/guests/windows/cap/halt.rb +19 -0
  586. data/plugins/guests/windows/cap/mount_shared_folder.rb +60 -0
  587. data/plugins/guests/windows/cap/public_key.rb +87 -0
  588. data/plugins/guests/windows/cap/reboot.rb +63 -0
  589. data/plugins/guests/windows/cap/rsync.rb +29 -0
  590. data/plugins/guests/windows/config.rb +26 -0
  591. data/plugins/guests/windows/errors.rb +25 -0
  592. data/plugins/guests/windows/guest.rb +13 -0
  593. data/plugins/guests/windows/guest_network.rb +128 -0
  594. data/plugins/guests/windows/plugin.rb +116 -0
  595. data/plugins/guests/windows/scripts/mount_volume.ps1.erb +48 -0
  596. data/plugins/guests/windows/scripts/reboot_detect.ps1 +50 -0
  597. data/plugins/guests/windows/scripts/set_work_network.ps1 +9 -0
  598. data/plugins/guests/windows/scripts/winrs_v3_get_adapters.ps1 +14 -0
  599. data/plugins/hosts/alt/cap/nfs.rb +46 -0
  600. data/plugins/hosts/alt/host.rb +14 -0
  601. data/plugins/hosts/alt/plugin.rb +35 -0
  602. data/plugins/hosts/arch/cap/nfs.rb +22 -0
  603. data/plugins/hosts/arch/host.rb +14 -0
  604. data/plugins/hosts/arch/plugin.rb +35 -0
  605. data/plugins/hosts/bsd/cap/nfs.rb +218 -0
  606. data/plugins/hosts/bsd/cap/path.rb +14 -0
  607. data/plugins/hosts/bsd/cap/ssh.rb +19 -0
  608. data/plugins/hosts/bsd/host.rb +15 -0
  609. data/plugins/hosts/bsd/plugin.rb +63 -0
  610. data/plugins/hosts/darwin/cap/configured_ip_addresses.rb +21 -0
  611. data/plugins/hosts/darwin/cap/fs_iso.rb +52 -0
  612. data/plugins/hosts/darwin/cap/nfs.rb +14 -0
  613. data/plugins/hosts/darwin/cap/path.rb +66 -0
  614. data/plugins/hosts/darwin/cap/provider_install_virtualbox.rb +64 -0
  615. data/plugins/hosts/darwin/cap/rdp.rb +64 -0
  616. data/plugins/hosts/darwin/cap/smb.rb +128 -0
  617. data/plugins/hosts/darwin/cap/version.rb +26 -0
  618. data/plugins/hosts/darwin/host.rb +14 -0
  619. data/plugins/hosts/darwin/plugin.rb +83 -0
  620. data/plugins/hosts/darwin/scripts/install_virtualbox.sh +18 -0
  621. data/plugins/hosts/freebsd/cap/nfs.rb +34 -0
  622. data/plugins/hosts/freebsd/host.rb +15 -0
  623. data/plugins/hosts/freebsd/plugin.rb +34 -0
  624. data/plugins/hosts/gentoo/cap/nfs.rb +42 -0
  625. data/plugins/hosts/gentoo/host.rb +14 -0
  626. data/plugins/hosts/gentoo/plugin.rb +31 -0
  627. data/plugins/hosts/linux/cap/fs_iso.rb +52 -0
  628. data/plugins/hosts/linux/cap/nfs.rb +296 -0
  629. data/plugins/hosts/linux/cap/rdp.rb +59 -0
  630. data/plugins/hosts/linux/cap/ssh.rb +19 -0
  631. data/plugins/hosts/linux/host.rb +15 -0
  632. data/plugins/hosts/linux/plugin.rb +70 -0
  633. data/plugins/hosts/null/host.rb +15 -0
  634. data/plugins/hosts/null/plugin.rb +18 -0
  635. data/plugins/hosts/redhat/cap/nfs.rb +58 -0
  636. data/plugins/hosts/redhat/host.rb +31 -0
  637. data/plugins/hosts/redhat/plugin.rb +30 -0
  638. data/plugins/hosts/slackware/cap/nfs.rb +18 -0
  639. data/plugins/hosts/slackware/host.rb +15 -0
  640. data/plugins/hosts/slackware/plugin.rb +30 -0
  641. data/plugins/hosts/suse/cap/nfs.rb +22 -0
  642. data/plugins/hosts/suse/host.rb +30 -0
  643. data/plugins/hosts/suse/plugin.rb +33 -0
  644. data/plugins/hosts/void/cap/nfs.rb +27 -0
  645. data/plugins/hosts/void/host.rb +23 -0
  646. data/plugins/hosts/void/plugin.rb +33 -0
  647. data/plugins/hosts/windows/cap/configured_ip_addresses.rb +32 -0
  648. data/plugins/hosts/windows/cap/fs_iso.rb +51 -0
  649. data/plugins/hosts/windows/cap/nfs.rb +14 -0
  650. data/plugins/hosts/windows/cap/provider_install_virtualbox.rb +65 -0
  651. data/plugins/hosts/windows/cap/ps.rb +50 -0
  652. data/plugins/hosts/windows/cap/rdp.rb +33 -0
  653. data/plugins/hosts/windows/cap/smb.rb +203 -0
  654. data/plugins/hosts/windows/cap/ssh.rb +29 -0
  655. data/plugins/hosts/windows/host.rb +26 -0
  656. data/plugins/hosts/windows/plugin.rb +83 -0
  657. data/plugins/hosts/windows/scripts/check_credentials.ps1 +37 -0
  658. data/plugins/hosts/windows/scripts/host_info.ps1 +24 -0
  659. data/plugins/hosts/windows/scripts/install_virtualbox.ps1 +40 -0
  660. data/plugins/hosts/windows/scripts/set_share.ps1 +40 -0
  661. data/plugins/hosts/windows/scripts/set_ssh_key_permissions.ps1 +20 -0
  662. data/plugins/hosts/windows/scripts/unset_share.ps1 +13 -0
  663. data/plugins/hosts/windows/scripts/utils/VagrantSSH/VagrantSSH.psm1 +29 -0
  664. data/plugins/kernel_v1/config/nfs.rb +23 -0
  665. data/plugins/kernel_v1/config/package.rb +20 -0
  666. data/plugins/kernel_v1/config/ssh.rb +50 -0
  667. data/plugins/kernel_v1/config/vagrant.rb +34 -0
  668. data/plugins/kernel_v1/config/vm.rb +191 -0
  669. data/plugins/kernel_v1/plugin.rb +47 -0
  670. data/plugins/kernel_v2/config/cloud_init.rb +136 -0
  671. data/plugins/kernel_v2/config/disk.rb +224 -0
  672. data/plugins/kernel_v2/config/package.rb +24 -0
  673. data/plugins/kernel_v2/config/push.rb +155 -0
  674. data/plugins/kernel_v2/config/ssh.rb +93 -0
  675. data/plugins/kernel_v2/config/ssh_connect.rb +194 -0
  676. data/plugins/kernel_v2/config/trigger.rb +214 -0
  677. data/plugins/kernel_v2/config/vagrant.rb +99 -0
  678. data/plugins/kernel_v2/config/vm.rb +1062 -0
  679. data/plugins/kernel_v2/config/vm_provisioner.rb +202 -0
  680. data/plugins/kernel_v2/config/vm_subvm.rb +33 -0
  681. data/plugins/kernel_v2/config/vm_trigger.rb +297 -0
  682. data/plugins/kernel_v2/plugin.rb +71 -0
  683. data/plugins/providers/docker/action/build.rb +99 -0
  684. data/plugins/providers/docker/action/compare_synced_folders.rb +65 -0
  685. data/plugins/providers/docker/action/connect_networks.rb +80 -0
  686. data/plugins/providers/docker/action/create.rb +162 -0
  687. data/plugins/providers/docker/action/destroy.rb +34 -0
  688. data/plugins/providers/docker/action/destroy_build_image.rb +51 -0
  689. data/plugins/providers/docker/action/destroy_network.rb +53 -0
  690. data/plugins/providers/docker/action/forwarded_ports.rb +36 -0
  691. data/plugins/providers/docker/action/has_ssh.rb +21 -0
  692. data/plugins/providers/docker/action/host_machine.rb +75 -0
  693. data/plugins/providers/docker/action/host_machine_build_dir.rb +48 -0
  694. data/plugins/providers/docker/action/host_machine_port_checker.rb +34 -0
  695. data/plugins/providers/docker/action/host_machine_port_warning.rb +40 -0
  696. data/plugins/providers/docker/action/host_machine_required.rb +20 -0
  697. data/plugins/providers/docker/action/host_machine_sync_folders.rb +175 -0
  698. data/plugins/providers/docker/action/host_machine_sync_folders_disable.rb +91 -0
  699. data/plugins/providers/docker/action/init_state.rb +23 -0
  700. data/plugins/providers/docker/action/is_build.rb +19 -0
  701. data/plugins/providers/docker/action/is_host_machine_created.rb +32 -0
  702. data/plugins/providers/docker/action/login.rb +51 -0
  703. data/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb +64 -0
  704. data/plugins/providers/docker/action/prepare_networks.rb +372 -0
  705. data/plugins/providers/docker/action/prepare_nfs_settings.rb +60 -0
  706. data/plugins/providers/docker/action/prepare_nfs_valid_ids.rb +22 -0
  707. data/plugins/providers/docker/action/prepare_ssh.rb +48 -0
  708. data/plugins/providers/docker/action/pull.rb +30 -0
  709. data/plugins/providers/docker/action/start.rb +24 -0
  710. data/plugins/providers/docker/action/stop.rb +24 -0
  711. data/plugins/providers/docker/action/wait_for_running.rb +70 -0
  712. data/plugins/providers/docker/action.rb +319 -0
  713. data/plugins/providers/docker/cap/has_communicator.rb +14 -0
  714. data/plugins/providers/docker/cap/proxy_machine.rb +15 -0
  715. data/plugins/providers/docker/cap/public_address.rb +26 -0
  716. data/plugins/providers/docker/command/exec.rb +112 -0
  717. data/plugins/providers/docker/command/logs.rb +111 -0
  718. data/plugins/providers/docker/command/run.rb +76 -0
  719. data/plugins/providers/docker/communicator.rb +199 -0
  720. data/plugins/providers/docker/config.rb +362 -0
  721. data/plugins/providers/docker/driver/compose.rb +315 -0
  722. data/plugins/providers/docker/driver.rb +416 -0
  723. data/plugins/providers/docker/errors.rb +108 -0
  724. data/plugins/providers/docker/executor/local.rb +48 -0
  725. data/plugins/providers/docker/executor/vagrant.rb +88 -0
  726. data/plugins/providers/docker/hostmachine/Vagrantfile +3 -0
  727. data/plugins/providers/docker/plugin.rb +89 -0
  728. data/plugins/providers/docker/provider.rb +215 -0
  729. data/plugins/providers/docker/synced_folder.rb +35 -0
  730. data/plugins/providers/hyperv/action/check_access.rb +27 -0
  731. data/plugins/providers/hyperv/action/check_enabled.rb +25 -0
  732. data/plugins/providers/hyperv/action/configure.rb +115 -0
  733. data/plugins/providers/hyperv/action/delete_vm.rb +28 -0
  734. data/plugins/providers/hyperv/action/export.rb +45 -0
  735. data/plugins/providers/hyperv/action/import.rb +86 -0
  736. data/plugins/providers/hyperv/action/is_windows.rb +19 -0
  737. data/plugins/providers/hyperv/action/message_will_not_destroy.rb +20 -0
  738. data/plugins/providers/hyperv/action/net_set_mac.rb +23 -0
  739. data/plugins/providers/hyperv/action/net_set_vlan.rb +23 -0
  740. data/plugins/providers/hyperv/action/package.rb +19 -0
  741. data/plugins/providers/hyperv/action/package_metadata_json.rb +37 -0
  742. data/plugins/providers/hyperv/action/package_setup_files.rb +19 -0
  743. data/plugins/providers/hyperv/action/package_setup_folders.rb +21 -0
  744. data/plugins/providers/hyperv/action/package_vagrantfile.rb +37 -0
  745. data/plugins/providers/hyperv/action/read_guest_ip.rb +45 -0
  746. data/plugins/providers/hyperv/action/read_state.rb +33 -0
  747. data/plugins/providers/hyperv/action/resume_vm.rb +20 -0
  748. data/plugins/providers/hyperv/action/set_name.rb +46 -0
  749. data/plugins/providers/hyperv/action/snapshot_delete.rb +30 -0
  750. data/plugins/providers/hyperv/action/snapshot_restore.rb +26 -0
  751. data/plugins/providers/hyperv/action/snapshot_save.rb +30 -0
  752. data/plugins/providers/hyperv/action/start_instance.rb +20 -0
  753. data/plugins/providers/hyperv/action/stop_instance.rb +20 -0
  754. data/plugins/providers/hyperv/action/suspend_vm.rb +20 -0
  755. data/plugins/providers/hyperv/action/wait_for_ip_address.rb +62 -0
  756. data/plugins/providers/hyperv/action.rb +326 -0
  757. data/plugins/providers/hyperv/cap/cleanup_disks.rb +92 -0
  758. data/plugins/providers/hyperv/cap/configure_disks.rb +248 -0
  759. data/plugins/providers/hyperv/cap/public_address.rb +18 -0
  760. data/plugins/providers/hyperv/cap/snapshot_list.rb +14 -0
  761. data/plugins/providers/hyperv/cap/validate_disk_ext.rb +37 -0
  762. data/plugins/providers/hyperv/config.rb +148 -0
  763. data/plugins/providers/hyperv/driver.rb +368 -0
  764. data/plugins/providers/hyperv/errors.rb +49 -0
  765. data/plugins/providers/hyperv/plugin.rb +74 -0
  766. data/plugins/providers/hyperv/provider.rb +116 -0
  767. data/plugins/providers/hyperv/scripts/add_dvd.ps1 +18 -0
  768. data/plugins/providers/hyperv/scripts/attach_disk_drive.ps1 +31 -0
  769. data/plugins/providers/hyperv/scripts/check_hyperv.ps1 +11 -0
  770. data/plugins/providers/hyperv/scripts/check_hyperv_access.ps1 +17 -0
  771. data/plugins/providers/hyperv/scripts/clone_vhd.ps1 +21 -0
  772. data/plugins/providers/hyperv/scripts/configure_vm.ps1 +130 -0
  773. data/plugins/providers/hyperv/scripts/create_snapshot.ps1 +27 -0
  774. data/plugins/providers/hyperv/scripts/delete_snapshot.ps1 +19 -0
  775. data/plugins/providers/hyperv/scripts/delete_vm.ps1 +22 -0
  776. data/plugins/providers/hyperv/scripts/dismount_vhd.ps1 +16 -0
  777. data/plugins/providers/hyperv/scripts/export_vm.ps1 +32 -0
  778. data/plugins/providers/hyperv/scripts/file_sync.ps1 +123 -0
  779. data/plugins/providers/hyperv/scripts/get_network_config.ps1 +68 -0
  780. data/plugins/providers/hyperv/scripts/get_network_mac.ps1 +35 -0
  781. data/plugins/providers/hyperv/scripts/get_scsi_controller.ps1 +19 -0
  782. data/plugins/providers/hyperv/scripts/get_switches.ps1 +13 -0
  783. data/plugins/providers/hyperv/scripts/get_vhd.ps1 +19 -0
  784. data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +52 -0
  785. data/plugins/providers/hyperv/scripts/has_vmcx_support.ps1 +12 -0
  786. data/plugins/providers/hyperv/scripts/import_vm.ps1 +40 -0
  787. data/plugins/providers/hyperv/scripts/list_hdds.ps1 +20 -0
  788. data/plugins/providers/hyperv/scripts/list_snapshots.ps1 +22 -0
  789. data/plugins/providers/hyperv/scripts/new_vhd.ps1 +34 -0
  790. data/plugins/providers/hyperv/scripts/remove_disk_drive.ps1 +28 -0
  791. data/plugins/providers/hyperv/scripts/remove_dvd.ps1 +21 -0
  792. data/plugins/providers/hyperv/scripts/resize_disk_drive.ps1 +21 -0
  793. data/plugins/providers/hyperv/scripts/restore_snapshot.ps1 +20 -0
  794. data/plugins/providers/hyperv/scripts/resume_vm.ps1 +19 -0
  795. data/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1 +36 -0
  796. data/plugins/providers/hyperv/scripts/set_name.ps1 +27 -0
  797. data/plugins/providers/hyperv/scripts/set_network_mac.ps1 +21 -0
  798. data/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +19 -0
  799. data/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1 +30 -0
  800. data/plugins/providers/hyperv/scripts/start_vm.ps1 +29 -0
  801. data/plugins/providers/hyperv/scripts/stop_vm.ps1 +20 -0
  802. data/plugins/providers/hyperv/scripts/suspend_vm.ps1 +19 -0
  803. data/plugins/providers/hyperv/scripts/utils/VagrantMessages/VagrantMessages.psm1 +27 -0
  804. data/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +776 -0
  805. data/plugins/providers/virtualbox/action/boot.rb +26 -0
  806. data/plugins/providers/virtualbox/action/check_accessible.rb +26 -0
  807. data/plugins/providers/virtualbox/action/check_created.rb +24 -0
  808. data/plugins/providers/virtualbox/action/check_guest_additions.rb +58 -0
  809. data/plugins/providers/virtualbox/action/check_running.rb +24 -0
  810. data/plugins/providers/virtualbox/action/check_virtualbox.rb +28 -0
  811. data/plugins/providers/virtualbox/action/clean_machine_folder.rb +55 -0
  812. data/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +23 -0
  813. data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +34 -0
  814. data/plugins/providers/virtualbox/action/created.rb +23 -0
  815. data/plugins/providers/virtualbox/action/customize.rb +48 -0
  816. data/plugins/providers/virtualbox/action/destroy.rb +22 -0
  817. data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +26 -0
  818. data/plugins/providers/virtualbox/action/discard_state.rb +23 -0
  819. data/plugins/providers/virtualbox/action/export.rb +54 -0
  820. data/plugins/providers/virtualbox/action/forced_halt.rb +28 -0
  821. data/plugins/providers/virtualbox/action/forward_ports.rb +92 -0
  822. data/plugins/providers/virtualbox/action/import.rb +110 -0
  823. data/plugins/providers/virtualbox/action/import_master.rb +83 -0
  824. data/plugins/providers/virtualbox/action/is_paused.rb +23 -0
  825. data/plugins/providers/virtualbox/action/is_running.rb +23 -0
  826. data/plugins/providers/virtualbox/action/is_saved.rb +23 -0
  827. data/plugins/providers/virtualbox/action/match_mac_address.rb +30 -0
  828. data/plugins/providers/virtualbox/action/message_already_running.rb +19 -0
  829. data/plugins/providers/virtualbox/action/message_not_created.rb +19 -0
  830. data/plugins/providers/virtualbox/action/message_not_running.rb +19 -0
  831. data/plugins/providers/virtualbox/action/message_will_not_destroy.rb +20 -0
  832. data/plugins/providers/virtualbox/action/network.rb +638 -0
  833. data/plugins/providers/virtualbox/action/network_fix_ipv6.rb +87 -0
  834. data/plugins/providers/virtualbox/action/package.rb +19 -0
  835. data/plugins/providers/virtualbox/action/package_setup_files.rb +19 -0
  836. data/plugins/providers/virtualbox/action/package_setup_folders.rb +21 -0
  837. data/plugins/providers/virtualbox/action/package_vagrantfile.rb +36 -0
  838. data/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb +69 -0
  839. data/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +38 -0
  840. data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +162 -0
  841. data/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb +20 -0
  842. data/plugins/providers/virtualbox/action/resume.rb +28 -0
  843. data/plugins/providers/virtualbox/action/sane_defaults.rb +92 -0
  844. data/plugins/providers/virtualbox/action/set_default_nic_type.rb +72 -0
  845. data/plugins/providers/virtualbox/action/set_name.rb +58 -0
  846. data/plugins/providers/virtualbox/action/setup_package_files.rb +20 -0
  847. data/plugins/providers/virtualbox/action/snapshot_delete.rb +37 -0
  848. data/plugins/providers/virtualbox/action/snapshot_restore.rb +33 -0
  849. data/plugins/providers/virtualbox/action/snapshot_save.rb +28 -0
  850. data/plugins/providers/virtualbox/action/suspend.rb +23 -0
  851. data/plugins/providers/virtualbox/action.rb +433 -0
  852. data/plugins/providers/virtualbox/cap/cleanup_disks.rb +86 -0
  853. data/plugins/providers/virtualbox/cap/configure_disks.rb +441 -0
  854. data/plugins/providers/virtualbox/cap/mount_options.rb +43 -0
  855. data/plugins/providers/virtualbox/cap/public_address.rb +18 -0
  856. data/plugins/providers/virtualbox/cap/validate_disk_ext.rb +37 -0
  857. data/plugins/providers/virtualbox/cap.rb +40 -0
  858. data/plugins/providers/virtualbox/config.rb +211 -0
  859. data/plugins/providers/virtualbox/driver/base.rb +530 -0
  860. data/plugins/providers/virtualbox/driver/meta.rb +212 -0
  861. data/plugins/providers/virtualbox/driver/version_4_0.rb +574 -0
  862. data/plugins/providers/virtualbox/driver/version_4_1.rb +699 -0
  863. data/plugins/providers/virtualbox/driver/version_4_2.rb +713 -0
  864. data/plugins/providers/virtualbox/driver/version_4_3.rb +757 -0
  865. data/plugins/providers/virtualbox/driver/version_5_0.rb +1022 -0
  866. data/plugins/providers/virtualbox/driver/version_5_1.rb +19 -0
  867. data/plugins/providers/virtualbox/driver/version_5_2.rb +19 -0
  868. data/plugins/providers/virtualbox/driver/version_6_0.rb +105 -0
  869. data/plugins/providers/virtualbox/driver/version_6_1.rb +42 -0
  870. data/plugins/providers/virtualbox/driver/version_7_0.rb +306 -0
  871. data/plugins/providers/virtualbox/driver/version_7_1.rb +19 -0
  872. data/plugins/providers/virtualbox/model/forwarded_port.rb +73 -0
  873. data/plugins/providers/virtualbox/model/storage_controller.rb +138 -0
  874. data/plugins/providers/virtualbox/model/storage_controller_array.rb +101 -0
  875. data/plugins/providers/virtualbox/plugin.rb +120 -0
  876. data/plugins/providers/virtualbox/provider.rb +133 -0
  877. data/plugins/providers/virtualbox/synced_folder.rb +153 -0
  878. data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +40 -0
  879. data/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb +47 -0
  880. data/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb +44 -0
  881. data/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb +56 -0
  882. data/plugins/provisioners/ansible/cap/guest/facts.rb +27 -0
  883. data/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb +43 -0
  884. data/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb +26 -0
  885. data/plugins/provisioners/ansible/cap/guest/pip/pip.rb +49 -0
  886. data/plugins/provisioners/ansible/cap/guest/posix/ansible_installed.rb +28 -0
  887. data/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb +75 -0
  888. data/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb +26 -0
  889. data/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb +42 -0
  890. data/plugins/provisioners/ansible/config/base.rb +157 -0
  891. data/plugins/provisioners/ansible/config/guest.rb +59 -0
  892. data/plugins/provisioners/ansible/config/host.rb +66 -0
  893. data/plugins/provisioners/ansible/constants.rb +17 -0
  894. data/plugins/provisioners/ansible/errors.rb +43 -0
  895. data/plugins/provisioners/ansible/helpers.rb +20 -0
  896. data/plugins/provisioners/ansible/plugin.rb +88 -0
  897. data/plugins/provisioners/ansible/provisioner/base.rb +405 -0
  898. data/plugins/provisioners/ansible/provisioner/guest.rb +197 -0
  899. data/plugins/provisioners/ansible/provisioner/host.rb +352 -0
  900. data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +24 -0
  901. data/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +17 -0
  902. data/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +37 -0
  903. data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +37 -0
  904. data/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb +21 -0
  905. data/plugins/provisioners/cfengine/config.rb +127 -0
  906. data/plugins/provisioners/cfengine/plugin.rb +50 -0
  907. data/plugins/provisioners/cfengine/provisioner.rb +142 -0
  908. data/plugins/provisioners/chef/cap/debian/chef_install.rb +22 -0
  909. data/plugins/provisioners/chef/cap/freebsd/chef_install.rb +21 -0
  910. data/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +27 -0
  911. data/plugins/provisioners/chef/cap/linux/chef_installed.rb +27 -0
  912. data/plugins/provisioners/chef/cap/omnios/chef_install.rb +23 -0
  913. data/plugins/provisioners/chef/cap/omnios/chef_installed.rb +28 -0
  914. data/plugins/provisioners/chef/cap/redhat/chef_install.rb +27 -0
  915. data/plugins/provisioners/chef/cap/suse/chef_install.rb +30 -0
  916. data/plugins/provisioners/chef/cap/windows/chef_install.rb +19 -0
  917. data/plugins/provisioners/chef/cap/windows/chef_installed.rb +24 -0
  918. data/plugins/provisioners/chef/command_builder.rb +87 -0
  919. data/plugins/provisioners/chef/config/base.rb +139 -0
  920. data/plugins/provisioners/chef/config/base_runner.rb +131 -0
  921. data/plugins/provisioners/chef/config/chef_apply.rb +53 -0
  922. data/plugins/provisioners/chef/config/chef_client.rb +77 -0
  923. data/plugins/provisioners/chef/config/chef_solo.rb +141 -0
  924. data/plugins/provisioners/chef/config/chef_zero.rb +133 -0
  925. data/plugins/provisioners/chef/installer.rb +51 -0
  926. data/plugins/provisioners/chef/omnibus.rb +40 -0
  927. data/plugins/provisioners/chef/plugin.rb +108 -0
  928. data/plugins/provisioners/chef/provisioner/base.rb +258 -0
  929. data/plugins/provisioners/chef/provisioner/chef_apply.rb +74 -0
  930. data/plugins/provisioners/chef/provisioner/chef_client.rb +179 -0
  931. data/plugins/provisioners/chef/provisioner/chef_solo.rb +244 -0
  932. data/plugins/provisioners/chef/provisioner/chef_zero.rb +123 -0
  933. data/plugins/provisioners/container/client.rb +206 -0
  934. data/plugins/provisioners/container/config.rb +86 -0
  935. data/plugins/provisioners/container/installer.rb +16 -0
  936. data/plugins/provisioners/container/plugin.rb +26 -0
  937. data/plugins/provisioners/container/provisioner.rb +31 -0
  938. data/plugins/provisioners/docker/cap/centos/docker_install.rb +44 -0
  939. data/plugins/provisioners/docker/cap/centos/docker_start_service.rb +27 -0
  940. data/plugins/provisioners/docker/cap/debian/docker_install.rb +21 -0
  941. data/plugins/provisioners/docker/cap/debian/docker_start_service.rb +16 -0
  942. data/plugins/provisioners/docker/cap/fedora/docker_install.rb +30 -0
  943. data/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb +23 -0
  944. data/plugins/provisioners/docker/cap/linux/docker_daemon_running.rb +16 -0
  945. data/plugins/provisioners/docker/cap/linux/docker_installed.rb +29 -0
  946. data/plugins/provisioners/docker/cap/windows/docker_daemon_running.rb +16 -0
  947. data/plugins/provisioners/docker/client.rb +26 -0
  948. data/plugins/provisioners/docker/config.rb +19 -0
  949. data/plugins/provisioners/docker/installer.rb +37 -0
  950. data/plugins/provisioners/docker/plugin.rb +71 -0
  951. data/plugins/provisioners/docker/provisioner.rb +59 -0
  952. data/plugins/provisioners/file/config.rb +32 -0
  953. data/plugins/provisioners/file/plugin.rb +26 -0
  954. data/plugins/provisioners/file/provisioner.rb +46 -0
  955. data/plugins/provisioners/podman/cap/centos/podman_install.rb +38 -0
  956. data/plugins/provisioners/podman/cap/linux/podman_installed.rb +16 -0
  957. data/plugins/provisioners/podman/cap/redhat/podman_install.rb +29 -0
  958. data/plugins/provisioners/podman/client.rb +15 -0
  959. data/plugins/provisioners/podman/config.rb +31 -0
  960. data/plugins/provisioners/podman/installer.rb +36 -0
  961. data/plugins/provisioners/podman/plugin.rb +41 -0
  962. data/plugins/provisioners/podman/provisioner.rb +55 -0
  963. data/plugins/provisioners/puppet/config/puppet.rb +178 -0
  964. data/plugins/provisioners/puppet/config/puppet_server.rb +84 -0
  965. data/plugins/provisioners/puppet/plugin.rb +36 -0
  966. data/plugins/provisioners/puppet/provisioner/puppet.rb +336 -0
  967. data/plugins/provisioners/puppet/provisioner/puppet_server.rb +114 -0
  968. data/plugins/provisioners/salt/bootstrap_downloader.rb +62 -0
  969. data/plugins/provisioners/salt/config.rb +194 -0
  970. data/plugins/provisioners/salt/errors.rb +18 -0
  971. data/plugins/provisioners/salt/plugin.rb +25 -0
  972. data/plugins/provisioners/salt/provisioner.rb +499 -0
  973. data/plugins/provisioners/shell/config.rb +146 -0
  974. data/plugins/provisioners/shell/plugin.rb +26 -0
  975. data/plugins/provisioners/shell/provisioner.rb +368 -0
  976. data/plugins/pushes/atlas/config.rb +151 -0
  977. data/plugins/pushes/atlas/errors.rb +16 -0
  978. data/plugins/pushes/atlas/locales/en.yml +25 -0
  979. data/plugins/pushes/atlas/plugin.rb +38 -0
  980. data/plugins/pushes/atlas/push.rb +87 -0
  981. data/plugins/pushes/ftp/adapter.rb +147 -0
  982. data/plugins/pushes/ftp/config.rb +133 -0
  983. data/plugins/pushes/ftp/errors.rb +16 -0
  984. data/plugins/pushes/ftp/locales/en.yml +19 -0
  985. data/plugins/pushes/ftp/plugin.rb +36 -0
  986. data/plugins/pushes/ftp/push.rb +137 -0
  987. data/plugins/pushes/heroku/config.rb +77 -0
  988. data/plugins/pushes/heroku/errors.rb +24 -0
  989. data/plugins/pushes/heroku/locales/en.yml +33 -0
  990. data/plugins/pushes/heroku/plugin.rb +36 -0
  991. data/plugins/pushes/heroku/push.rb +147 -0
  992. data/plugins/pushes/local-exec/config.rb +80 -0
  993. data/plugins/pushes/local-exec/errors.rb +16 -0
  994. data/plugins/pushes/local-exec/locales/en.yml +26 -0
  995. data/plugins/pushes/local-exec/plugin.rb +36 -0
  996. data/plugins/pushes/local-exec/push.rb +91 -0
  997. data/plugins/pushes/noop/config.rb +19 -0
  998. data/plugins/pushes/noop/plugin.rb +25 -0
  999. data/plugins/pushes/noop/push.rb +12 -0
  1000. data/plugins/synced_folders/nfs/action_cleanup.rb +32 -0
  1001. data/plugins/synced_folders/nfs/config.rb +35 -0
  1002. data/plugins/synced_folders/nfs/plugin.rb +49 -0
  1003. data/plugins/synced_folders/nfs/synced_folder.rb +171 -0
  1004. data/plugins/synced_folders/rsync/command/rsync.rb +81 -0
  1005. data/plugins/synced_folders/rsync/command/rsync_auto.rb +244 -0
  1006. data/plugins/synced_folders/rsync/default_unix_cap.rb +49 -0
  1007. data/plugins/synced_folders/rsync/helper.rb +296 -0
  1008. data/plugins/synced_folders/rsync/plugin.rb +31 -0
  1009. data/plugins/synced_folders/rsync/synced_folder.rb +62 -0
  1010. data/plugins/synced_folders/smb/cap/default_fstab_modification.rb +14 -0
  1011. data/plugins/synced_folders/smb/cap/mount_options.rb +59 -0
  1012. data/plugins/synced_folders/smb/config.rb +26 -0
  1013. data/plugins/synced_folders/smb/errors.rb +65 -0
  1014. data/plugins/synced_folders/smb/plugin.rb +60 -0
  1015. data/plugins/synced_folders/smb/synced_folder.rb +189 -0
  1016. data/plugins/synced_folders/unix_mount_helpers.rb +122 -0
  1017. data/scripts/install_rvm +19 -0
  1018. data/scripts/setup_tests +49 -0
  1019. data/scripts/sign.sh +29 -0
  1020. data/scripts/website_push_www.sh +43 -0
  1021. data/tasks/acceptance.rake +14 -105
  1022. data/tasks/test.rake +1 -13
  1023. data/templates/commands/init/Vagrantfile.erb +65 -78
  1024. data/templates/commands/init/Vagrantfile.min.erb +12 -0
  1025. data/templates/commands/ssh_config/config.erb +28 -1
  1026. data/templates/commands/winrm_config/config.erb +11 -0
  1027. data/templates/config/messages.erb +14 -0
  1028. data/templates/config/validation_failed.erb +3 -3
  1029. data/templates/guests/alpine/network_dhcp.erb +13 -0
  1030. data/templates/guests/alpine/network_static.erb +7 -0
  1031. data/templates/guests/alt/network_dhcp.erb +7 -0
  1032. data/templates/guests/alt/network_ipv4address.erb +3 -0
  1033. data/templates/guests/alt/network_ipv4route.erb +5 -0
  1034. data/templates/guests/alt/network_static.erb +7 -0
  1035. data/templates/guests/arch/default_network/network_dhcp.erb +4 -0
  1036. data/templates/guests/arch/default_network/network_static.erb +8 -0
  1037. data/templates/guests/arch/default_network/network_static6.erb +8 -0
  1038. data/templates/guests/arch/systemd_networkd/network_dhcp.erb +6 -0
  1039. data/templates/guests/arch/systemd_networkd/network_static.erb +9 -0
  1040. data/templates/guests/arch/systemd_networkd/network_static6.erb +9 -0
  1041. data/templates/guests/coreos/etcd.service.erb +10 -0
  1042. data/templates/guests/debian/network_dhcp.erb +10 -3
  1043. data/templates/guests/debian/network_static.erb +5 -2
  1044. data/templates/guests/debian/network_static6.erb +10 -0
  1045. data/templates/guests/freebsd/network_dhcp.erb +2 -1
  1046. data/templates/guests/freebsd/network_static.erb +4 -1
  1047. data/templates/guests/freebsd/network_static6.erb +6 -0
  1048. data/templates/guests/funtoo/network_dhcp.erb +4 -0
  1049. data/templates/guests/funtoo/network_static.erb +10 -0
  1050. data/templates/guests/funtoo/network_static6.erb +9 -0
  1051. data/templates/guests/gentoo/network_dhcp.erb +1 -1
  1052. data/templates/guests/gentoo/network_static.erb +5 -1
  1053. data/templates/guests/gentoo/network_static6.erb +8 -0
  1054. data/templates/guests/gentoo/network_systemd.erb +16 -0
  1055. data/templates/guests/linux/etc_fstab.erb +6 -0
  1056. data/templates/guests/netbsd/network_dhcp.erb +3 -0
  1057. data/templates/guests/netbsd/network_static.erb +3 -0
  1058. data/templates/guests/nixos/hostname.erb +6 -0
  1059. data/templates/guests/nixos/network.erb +15 -0
  1060. data/templates/guests/openbsd/network_dhcp.erb +1 -0
  1061. data/templates/guests/openbsd/network_static.erb +1 -0
  1062. data/templates/guests/openbsd/network_static6.erb +1 -0
  1063. data/templates/guests/redhat/network_dhcp.erb +2 -1
  1064. data/templates/guests/redhat/network_static.erb +11 -2
  1065. data/templates/guests/redhat/network_static6.erb +12 -0
  1066. data/templates/guests/slackware/network_dhcp.erb +11 -0
  1067. data/templates/guests/slackware/network_static.erb +13 -0
  1068. data/templates/guests/suse/network_dhcp.erb +6 -0
  1069. data/templates/guests/suse/network_static.erb +13 -0
  1070. data/templates/guests/suse/network_static6.erb +16 -0
  1071. data/templates/license/license.html.tmpl +127 -0
  1072. data/templates/license/license.rtf.tmpl +0 -0
  1073. data/templates/license/license.tmpl +92 -0
  1074. data/templates/locales/comm_winrm.yml +85 -0
  1075. data/templates/locales/command_ps.yml +35 -0
  1076. data/templates/locales/command_rdp.yml +28 -0
  1077. data/templates/locales/en.yml +2689 -299
  1078. data/templates/locales/guest_windows.yml +26 -0
  1079. data/templates/locales/providers_docker.yml +321 -0
  1080. data/templates/locales/providers_hyperv.yml +111 -0
  1081. data/templates/locales/synced_folder_smb.yml +98 -0
  1082. data/templates/networking/network_manager/network_manager_device.erb +41 -0
  1083. data/templates/nfs/exports_bsd.erb +5 -0
  1084. data/templates/nfs/exports_darwin.erb +7 -0
  1085. data/templates/nfs/exports_linux.erb +5 -3
  1086. data/templates/provisioners/chef_client/client.erb +11 -2
  1087. data/templates/provisioners/chef_solo/solo.erb +32 -5
  1088. data/templates/provisioners/chef_zero/zero.erb +45 -0
  1089. data/templates/rgloader.rb +12 -0
  1090. data/vagrant-spec.config.example.rb +13 -0
  1091. data/vagrant.gemspec +63 -19
  1092. data/version.txt +1 -0
  1093. metadata +1443 -477
  1094. data/config/default.rb +0 -30
  1095. data/lib/vagrant/action/box/destroy.rb +0 -25
  1096. data/lib/vagrant/action/box/download.rb +0 -84
  1097. data/lib/vagrant/action/box/package.rb +0 -19
  1098. data/lib/vagrant/action/box/unpackage.rb +0 -61
  1099. data/lib/vagrant/action/box/verify.rb +0 -23
  1100. data/lib/vagrant/action/builtin.rb +0 -171
  1101. data/lib/vagrant/action/env/set.rb +0 -21
  1102. data/lib/vagrant/action/environment.rb +0 -12
  1103. data/lib/vagrant/action/general/check_virtualbox.rb +0 -28
  1104. data/lib/vagrant/action/general/validate.rb +0 -18
  1105. data/lib/vagrant/action/vm/boot.rb +0 -53
  1106. data/lib/vagrant/action/vm/check_accessible.rb +0 -23
  1107. data/lib/vagrant/action/vm/check_box.rb +0 -33
  1108. data/lib/vagrant/action/vm/check_guest_additions.rb +0 -38
  1109. data/lib/vagrant/action/vm/check_port_collisions.rb +0 -89
  1110. data/lib/vagrant/action/vm/clean_machine_folder.rb +0 -43
  1111. data/lib/vagrant/action/vm/clear_forwarded_ports.rb +0 -18
  1112. data/lib/vagrant/action/vm/clear_network_interfaces.rb +0 -31
  1113. data/lib/vagrant/action/vm/clear_shared_folders.rb +0 -18
  1114. data/lib/vagrant/action/vm/customize.rb +0 -36
  1115. data/lib/vagrant/action/vm/default_name.rb +0 -22
  1116. data/lib/vagrant/action/vm/destroy.rb +0 -19
  1117. data/lib/vagrant/action/vm/destroy_unused_network_interfaces.rb +0 -20
  1118. data/lib/vagrant/action/vm/discard_state.rb +0 -22
  1119. data/lib/vagrant/action/vm/export.rb +0 -57
  1120. data/lib/vagrant/action/vm/forward_ports.rb +0 -92
  1121. data/lib/vagrant/action/vm/halt.rb +0 -32
  1122. data/lib/vagrant/action/vm/host_name.rb +0 -21
  1123. data/lib/vagrant/action/vm/import.rb +0 -48
  1124. data/lib/vagrant/action/vm/match_mac_address.rb +0 -21
  1125. data/lib/vagrant/action/vm/network.rb +0 -403
  1126. data/lib/vagrant/action/vm/nfs.rb +0 -196
  1127. data/lib/vagrant/action/vm/package.rb +0 -23
  1128. data/lib/vagrant/action/vm/package_vagrantfile.rb +0 -36
  1129. data/lib/vagrant/action/vm/provision.rb +0 -61
  1130. data/lib/vagrant/action/vm/provisioner_cleanup.rb +0 -26
  1131. data/lib/vagrant/action/vm/prune_nfs_exports.rb +0 -20
  1132. data/lib/vagrant/action/vm/resume.rb +0 -20
  1133. data/lib/vagrant/action/vm/sane_defaults.rb +0 -78
  1134. data/lib/vagrant/action/vm/setup_package_files.rb +0 -54
  1135. data/lib/vagrant/action/vm/share_folders.rb +0 -114
  1136. data/lib/vagrant/action/vm/suspend.rb +0 -20
  1137. data/lib/vagrant/command/base.rb +0 -167
  1138. data/lib/vagrant/command/box.rb +0 -58
  1139. data/lib/vagrant/command/box_add.rb +0 -37
  1140. data/lib/vagrant/command/box_list.rb +0 -28
  1141. data/lib/vagrant/command/box_remove.rb +0 -27
  1142. data/lib/vagrant/command/box_repackage.rb +0 -27
  1143. data/lib/vagrant/command/destroy.rb +0 -64
  1144. data/lib/vagrant/command/gem.rb +0 -39
  1145. data/lib/vagrant/command/halt.rb +0 -39
  1146. data/lib/vagrant/command/init.rb +0 -40
  1147. data/lib/vagrant/command/package.rb +0 -75
  1148. data/lib/vagrant/command/provision.rb +0 -40
  1149. data/lib/vagrant/command/reload.rb +0 -39
  1150. data/lib/vagrant/command/resume.rb +0 -33
  1151. data/lib/vagrant/command/ssh.rb +0 -90
  1152. data/lib/vagrant/command/ssh_config.rb +0 -51
  1153. data/lib/vagrant/command/start_mixins.rb +0 -26
  1154. data/lib/vagrant/command/status.rb +0 -36
  1155. data/lib/vagrant/command/suspend.rb +0 -33
  1156. data/lib/vagrant/command/up.rb +0 -40
  1157. data/lib/vagrant/command.rb +0 -24
  1158. data/lib/vagrant/communication/base.rb +0 -56
  1159. data/lib/vagrant/communication/ssh.rb +0 -230
  1160. data/lib/vagrant/communication.rb +0 -7
  1161. data/lib/vagrant/config/base.rb +0 -82
  1162. data/lib/vagrant/config/container.rb +0 -37
  1163. data/lib/vagrant/config/error_recorder.rb +0 -19
  1164. data/lib/vagrant/config/nfs.rb +0 -8
  1165. data/lib/vagrant/config/package.rb +0 -7
  1166. data/lib/vagrant/config/ssh.rb +0 -27
  1167. data/lib/vagrant/config/top.rb +0 -72
  1168. data/lib/vagrant/config/vagrant.rb +0 -14
  1169. data/lib/vagrant/config/vm/provisioner.rb +0 -52
  1170. data/lib/vagrant/config/vm/sub_vm.rb +0 -17
  1171. data/lib/vagrant/config/vm.rb +0 -168
  1172. data/lib/vagrant/data_store.rb +0 -92
  1173. data/lib/vagrant/downloaders/base.rb +0 -25
  1174. data/lib/vagrant/downloaders/file.rb +0 -22
  1175. data/lib/vagrant/downloaders/http.rb +0 -97
  1176. data/lib/vagrant/downloaders.rb +0 -7
  1177. data/lib/vagrant/driver/virtualbox.rb +0 -134
  1178. data/lib/vagrant/driver/virtualbox_4_0.rb +0 -459
  1179. data/lib/vagrant/driver/virtualbox_4_1.rb +0 -459
  1180. data/lib/vagrant/driver/virtualbox_4_2.rb +0 -606
  1181. data/lib/vagrant/driver/virtualbox_base.rb +0 -326
  1182. data/lib/vagrant/driver.rb +0 -8
  1183. data/lib/vagrant/guest/arch.rb +0 -56
  1184. data/lib/vagrant/guest/base.rb +0 -99
  1185. data/lib/vagrant/guest/debian.rb +0 -64
  1186. data/lib/vagrant/guest/fedora.rb +0 -66
  1187. data/lib/vagrant/guest/freebsd.rb +0 -86
  1188. data/lib/vagrant/guest/gentoo.rb +0 -46
  1189. data/lib/vagrant/guest/linux/config.rb +0 -19
  1190. data/lib/vagrant/guest/linux/error.rb +0 -9
  1191. data/lib/vagrant/guest/linux.rb +0 -118
  1192. data/lib/vagrant/guest/openbsd.rb +0 -20
  1193. data/lib/vagrant/guest/redhat.rb +0 -67
  1194. data/lib/vagrant/guest/solaris.rb +0 -118
  1195. data/lib/vagrant/guest/suse.rb +0 -17
  1196. data/lib/vagrant/guest/ubuntu.rb +0 -23
  1197. data/lib/vagrant/hosts/arch.rb +0 -55
  1198. data/lib/vagrant/hosts/base.rb +0 -66
  1199. data/lib/vagrant/hosts/bsd.rb +0 -97
  1200. data/lib/vagrant/hosts/fedora.rb +0 -47
  1201. data/lib/vagrant/hosts/freebsd.rb +0 -41
  1202. data/lib/vagrant/hosts/gentoo.rb +0 -20
  1203. data/lib/vagrant/hosts/linux.rb +0 -94
  1204. data/lib/vagrant/hosts/opensuse.rb +0 -30
  1205. data/lib/vagrant/hosts/windows.rb +0 -16
  1206. data/lib/vagrant/hosts.rb +0 -37
  1207. data/lib/vagrant/provisioners/base.rb +0 -44
  1208. data/lib/vagrant/provisioners/chef.rb +0 -168
  1209. data/lib/vagrant/provisioners/chef_client.rb +0 -132
  1210. data/lib/vagrant/provisioners/chef_solo.rb +0 -234
  1211. data/lib/vagrant/provisioners/puppet.rb +0 -176
  1212. data/lib/vagrant/provisioners/puppet_server.rb +0 -78
  1213. data/lib/vagrant/provisioners/shell.rb +0 -103
  1214. data/lib/vagrant/provisioners.rb +0 -12
  1215. data/lib/vagrant/ssh.rb +0 -126
  1216. data/lib/vagrant/test_helpers.rb +0 -154
  1217. data/lib/vagrant/vm.rb +0 -195
  1218. data/templates/guests/arch/network_dhcp.erb +0 -7
  1219. data/templates/guests/arch/network_static.erb +0 -7
  1220. data/templates/guests/fedora/network_dhcp.erb +0 -6
  1221. data/templates/guests/fedora/network_static.erb +0 -13
  1222. data/templates/nfs/exports.erb +0 -5
  1223. data/templates/nfs/exports_freebsd.erb +0 -5
  1224. data/test/acceptance/base.rb +0 -48
  1225. data/test/acceptance/box_test.rb +0 -99
  1226. data/test/acceptance/destroy_test.rb +0 -37
  1227. data/test/acceptance/halt_test.rb +0 -72
  1228. data/test/acceptance/init_test.rb +0 -33
  1229. data/test/acceptance/networking/host_only_test.rb +0 -37
  1230. data/test/acceptance/networking/port_forward_test.rb +0 -125
  1231. data/test/acceptance/package_test.rb +0 -46
  1232. data/test/acceptance/provisioning/basic_test.rb +0 -61
  1233. data/test/acceptance/provisioning/chef_solo_test.rb +0 -37
  1234. data/test/acceptance/provisioning/shell_test.rb +0 -53
  1235. data/test/acceptance/resume_test.rb +0 -17
  1236. data/test/acceptance/shared_folders_test.rb +0 -84
  1237. data/test/acceptance/skeletons/chef_solo_basic/README.md +0 -3
  1238. data/test/acceptance/skeletons/chef_solo_basic/cookbooks/basic/recipes/default.rb +0 -5
  1239. data/test/acceptance/skeletons/chef_solo_json/README.md +0 -3
  1240. data/test/acceptance/skeletons/chef_solo_json/cookbooks/basic/recipes/default.rb +0 -6
  1241. data/test/acceptance/skeletons/provisioner_multi/README.md +0 -3
  1242. data/test/acceptance/skeletons/provisioner_multi/cookbooks/basic/recipes/default.rb +0 -5
  1243. data/test/acceptance/ssh_test.rb +0 -46
  1244. data/test/acceptance/support/config.rb +0 -42
  1245. data/test/acceptance/support/isolated_environment.rb +0 -117
  1246. data/test/acceptance/support/matchers/have_color.rb +0 -9
  1247. data/test/acceptance/support/matchers/match_output.rb +0 -14
  1248. data/test/acceptance/support/matchers/succeed.rb +0 -14
  1249. data/test/acceptance/support/network_tests.rb +0 -29
  1250. data/test/acceptance/support/output.rb +0 -95
  1251. data/test/acceptance/support/shared/base_context.rb +0 -72
  1252. data/test/acceptance/support/shared/command_examples.rb +0 -33
  1253. data/test/acceptance/support/virtualbox.rb +0 -36
  1254. data/test/acceptance/suspend_test.rb +0 -56
  1255. data/test/acceptance/up_basic_test.rb +0 -33
  1256. data/test/acceptance/up_with_box_url.rb +0 -40
  1257. data/test/acceptance/vagrant_test.rb +0 -47
  1258. data/test/acceptance/version_test.rb +0 -15
  1259. data/test/buildbot/README.md +0 -72
  1260. data/test/buildbot/buildbot_config/config/__init__.py +0 -0
  1261. data/test/buildbot/buildbot_config/config/loader.py +0 -24
  1262. data/test/buildbot/buildbot_config/config/master.py +0 -24
  1263. data/test/buildbot/buildbot_config/config/slave.py +0 -22
  1264. data/test/buildbot/buildbot_config/master/__init__.py +0 -6
  1265. data/test/buildbot/buildbot_config/master/builders.py +0 -78
  1266. data/test/buildbot/buildbot_config/master/buildsteps.py +0 -100
  1267. data/test/buildbot/buildbot_config/master/change_sources.py +0 -8
  1268. data/test/buildbot/buildbot_config/master/schedulers.py +0 -32
  1269. data/test/buildbot/buildbot_config/master/slaves.py +0 -60
  1270. data/test/buildbot/buildbot_config/master/status.py +0 -52
  1271. data/test/buildbot/master/Makefile.sample +0 -28
  1272. data/test/buildbot/master/buildbot.tac +0 -36
  1273. data/test/buildbot/master/master.cfg +0 -67
  1274. data/test/buildbot/master/public_html/bg_gradient.jpg +0 -0
  1275. data/test/buildbot/master/public_html/default.css +0 -545
  1276. data/test/buildbot/master/public_html/favicon.ico +0 -0
  1277. data/test/buildbot/master/public_html/robots.txt +0 -10
  1278. data/test/buildbot/master/public_html/static/css/bootstrap-1.4.0.min.css +0 -356
  1279. data/test/buildbot/master/public_html/static/css/prettify.css +0 -97
  1280. data/test/buildbot/master/public_html/static/css/syntax.css +0 -60
  1281. data/test/buildbot/master/public_html/static/css/vagrant.base.css +0 -205
  1282. data/test/buildbot/master/public_html/static/images/base_box_mac.jpg +0 -0
  1283. data/test/buildbot/master/public_html/static/images/getting-started/success.jpg +0 -0
  1284. data/test/buildbot/master/public_html/static/images/icons/error.png +0 -0
  1285. data/test/buildbot/master/public_html/static/images/vagrant_chilling.png +0 -0
  1286. data/test/buildbot/master/public_html/static/images/vagrant_holding.png +0 -0
  1287. data/test/buildbot/master/public_html/static/images/vagrant_looking.png +0 -0
  1288. data/test/buildbot/master/public_html/static/images/windows/alter_path.jpg +0 -0
  1289. data/test/buildbot/master/public_html/static/images/windows/edit_path.jpg +0 -0
  1290. data/test/buildbot/master/public_html/static/images/windows/environment_variables_button.jpg +0 -0
  1291. data/test/buildbot/master/public_html/static/images/windows/port_and_ppk_path.jpg +0 -0
  1292. data/test/buildbot/master/public_html/static/images/windows/ppk_selection.jpg +0 -0
  1293. data/test/buildbot/master/public_html/static/images/windows/putty_first_screen.jpg +0 -0
  1294. data/test/buildbot/master/public_html/static/images/windows/save_result.jpg +0 -0
  1295. data/test/buildbot/master/public_html/static/images/windows/vbox_manage_default_location.jpg +0 -0
  1296. data/test/buildbot/master/public_html/static/js/bootstrap-tabs.js +0 -80
  1297. data/test/buildbot/master/public_html/static/js/jquery-1.7.min.js +0 -4
  1298. data/test/buildbot/master/templates/authfail.html +0 -9
  1299. data/test/buildbot/master/templates/build.html +0 -205
  1300. data/test/buildbot/master/templates/builder.html +0 -118
  1301. data/test/buildbot/master/templates/builders.html +0 -33
  1302. data/test/buildbot/master/templates/buildslave.html +0 -72
  1303. data/test/buildbot/master/templates/buildslaves.html +0 -70
  1304. data/test/buildbot/master/templates/change.html +0 -15
  1305. data/test/buildbot/master/templates/layouts/base.html +0 -58
  1306. data/test/buildbot/master/templates/macros/box.html +0 -37
  1307. data/test/buildbot/master/templates/macros/build_line.html +0 -50
  1308. data/test/buildbot/master/templates/macros/change.html +0 -81
  1309. data/test/buildbot/master/templates/macros/forms.html +0 -300
  1310. data/test/buildbot/master/templates/root.html +0 -42
  1311. data/test/buildbot/master/templates/waterfall.html +0 -53
  1312. data/test/buildbot/requirements.txt +0 -4
  1313. data/test/buildbot/scripts/deploy.sh +0 -38
  1314. data/test/buildbot/scripts/setup.sh +0 -107
  1315. data/test/buildbot/slave/buildbot.tac +0 -43
  1316. data/test/buildbot/slave/info/admin +0 -1
  1317. data/test/buildbot/slave/info/host +0 -1
  1318. data/test/buildbot/tests/__init__.py +0 -0
  1319. data/test/buildbot/tests/master/__init__.py +0 -0
  1320. data/test/buildbot/tests/master/test_slaves.py +0 -41
  1321. data/test/buildbot/vendor/choices-0.4.0.tar.gz +0 -0
  1322. data/test/config/acceptance_boxes.yml +0 -7
  1323. data/test/support/isolated_environment.rb +0 -46
  1324. data/test/support/tempdir.rb +0 -34
  1325. data/test/unit/base.rb +0 -21
  1326. data/test/unit/support/isolated_environment.rb +0 -47
  1327. data/test/unit/support/shared/base_context.rb +0 -30
  1328. data/test/unit/vagrant/action/builder_test.rb +0 -156
  1329. data/test/unit/vagrant/action/environment_test.rb +0 -16
  1330. data/test/unit/vagrant/action/runner_test.rb +0 -65
  1331. data/test/unit/vagrant/action/warden_test.rb +0 -92
  1332. data/test/unit/vagrant/box_collection_test.rb +0 -56
  1333. data/test/unit/vagrant/box_test.rb +0 -34
  1334. data/test/unit/vagrant/command/base_test.rb +0 -150
  1335. data/test/unit/vagrant/config/base_test.rb +0 -48
  1336. data/test/unit/vagrant/config/loader_test.rb +0 -79
  1337. data/test/unit/vagrant/config/ssh_test.rb +0 -17
  1338. data/test/unit/vagrant/config/top_test.rb +0 -69
  1339. data/test/unit/vagrant/config/vm_test.rb +0 -71
  1340. data/test/unit/vagrant/config_test.rb +0 -27
  1341. data/test/unit/vagrant/data_store_test.rb +0 -79
  1342. data/test/unit/vagrant/downloaders/base_test.rb +0 -18
  1343. data/test/unit/vagrant/downloaders/file_test.rb +0 -75
  1344. data/test/unit/vagrant/downloaders/http_test.rb +0 -19
  1345. data/test/unit/vagrant/environment_test.rb +0 -220
  1346. data/test/unit/vagrant/hosts_test.rb +0 -36
  1347. data/test/unit/vagrant/registry_test.rb +0 -74
  1348. data/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +0 -16
  1349. data/test/unit/vagrant/util/file_checksum_test.rb +0 -23
  1350. data/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +0 -38
  1351. data/test/unit/vagrant/util/is_port_open_test.rb +0 -53
  1352. data/test/unit/vagrant/util/line_endings_helper_test.rb +0 -16
  1353. data/test/unit/vagrant/util/network_ip_test.rb +0 -17
  1354. data/test/unit/vagrant/util/retryable_test.rb +0 -106
  1355. data/test/unit/vagrant_test.rb +0 -27
  1356. data/test/unit_legacy/locales/en.yml +0 -8
  1357. data/test/unit_legacy/test_helper.rb +0 -32
  1358. data/test/unit_legacy/vagrant/action/box/destroy_test.rb +0 -18
  1359. data/test/unit_legacy/vagrant/action/box/download_test.rb +0 -125
  1360. data/test/unit_legacy/vagrant/action/box/package_test.rb +0 -25
  1361. data/test/unit_legacy/vagrant/action/box/unpackage_test.rb +0 -84
  1362. data/test/unit_legacy/vagrant/action/box/verify_test.rb +0 -30
  1363. data/test/unit_legacy/vagrant/action/env/set_test.rb +0 -24
  1364. data/test/unit_legacy/vagrant/action/general/package_test.rb +0 -268
  1365. data/test/unit_legacy/vagrant/action/general/validate_test.rb +0 -31
  1366. data/test/unit_legacy/vagrant/action/vm/boot_test.rb +0 -66
  1367. data/test/unit_legacy/vagrant/action/vm/check_accessible_test.rb +0 -61
  1368. data/test/unit_legacy/vagrant/action/vm/check_box_test.rb +0 -61
  1369. data/test/unit_legacy/vagrant/action/vm/check_guest_additions_test.rb +0 -9
  1370. data/test/unit_legacy/vagrant/action/vm/clean_machine_folder_test.rb +0 -84
  1371. data/test/unit_legacy/vagrant/action/vm/clear_forwarded_ports_test.rb +0 -52
  1372. data/test/unit_legacy/vagrant/action/vm/clear_nfs_exports_test.rb +0 -22
  1373. data/test/unit_legacy/vagrant/action/vm/clear_shared_folders_test.rb +0 -40
  1374. data/test/unit_legacy/vagrant/action/vm/customize_test.rb +0 -37
  1375. data/test/unit_legacy/vagrant/action/vm/destroy_test.rb +0 -25
  1376. data/test/unit_legacy/vagrant/action/vm/destroy_unused_network_interfaces_test.rb +0 -49
  1377. data/test/unit_legacy/vagrant/action/vm/discard_state_test.rb +0 -45
  1378. data/test/unit_legacy/vagrant/action/vm/export_test.rb +0 -107
  1379. data/test/unit_legacy/vagrant/action/vm/forward_ports_helpers_test.rb +0 -77
  1380. data/test/unit_legacy/vagrant/action/vm/forward_ports_test.rb +0 -197
  1381. data/test/unit_legacy/vagrant/action/vm/halt_test.rb +0 -79
  1382. data/test/unit_legacy/vagrant/action/vm/host_name_test.rb +0 -36
  1383. data/test/unit_legacy/vagrant/action/vm/import_test.rb +0 -66
  1384. data/test/unit_legacy/vagrant/action/vm/match_mac_address_test.rb +0 -40
  1385. data/test/unit_legacy/vagrant/action/vm/modify_test.rb +0 -38
  1386. data/test/unit_legacy/vagrant/action/vm/network_test.rb +0 -286
  1387. data/test/unit_legacy/vagrant/action/vm/nfs_helpers_test.rb +0 -26
  1388. data/test/unit_legacy/vagrant/action/vm/nfs_test.rb +0 -260
  1389. data/test/unit_legacy/vagrant/action/vm/package_test.rb +0 -25
  1390. data/test/unit_legacy/vagrant/action/vm/package_vagrantfile_test.rb +0 -46
  1391. data/test/unit_legacy/vagrant/action/vm/provision_test.rb +0 -65
  1392. data/test/unit_legacy/vagrant/action/vm/provisioner_cleanup_test.rb +0 -56
  1393. data/test/unit_legacy/vagrant/action/vm/resume_test.rb +0 -35
  1394. data/test/unit_legacy/vagrant/action/vm/share_folders_test.rb +0 -144
  1395. data/test/unit_legacy/vagrant/action/vm/suspend_test.rb +0 -35
  1396. data/test/unit_legacy/vagrant/action_test.rb +0 -89
  1397. data/test/unit_legacy/vagrant/box_collection_test.rb +0 -45
  1398. data/test/unit_legacy/vagrant/box_test.rb +0 -74
  1399. data/test/unit_legacy/vagrant/cli_test.rb +0 -35
  1400. data/test/unit_legacy/vagrant/command/base_test.rb +0 -23
  1401. data/test/unit_legacy/vagrant/command/group_base_test.rb +0 -15
  1402. data/test/unit_legacy/vagrant/command/helpers_test.rb +0 -88
  1403. data/test/unit_legacy/vagrant/command/init_test.rb +0 -10
  1404. data/test/unit_legacy/vagrant/command/package_test.rb +0 -27
  1405. data/test/unit_legacy/vagrant/config/base_test.rb +0 -52
  1406. data/test/unit_legacy/vagrant/config/error_recorder_test.rb +0 -18
  1407. data/test/unit_legacy/vagrant/config/ssh_test.rb +0 -12
  1408. data/test/unit_legacy/vagrant/config/vagrant_test.rb +0 -35
  1409. data/test/unit_legacy/vagrant/config/vm/provisioner_test.rb +0 -92
  1410. data/test/unit_legacy/vagrant/config/vm_test.rb +0 -47
  1411. data/test/unit_legacy/vagrant/config_test.rb +0 -148
  1412. data/test/unit_legacy/vagrant/downloaders/http_test.rb +0 -93
  1413. data/test/unit_legacy/vagrant/environment_test.rb +0 -539
  1414. data/test/unit_legacy/vagrant/errors_test.rb +0 -42
  1415. data/test/unit_legacy/vagrant/hosts/base_test.rb +0 -46
  1416. data/test/unit_legacy/vagrant/hosts/bsd_test.rb +0 -53
  1417. data/test/unit_legacy/vagrant/hosts/linux_test.rb +0 -54
  1418. data/test/unit_legacy/vagrant/plugin_test.rb +0 -9
  1419. data/test/unit_legacy/vagrant/provisioners/base_test.rb +0 -63
  1420. data/test/unit_legacy/vagrant/provisioners/chef_client_test.rb +0 -190
  1421. data/test/unit_legacy/vagrant/provisioners/chef_solo_test.rb +0 -115
  1422. data/test/unit_legacy/vagrant/provisioners/chef_test.rb +0 -209
  1423. data/test/unit_legacy/vagrant/provisioners/puppet_server_test.rb +0 -68
  1424. data/test/unit_legacy/vagrant/provisioners/puppet_test.rb +0 -182
  1425. data/test/unit_legacy/vagrant/provisioners/shell_test.rb +0 -79
  1426. data/test/unit_legacy/vagrant/ssh/session_test.rb +0 -40
  1427. data/test/unit_legacy/vagrant/ssh_test.rb +0 -304
  1428. data/test/unit_legacy/vagrant/systems/base_test.rb +0 -18
  1429. data/test/unit_legacy/vagrant/systems/linux_test.rb +0 -104
  1430. data/test/unit_legacy/vagrant/util/busy_test.rb +0 -106
  1431. data/test/unit_legacy/vagrant/util/counter_test.rb +0 -29
  1432. data/test/unit_legacy/vagrant/util/platform_test.rb +0 -18
  1433. data/test/unit_legacy/vagrant/util/stacked_proc_runner_test.rb +0 -43
  1434. data/test/unit_legacy/vagrant/util/template_renderer_test.rb +0 -145
  1435. data/test/unit_legacy/vagrant/vm_test.rb +0 -300
  1436. /data/{test/buildbot/buildbot_config/__init__.py → .gitmodules} +0 -0
@@ -1,21 +1,824 @@
1
+ # Copyright (c) HashiCorp, Inc.
2
+ # SPDX-License-Identifier: BUSL-1.1
3
+
1
4
  en:
2
5
  vagrant:
6
+ alert: |-
7
+ [%{date}]:
8
+ %{message}
9
+
10
+ - %{url}
11
+ boot_completed: |-
12
+ Machine booted and ready!
13
+ boot_waiting: |-
14
+ Waiting for machine to boot. This may take a few minutes...
15
+ box_auto_adding: |-
16
+ Box '%{name}' could not be found. Attempting to find and install...
17
+ box_add_choose_provider: |-
18
+ This box can work with multiple providers! The providers that it
19
+ can work with are listed below. Please review the list and choose
20
+ the provider you will be working with.
21
+
22
+ %{options}
23
+
24
+ Enter your choice:
25
+ box_add_choose_provider_again: |-
26
+ Invalid choice. Try again:
27
+ box_add_with_version: |-
28
+ Adding box '%{name}' (v%{version}) for provider: %{providers}
29
+ box_added: |-
30
+ Successfully added box '%{name}' (v%{version}) for '%{provider}'!
31
+ box_adding_direct: |-
32
+ Box file was not detected as metadata. Adding it directly...
33
+ box_add_url_warn: |-
34
+ It looks like you attempted to add a box with a URL for the name...
35
+ Instead, use box_url instead of box for box URLs.
36
+ box_downloading: |-
37
+ Downloading: %{url}
38
+ box_download_error: |-
39
+ Error downloading: %{message}
40
+ box_unpacking: |-
41
+ Unpacking necessary files from: %{url}
42
+ box_expanding_url: |-
43
+ URL: %{url}
44
+ box_loading_metadata: |-
45
+ Loading metadata for box '%{name}'
46
+ box_malformed_continue_on_update: |-
47
+ Could not determine box updates because box metadata was malformed.
48
+ Vagrant will continue on...
49
+ box_outdated: |-
50
+ * '%{name}' for '%{provider}' is outdated! Current: %{current}. Latest: %{latest}
51
+ box_outdated_checking_with_refresh: |-
52
+ Checking if box '%{name}' version '%{version}' is up to date...
53
+ box_outdated_local: |-
54
+ A newer version of the box '%{name}' is available and already
55
+ installed, but your Vagrant machine is running against
56
+ version '%{old}'. To update to version '%{new}',
57
+ destroy and recreate your machine.
58
+ box_outdated_metadata_download_error: |-
59
+ There was a problem while downloading the metadata for your box
60
+ to check for updates. This is not an error, since it is usually due
61
+ to temporary network problems. This is just a warning. The problem
62
+ encountered was:
63
+
64
+ %{message}
65
+
66
+ If you want to check for box updates, verify your network connection
67
+ is valid and try again.
68
+ box_outdated_metadata_error_single: |-
69
+ Error loading box metadata while attempting to check for
70
+ updates: %{message}
71
+ box_outdated_single: |-
72
+ A newer version of the box '%{name}' for provider '%{provider}' is
73
+ available! You currently have version '%{current}'. The latest is version
74
+ '%{latest}'. Run `vagrant box update` to update.
75
+ box_outdated_metadata_error: |-
76
+ * '%{name}' for '%{provider}': Error loading metadata: %{message}
77
+ box_outdated_no_metadata: |-
78
+ * '%{name}' for '%{provider}' wasn't added from a catalog, no version information
79
+ box_updating: |-
80
+ Updating '%{name}' with provider '%{provider}' from version
81
+ '%{old}' to '%{new}'...
82
+ box_update_checking: |-
83
+ Checking for updates to '%{name}'
84
+ box_up_to_date: |-
85
+ * '%{name}' for '%{provider}' (v%{version}) is up to date
86
+ box_up_to_date_single: |-
87
+ Box '%{name}' (v%{version}) is running the latest version.
88
+ box_version_malformed:
89
+ Invalid version '%{version}' for '%{box_name}', ignoring...
90
+ cfengine_bootstrapping: |-
91
+ Bootstrapping CFEngine with policy server: %{policy_server}...
92
+ cfengine_bootstrapping_policy_hub: |-
93
+ Performing additional bootstrap for policy hubs...
94
+ cfengine_cant_detect: |-
95
+ Vagrant doesn't support detecting whether CFEngine is installed
96
+ for the guest OS running in the machine. Vagrant will assume it is
97
+ installed and attempt to continue.
98
+ cfengine_detected_ip: |-
99
+ Detected policy server IP address: %{address}...
100
+ cfengine_installing: |-
101
+ Installing CFEngine onto machine...
102
+ cfengine_installing_files_path: |-
103
+ Copying the 'files_path' files...
104
+ cfengine_no_bootstrap: |-
105
+ CFEngine doesn't require bootstrap. Not bootstrapping.
106
+ cfengine_single_run: |-
107
+ CFEngine running in "single run" mode. Will execute one file.
108
+ cfengine_single_run_execute: |-
109
+ Executing run file for CFEngine...
110
+ chef_cant_detect: |-
111
+ Vagrant does not support detecting whether Chef is installed
112
+ for the guest OS running in the machine. Vagrant will assume it is
113
+ installed and attempt to continue.
114
+ chef_already_installed: |-
115
+ Detected Chef (%{version}) is already installed
116
+ chef_installing: |-
117
+ Installing Chef (%{version})...
118
+ chef_client_cleanup_failed: |-
119
+ Cleaning up the '%{deletable}' for Chef failed. The stdout and
120
+ stderr are shown below. Vagrant will continue destroying the machine,
121
+ so please clean up these resources manually.
122
+
123
+ stdout: %{stdout}
124
+
125
+ stderr: %{stderr}
126
+ chef_config_knife_not_found: |-
127
+ The `knife` application was not found! This is required by Vagrant
128
+ to automatically delete Chef nodes and clients.
129
+ chef_run_list_empty: |-
130
+ Warning: Chef run list is empty. This may not be what you want.
131
+ cli_interrupt: |-
132
+ Exiting due to interrupt.
133
+ cloud_init_waiting: Waiting for cloud init to finish running
134
+ container_pulling_single: |-
135
+ -- Image: %{name}
136
+ container_building_single: |-
137
+ -- Path: %{path}
138
+ container_running: |-
139
+ -- Container: %{name}
140
+ container_restarting_container_args: |-
141
+ -- Detected changes to container '%{name}' args, restarting...
142
+ container_restarting_container_image: |-
143
+ -- Detected newer image for container '%{name}', restarting...
144
+ docker_auto_start_not_available: |-
145
+ Unable to configure automatic restart of Docker containers on
146
+ the guest machine
147
+ docker_cant_detect: |-
148
+ Vagrant doesn't support detecting whether Docker is installed
149
+ for the guest OS running in the machine. Vagrant will assume it is
150
+ installed and attempt to continue.
151
+ docker_configure_autostart: |-
152
+ Configuring Docker to autostart containers...
153
+ docker_installing: |-
154
+ Installing Docker onto machine...
155
+ docker_pulling_images:
156
+ Pulling Docker images...
157
+ docker_pulling_single: |-
158
+ -- Image: %{name}
159
+ docker_building_single: |-
160
+ -- Path: %{path}
161
+ docker_building_images:
162
+ Building Docker images...
163
+ docker_running: |-
164
+ -- Container: %{name}
165
+ docker_restarting_container_args: |-
166
+ -- Detected changes to container '%{name}' args, restarting...
167
+ docker_restarting_container_image: |-
168
+ -- Detected newer image for container '%{name}', restarting...
169
+ docker_starting_containers: |-
170
+ Starting Docker containers...
171
+ hyperv_enable_enhanced_session: |-
172
+ Setting VM Enhanced session transport type to HvSocket
173
+ hyperv_disable_enhanced_session: |-
174
+ Setting VM Enhanced session transport type to disabled/default (VMBus)
175
+ inserted_key: |-
176
+ Key inserted! Disconnecting and reconnecting using new SSH key...
177
+ inserting_insecure_detected: |-
178
+ Vagrant insecure key detected. Vagrant will automatically replace
179
+ this with a newly generated keypair for better security.
180
+ inserting_random_key: |-
181
+ Inserting generated public key within guest...
182
+ inserting_remove_key: |-
183
+ Removing insecure key from the guest if it's present...
184
+ installing_provider: |-
185
+ Provider '%{provider}' not found. We'll automatically install it now...
186
+ installing_provider_detail: |-
187
+ The installation process will start below. Human interaction may be
188
+ required at some points. If you're uncomfortable with automatically
189
+ installing this provider, you can safely Ctrl-C this process and install
190
+ it manually.
191
+ list_commands: |-
192
+ Below is a listing of all available Vagrant commands and a brief
193
+ description of what they do.
194
+
195
+ %{list}
196
+ moved_cwd: |-
197
+ This machine used to live in %{old_wd} but it's now at %{current_wd}.
198
+ Depending on your current provider you may need to change the name of
199
+ the machine to run it as a different machine.
200
+ guest_deb_installing_smb: |-
201
+ Installing SMB "mount.cifs"...
202
+ global_status_footer: |-
203
+ The above shows information about all known Vagrant environments
204
+ on this machine. This data is cached and may not be completely
205
+ up-to-date (use "vagrant global-status --prune" to prune invalid
206
+ entries). To interact with any of the machines, you can go to that
207
+ directory and run Vagrant, or you can use the ID directly with
208
+ Vagrant commands from any directory. For example:
209
+ "vagrant destroy 1a2b3c4d"
210
+ global_status_none: |-
211
+ There are no active Vagrant environments on this computer! Or,
212
+ you haven't destroyed and recreated Vagrant environments that were
213
+ started with an older version of Vagrant.
214
+ plugin_needs_reinstall: |-
215
+ The following plugins were installed with a version of Vagrant
216
+ that had different versions of underlying components. Because
217
+ these component versions were changed (which rarely happens),
218
+ the plugins must be uninstalled and reinstalled.
219
+
220
+ To ensure that all the dependencies are properly updated as well
221
+ it is _highly recommended_ to do a `vagrant plugin uninstall`
222
+ prior to reinstalling.
223
+
224
+ This message will not go away until all the plugins below are
225
+ either uninstalled or uninstalled then reinstalled.
226
+
227
+ The plugins below will not be loaded until they're uninstalled
228
+ and reinstalled:
229
+
230
+ %{names}
231
+ post_up_message: |-
232
+ Machine '%{name}' has a post `vagrant up` message. This is a message
233
+ from the creator of the Vagrantfile, and not from Vagrant itself:
234
+
235
+ %{message}
236
+ provisioner_cleanup: |-
237
+ Running cleanup tasks for '%{name}' provisioner...
238
+ rsync_auto_initial: |-
239
+ Doing an initial rsync...
240
+ rsync_auto_new_folders: |-
241
+ New synced folders were added to the Vagrantfile since running
242
+ `vagrant reload`. If these new synced folders are backed by rsync,
243
+ they won't be automatically synced until a `vagrant reload` is run.
244
+ rsync_auto_no_paths: |-
245
+ There are no paths to watch! This is either because you have no
246
+ synced folders using rsync, or any rsync synced folders you have
247
+ have specified `rsync_auto` to be false.
248
+ rsync_auto_path: |-
249
+ Watching: %{path}
250
+ rsync_auto_remove_folder: |-
251
+ Not syncing %{folder} as it is not part of the current working directory.
252
+ rsync_auto_rsync_error: |-
253
+ There was an error while executing rsync. The error is shown below.
254
+ This may not be critical since rsync sometimes fails, but if this message
255
+ repeats, then please fix the issue:
256
+
257
+ %{message}
258
+ rsync_auto_post_command_error: |-
259
+ There was an error while executing the rsync post command. This error is
260
+ shown below. This may not be critical but if this message repeats please
261
+ fix the issue:
262
+
263
+ %{message}
264
+ rsync_communicator_not_ready: |-
265
+ The machine is reporting that it is not ready for rsync to
266
+ communicate with it. Verify that this machine is properly running.
267
+ rsync_communicator_not_ready_callback: |-
268
+ Failed to connect to remote machine. This is usually caused by the
269
+ machine rebooting or being halted. Please make sure the machine is
270
+ running, and modify a file to try again.
271
+ rsync_folder: |-
272
+ Rsyncing folder: %{hostpath} => %{guestpath}
273
+ rsync_folder_excludes: " - Exclude: %{excludes}"
274
+ rsync_installing: "Installing rsync to the VM..."
275
+ rsync_proxy_machine: |-
276
+ The provider ('%{provider}') for the machine '%{name}' is
277
+ using a proxy machine. RSync will sync to this proxy
278
+ instead of directly to the environment itself.
279
+ rsync_showing_output: "Showing rsync output..."
280
+ rsync_ssh_password: |-
281
+ The machine you're rsyncing folders to is configured to use
282
+ password-based authentication. Vagrant can't script rsync to automatically
283
+ enter this password, so you'll likely be prompted for a password
284
+ shortly.
285
+
286
+ If you don't want to have to do this, please enable automatic
287
+ key insertion using `config.ssh.insert_key`.
288
+ ssh_exec_password: |-
289
+ The machine you're attempting to SSH into is configured to use
290
+ password-based authentication. Vagrant can't script entering the
291
+ password for you. If you're prompted for a password, please enter
292
+ the same password you have configured in the Vagrantfile.
293
+ stdin_cant_hide_input: |-
294
+ Error! Your console doesn't support hiding input. We'll ask for
295
+ input again below, but we WILL NOT be able to hide input. If this
296
+ is a problem for you, ctrl-C to exit and fix your stdin.
297
+ up_no_machines: |-
298
+ No machines to bring up. This is usually because all machines are
299
+ set to `autostart: false`, which means you have to explicitly specify
300
+ the name of the machine to bring up.
301
+ upgrading_home_path_v1_5: |-
302
+ Vagrant is upgrading some internal state for the latest version.
303
+ Please do not quit Vagrant at this time. While upgrading, Vagrant
304
+ will need to copy all your boxes, so it will use a considerable
305
+ amount of disk space. After it is done upgrading, the temporary disk
306
+ space will be freed.
307
+
308
+ Press ctrl-c now to exit if you want to remove some boxes or free
309
+ up some disk space.
310
+
311
+ Press the Enter or Return key to continue.
312
+
313
+ trigger:
314
+ on_error_continue: |-
315
+ Trigger configured to continue on error...
316
+ abort: |-
317
+ Vagrant has been configured to abort. Terminating now...
318
+ abort_threaded: |-
319
+ Vagrant has been configured to abort. Vagrant will terminate
320
+ after remaining running actions have completed...
321
+ start: |-
322
+ Running %{type} triggers %{stage} %{name} ...
323
+ fire_with_name: |-
324
+ Running trigger: %{name}...
325
+ fire: |-
326
+ Running trigger...
327
+ run:
328
+ inline: |-
329
+ Running local: Inline script
330
+ %{command}
331
+ script: |-
332
+ Running local script: %{path}
333
+
334
+
335
+ version_current: |-
336
+ Installed Version: %{version}
337
+ version_latest: |-
338
+ Latest Version: %{version}
339
+ version_latest_installed: |-
340
+ You're running an up-to-date version of Vagrant!
341
+ version_no_checkpoint: |-
342
+ Vagrant was unable to check for the latest version of Vagrant.
343
+ Please check manually at https://www.vagrantup.com
344
+ version_upgrade_available: |-
345
+ A new version of Vagrant is available: %{latest_version} (installed version: %{installed_version})!
346
+ To upgrade visit: https://www.vagrantup.com/downloads.html
347
+
348
+ version_upgrade_howto: |-
349
+ To upgrade to the latest version, visit the downloads page and
350
+ download and install the latest version of Vagrant from the URL
351
+ below:
352
+
353
+ https://www.vagrantup.com/downloads.html
354
+
355
+ If you're curious what changed in the latest release, view the
356
+ CHANGELOG below:
357
+
358
+ https://github.com/hashicorp/vagrant/blob/v%{version}/CHANGELOG.md
359
+
360
+ cfengine_config:
361
+ classes_array: |-
362
+ The 'classes' configuration must be an array.
363
+ files_path_not_directory: |-
364
+ The 'files_path' must point to a valid directory.
365
+ invalid_mode: |-
366
+ The mode must be 'bootstrap' or 'single_run'
367
+ policy_server_address: |-
368
+ The policy server address must be set for bootstrapping.
369
+ run_file_not_found: |-
370
+ The 'run_file' specified could not be found.
371
+
372
+ virtualbox:
373
+ checking_guest_additions: |-
374
+ Checking for guest additions in VM...
375
+ network_adapter: |-
376
+ Adapter %{adapter}: %{type}%{extra}
377
+ config:
378
+ id_in_pre_import: |-
379
+ The ':id' parameter is not available in "pre-import" customizations.
380
+ intnet_on_bad_type: |-
381
+ VirtualBox internal networks can only be enabled on "private_network"
382
+ invalid_event: |-
383
+ %{event} is not a valid event for customization. Valid events
384
+ are: %{valid_events}
385
+ warning:
386
+ shared_folder_symlink_create: |-
387
+ Vagrant is currently configured to create VirtualBox synced folders with
388
+ the `SharedFoldersEnableSymlinksCreate` option enabled. If the Vagrant
389
+ guest is not trusted, you may want to disable this option. For more
390
+ information on this option, please refer to the VirtualBox manual:
391
+
392
+ https://www.virtualbox.org/manual/ch04.html#sharedfolders
393
+
394
+ This option can be disabled globally with an environment variable:
395
+
396
+ VAGRANT_DISABLE_VBOXSYMLINKCREATE=1
397
+
398
+ or on a per folder basis within the Vagrantfile:
399
+
400
+ config.vm.synced_folder '/host/path', '/guest/path', SharedFoldersEnableSymlinksCreate: false
3
401
  general:
4
- moving_home_dir: "Moving old Vagrant home directory to new location: %{directory}"
5
- home_dir_migration_failed: |-
6
- Both an old and new Vagrant home directory exist. Only the new one will
7
- be used. Please merge the old directory into the new directory if you'd
8
- like to use the old data as well.
402
+ batch_notify_error: |-
403
+ An error occurred. The error will be shown after all tasks complete.
404
+ batch_unexpected_error: |-
405
+ An unexpected error occurred when executing the action on the
406
+ '%{machine}' machine. Please report this as a bug:
407
+
408
+ %{message}
409
+ batch_vagrant_error: |-
410
+ An error occurred while executing the action on the '%{machine}'
411
+ machine. Please handle this error then try again:
412
+
413
+ %{message}
414
+ config_upgrade_messages: |-
415
+ There were warnings and/or errors while loading your Vagrantfile
416
+ for the machine '%{name}'.
417
+
418
+ Your Vagrantfile was written for an earlier version of Vagrant,
419
+ and while Vagrant does the best it can to remain backwards
420
+ compatible, there are some cases where things have changed
421
+ significantly enough to warrant a message. These messages are
422
+ shown below.
9
423
 
10
- Old: %{old}
11
- New: %{new}
424
+ %{output}
425
+ experimental:
426
+ all: |-
427
+ You have enabled the experimental flag with all features enabled.
428
+ Please use with caution, as some of the features may not be fully
429
+ functional yet.
430
+ features: |-
431
+ You have requested to enable the experimental flag with the following features:
12
432
 
433
+ Features: %{features}
434
+
435
+ Please use with caution, as some of the features may not be fully
436
+ functional yet.
437
+ not_in_installer: |-
438
+ You appear to be running Vagrant outside of the official installers.
439
+ Note that the installers are what ensure that Vagrant has all required
440
+ dependencies. Vagrant has detected that the following executables are
441
+ currently unavailable:
442
+
443
+ %{tools}
444
+ upgraded_v1_dotfile: |-
445
+ A Vagrant 1.0.x state file was found for this environment. Vagrant has
446
+ gone ahead and auto-upgraded this to the latest format. Everything
447
+ should continue working as normal. Beware, however, that older versions
448
+ of Vagrant may no longer be used with this environment.
449
+
450
+ However, in case anything went wrong, the old dotfile was backed up
451
+ to the location below. If everything is okay, it is safe to remove
452
+ this backup.
453
+
454
+ Backup: %{backup_path}
455
+
456
+ plugins:
457
+ local:
458
+ uninstalled_plugins: |-
459
+ Vagrant has detected project local plugins configured for this
460
+ project which are not installed.
461
+
462
+ %{plugins}
463
+ request_plugin_install: |-
464
+ Install local plugins (Y/N)
465
+ install_rerun_command: |-
466
+ Vagrant has completed installing local plugins for the current Vagrant
467
+ project directory. Please run the requested command again.
468
+
469
+ install_all: |-
470
+ Vagrant will now install the following plugins to the local project
471
+ which have been defined in current Vagrantfile:
472
+
473
+ %{plugins}
474
+
475
+ Press ctrl-c to cancel...
13
476
  #-------------------------------------------------------------------------------
14
477
  # Translations for exception classes
15
478
  #-------------------------------------------------------------------------------
16
479
  errors:
17
- base_vm_not_found: The base VM with the name '%{name}' was not found.
18
- box_not_found: Box '%{name}' could not be found.
480
+ active_machine_with_different_provider: |-
481
+ An active machine was found with a different provider. Vagrant
482
+ currently allows each machine to be brought up with only a single
483
+ provider at a time. A future version will remove this limitation.
484
+ Until then, please destroy the existing machine to up with a new
485
+ provider.
486
+
487
+ Machine name: %{name}
488
+ Active provider: %{active_provider}
489
+ Requested provider: %{requested_provider}
490
+ alias_invalid_error: |-
491
+ The defined alias is not valid. Please review the information below
492
+ to help resolve the issue:
493
+
494
+ Alias: %{alias}
495
+ Message: %{message}
496
+ batch_multi_error: |-
497
+ An error occurred while executing multiple actions in parallel.
498
+ Any errors that occurred are shown below.
499
+
500
+ %{message}
501
+ box_add_no_matching_provider: |-
502
+ The box you're attempting to add doesn't support the provider
503
+ you requested. Please find an alternate box or use an alternate
504
+ provider. Double-check your requested provider to verify you didn't
505
+ simply misspell it.
506
+
507
+ If you're adding a box from HashiCorp's Vagrant Cloud, make sure the box is
508
+ released.
509
+
510
+ Name: %{name}
511
+ Address: %{url}
512
+ Requested provider: %{requested}
513
+ box_add_no_matching_version: |-
514
+ The box you're attempting to add has no available version that
515
+ matches the constraints you requested. Please double-check your
516
+ settings. Also verify that if you specified version constraints,
517
+ that the provider you wish to use is available for these constraints.
518
+
519
+ Box: %{name}
520
+ Address: %{url}
521
+ Constraints: %{constraints}
522
+ Available versions: %{versions}
523
+ box_add_short_not_found: |-
524
+ The box '%{name}' could not be found or
525
+ could not be accessed in the remote catalog. If this is a private
526
+ box on HashiCorp's Vagrant Cloud, please verify you're logged in via
527
+ `vagrant login`. Also, please double-check the name. The expanded
528
+ URL and error message are shown below:
529
+
530
+ URL: %{url}
531
+ Error: %{error}
532
+ boot_bad_state: |-
533
+ The guest machine entered an invalid state while waiting for it
534
+ to boot. Valid states are '%{valid}'. The machine is in the
535
+ '%{invalid}' state. Please verify everything is configured
536
+ properly and try again.
537
+
538
+ If the provider you're using has a GUI that comes with it,
539
+ it is often helpful to open that and watch the machine, since the
540
+ GUI often has more helpful error messages than Vagrant can retrieve.
541
+ For example, if you're using VirtualBox, run `vagrant up` while the
542
+ VirtualBox GUI is open.
543
+
544
+ The primary issue for this error is that the provider you're using
545
+ is not properly configured. This is very rarely a Vagrant issue.
546
+ boot_timeout: |-
547
+ Timed out while waiting for the machine to boot. This means that
548
+ Vagrant was unable to communicate with the guest machine within
549
+ the configured ("config.vm.boot_timeout" value) time period.
550
+
551
+ If you look above, you should be able to see the error(s) that
552
+ Vagrant had when attempting to connect to the machine. These errors
553
+ are usually good hints as to what may be wrong.
554
+
555
+ If you're using a custom box, make sure that networking is properly
556
+ working and you're able to connect to the machine. It is a common
557
+ problem that networking isn't setup properly in these boxes.
558
+ Verify that authentication configurations are also setup properly,
559
+ as well.
560
+
561
+ If the box appears to be booting properly, you may want to increase
562
+ the timeout ("config.vm.boot_timeout") value.
563
+ box_add_exists: |-
564
+ The box you're attempting to add already exists. Remove it before
565
+ adding it again or add it with the `--force` flag.
566
+
567
+ Name: %{name}
568
+ Provider: %{provider}
569
+ Version: %{version}
570
+ box_add_direct_version: |-
571
+ You specified a box version constraint with a direct box file
572
+ path. Box version constraints only work with boxes from Vagrant
573
+ Cloud or a custom box host. Please remove the version constraint
574
+ and try again.
575
+ box_add_metadata_multi_url: |-
576
+ Multiple URLs for a box can't be specified when adding
577
+ versioned boxes. Please specify a single URL to the box
578
+ metadata (JSON) information. The full list of URLs you
579
+ specified is shown below:
580
+
581
+ %{urls}
582
+ box_add_name_mismatch: |-
583
+ The box you're adding has a name different from the name you
584
+ requested. For boxes with metadata, you cannot override the name.
585
+ If you're adding a box using `vagrant box add`, don't specify
586
+ the `--name` parameter. If the box is being added via a Vagrantfile,
587
+ change the `config.vm.box` value to match the name below.
588
+
589
+ Requested name: %{requested_name}
590
+ Actual name: %{actual_name}
591
+ box_add_name_required: |-
592
+ A name is required when adding a box file directly. Please pass
593
+ the `--name` parameter to `vagrant box add`. See
594
+ `vagrant box add -h` for more help.
595
+ box_checksum_invalid_type: |-
596
+ The specified checksum type is not supported by Vagrant: %{type}.
597
+ Vagrant supports the following checksum types:
598
+
599
+ %{types}
600
+ box_checksum_mismatch: |-
601
+ The checksum of the downloaded box did not match the expected
602
+ value. Please verify that you have the proper URL setup and that
603
+ you're downloading the proper file.
604
+
605
+ Expected: %{expected}
606
+ Received: %{actual}
607
+ box_config_changing_box: |-
608
+ While loading the Vagrantfile, the provider override specified
609
+ a new box. This box, in turn, specified a different box. This isn't
610
+ allowed, as it could lead to infinite recursion of Vagrant configuration
611
+ loading. Please fix this.
612
+ box_file_not_exist: |-
613
+ The file you are attempting to upload does not exist. Please recheck
614
+ that the file exists and was passed in correctly.
615
+
616
+ File: %{file}
617
+ box_metadata_corrupted: |-
618
+ The metadata associated with the box '%{name}' appears corrupted.
619
+ This is most often caused by a disk issue or system crash. Please
620
+ remove the box, re-add it, and try again.
621
+ box_metadata_missing_required_fields: |-
622
+ The metadata associated with the box '%{name}' appears to be missing
623
+ the required field '%{required_field}'. Please ensure `metadata.json`
624
+ has all required fields.
625
+
626
+ Required fields: %{all_fields}
627
+ box_metadata_download_error: |-
628
+ There was an error while downloading the metadata for this box.
629
+ The error message is shown below:
630
+
631
+ %{message}
632
+ box_metadata_file_not_found: |-
633
+ The "metadata.json" file for the box '%{name}' was not found.
634
+ Boxes require this file in order for Vagrant to determine the
635
+ provider it was made for. If you made the box, please add a
636
+ "metadata.json" file to it. If someone else made the box, please
637
+ notify the box creator that the box is corrupt. Documentation for
638
+ box file format can be found at the URL below:
639
+
640
+ https://www.vagrantup.com/docs/boxes/format.html
641
+ box_metadata_malformed: |-
642
+ The metadata for the box was malformed. The exact error
643
+ is shown below. Please contact the maintainer of the box so
644
+ that this issue can be fixed.
645
+
646
+ %{error}
647
+ box_metadata_malformed_version: |-
648
+ A version of the box you're loading is formatted in a way that
649
+ Vagrant cannot parse: '%{version}'. Please reformat the version
650
+ to be properly formatted. It should be in the format of
651
+ X.Y.Z.
652
+ box_not_found: |-
653
+ The box '%{name}' does not exist. Please double check and
654
+ try again. You can see the boxes that are installed with
655
+ `vagrant box list`.
656
+ box_not_found_with_provider: |-
657
+ The box '%{name}' isn't installed for the provider '%{provider}'.
658
+ Please double-check and try again. The installed providers for
659
+ the box are shown below:
660
+
661
+ %{providers}
662
+ box_not_found_with_provider_architecture: |-
663
+ The box '%{name}' for the provider '%{provider}' isn't installed
664
+ for the architecture '%{architecture}'. Please double-check and
665
+ try again. The installed architectures for the box are shown
666
+ below:
667
+
668
+ %{architectures}
669
+ box_not_found_with_provider_and_version: |-
670
+ The box '%{name}' (v%{version}) with provider '%{provider}'
671
+ could not be found. Please double check and try again. You
672
+ can see all the boxes that are installed with `vagrant box list`.
673
+ box_provider_doesnt_match: |-
674
+ The box you attempted to add doesn't match the provider you specified.
675
+
676
+ Provider expected: %{expected}
677
+ Provider of box: %{actual}
678
+ box_remove_multi_provider: |-
679
+ You requested to remove the box '%{name}' version '%{version}'. This
680
+ box has multiple providers. You must explicitly select a single provider to
681
+ remove with `--provider` or specify the `--all-providers` flag to remove
682
+ all providers.
683
+
684
+ Available providers: %{providers}
685
+ box_remove_multi_version: |-
686
+ You requested to remove the box '%{name}'. This box has multiple
687
+ versions. You must explicitly specify which version you want to
688
+ remove with the `--box-version` flag or specify the `--all` flag
689
+ to remove all versions. The available versions for this box are:
690
+
691
+ %{versions}
692
+ box_remove_not_found: |-
693
+ The box you requested to be removed could not be found. No
694
+ boxes named '%{name}' could be found.
695
+ box_remove_provider_not_found: |-
696
+ You requested to remove the box '%{name}' version '%{version}'
697
+ with provider '%{provider}'. The box '%{name}' exists but not
698
+ with the provider specified. Please double-check and try again.
699
+
700
+ The providers for this are: %{providers}
701
+ box_remove_version_not_found: |-
702
+ You requested to remove the box '%{name}' version '%{version}',
703
+ but that specific version of the box is not installed. Please
704
+ double-check and try again. The available versions for this box
705
+ are:
706
+
707
+ %{versions}
708
+ box_remove_multi_architecture: |-
709
+ You requested to remove the box '%{name}' version '%{version}'
710
+ with provider '%{provider}'. This box has multiple architectures.
711
+ You must explicitly select a single architecture to remove with
712
+ `--architecture` or specify the `--all-architectures` flag to
713
+ remove all architectures. The available architectures for this
714
+ box are:
715
+
716
+ %{architectures}
717
+ box_remove_architecture_not_found: |-
718
+ You requested to remove the box '%{name}' version '%{version}'
719
+ with provider '%{provider}' and architecture '%{architecture}' but
720
+ that specific architecture is not installed. Please double-check
721
+ and try again. The available architectures are:
722
+
723
+ %{architectures}
724
+ box_server_not_set: |-
725
+ A URL to a Vagrant Cloud server is not set, so boxes cannot be added with a
726
+ shorthand ("mitchellh/precise64") format. You may also be seeing this
727
+ error if you meant to type in a path to a box file which doesn't exist
728
+ locally on your system.
729
+
730
+ To set a URL to a Vagrant Cloud server, set the `VAGRANT_SERVER_URL`
731
+ environmental variable. Or, if you meant to use a file path, make sure
732
+ the path to the file is valid.
733
+ box_update_multi_provider: |-
734
+ You requested to update the box '%{name}'. This box has
735
+ multiple providers. You must explicitly select a single
736
+ provider to update with `--provider`.
737
+
738
+ Available providers: %{providers}
739
+ box_update_multi_architecture: |-
740
+ You requested to update the box '%{name}' (v%{version}) with provider
741
+ '%{provider}'. This box has multiple architectures. You must explicitly
742
+ select a single architecture to update with `--architecture`.
743
+
744
+ Available architectures: %{architectures}
745
+ box_update_no_box: |-
746
+ Box '%{name}' not installed, can't check for updates.
747
+ box_update_no_metadata: |-
748
+ The box '%{name}' is not a versioned box. The box was added
749
+ directly instead of from a box catalog. Vagrant can only
750
+ check the versions of boxes that were added from a catalog
751
+ such as from the public Vagrant Server.
752
+ box_update_no_name: |-
753
+ This machine doesn't have a box. Won't update anything.
754
+ box_version_invalid: |-
755
+ The format of box version provided (%{version}) is incorrect. The
756
+ version must follow the semantic versioning format or semantic
757
+ versioning compatible constraint format. Examples of valid values:
758
+
759
+ 2.0
760
+ 2.1.4
761
+ >= 2
762
+ < 3.0.0
763
+ bundler_disabled: |-
764
+ Vagrant's built-in bundler management mechanism is disabled because
765
+ Vagrant is running in an external bundler environment. In these
766
+ cases, plugin management does not work with Vagrant. To install
767
+ plugins, use your own Gemfile. To load plugins, either put the
768
+ plugins in the `plugins` group in your Gemfile or manually require
769
+ them in a Vagrantfile.
770
+ bundler_error: |-
771
+ Vagrant failed to properly resolve required dependencies. These
772
+ errors can commonly be caused by misconfigured plugin installations
773
+ or transient network issues. The reported error is:
774
+
775
+ %{message}
776
+ source_spec_not_found: |-
777
+ Vagrant failed to properly initialize its internal library
778
+ dependencies. Please try running the command again. If this
779
+ error persists, please report a bug.
780
+ cant_read_mac_addresses: |-
781
+ The provider you are using ('%{provider}') doesn't support the
782
+ "nic_mac_addresses" provider capability which is required
783
+ for advanced networking to work with this guest OS. Please inform
784
+ the author of the provider to add this feature.
785
+
786
+ Until then, you must remove any networking configurations other
787
+ than forwarded ports from your Vagrantfile for Vagrant to continue.
788
+ capability_host_explicit_not_detected: |-
789
+ The explicit capability host specified of '%{value}' could not be
790
+ found.
791
+
792
+ This is an internal error that users should never see. Please report
793
+ a bug.
794
+ capability_host_not_detected: |-
795
+ The capability host could not be detected. This is an internal error
796
+ that users should never see. Please report a bug.
797
+ capability_invalid: |-
798
+ The capability '%{cap}' is invalid. This is an internal error that
799
+ users should never see. Please report a bug.
800
+ capability_not_found: |-
801
+ The capability '%{cap}' could not be found. This is an internal error
802
+ that users should never see. Please report a bug.
803
+
804
+ cfengine_bootstrap_failed: |-
805
+ Failed to bootstrap CFEngine. Please see the output above to
806
+ see what went wrong and address the issue.
807
+ cfengine_cant_autodetect_ip: |-
808
+ Vagrant was unable to automatically detect the IP address of the
809
+ running machine to use as the policy server address. Please specify
810
+ the policy server address manually, or verify that the networks are
811
+ configured properly internally.
812
+ cfengine_install_failed: |-
813
+ After installing CFEngine, Vagrant still can't detect a proper
814
+ CFEngine installation. Please verify that CFEngine was properly
815
+ installed, as the installation may have failed.
816
+ cfengine_not_installed: |-
817
+ CFEngine appears not to be installed on the guest machine. Vagrant
818
+ can attempt to install CFEngine for you if you set the "install"
819
+ setting to "true", but this setting was not set. Please install
820
+ CFEngine on the guest machine or enable the "install" setting for
821
+ Vagrant to attempt to install it for you.
19
822
  cli_invalid_options: |-
20
823
  An invalid option was specified. The help for this command
21
824
  is available below.
@@ -26,81 +829,640 @@ en:
26
829
  available below.
27
830
 
28
831
  %{help}
29
- config_validation: |-
30
- There was a problem with the configuration of Vagrant. The error message(s)
31
- are printed below:
832
+ clone_not_found: |-
833
+ The specified Vagrantfile to clone from was not found. Please verify
834
+ the `config.vm.clone` setting points to a valid Vagrantfile.
835
+ clone_machine_not_found: |-
836
+ The clone environment hasn't been created yet. To clone from
837
+ another Vagrantfile, it must already be created with `vagrant up`.
838
+ It doesn't need to be running.
32
839
 
33
- %{messages}
34
- deprecation: |-
35
- You are using a feature that has been removed in this version. Explanation:
840
+ Additionally, the created environment must be started with a provider
841
+ matching this provider. For example, if you're using VirtualBox,
842
+ the clone environment must also be using VirtualBox.
843
+ cloud_init_not_found: |-
844
+ cloud-init is not found. Please ensure that cloud-init is installed and
845
+ available on path for guest '%{guest_name}'.
846
+ cloud_init_command_failed: |-
847
+ cloud init command '%{cmd}' failed on guest '%{guest_name}'.
848
+ command_deprecated: |-
849
+ The command 'vagrant %{name}' has been deprecated and is no longer functional
850
+ within Vagrant.
851
+ command_suspend_all_arguments: |-
852
+ The suspend command with the `--all-global` flag does not take any arguments.
853
+ command_unavailable: |-
854
+ The executable '%{file}' Vagrant is trying to run was not
855
+ found in the PATH variable. This is an error. Please verify
856
+ this software is installed and on the path.
857
+ command_unavailable_windows: |-
858
+ The executable '%{file}' Vagrant is trying to run was not
859
+ found in the %PATH% variable. This is an error. Please verify
860
+ this software is installed and on the path.
861
+ communicator_not_found: |-
862
+ The requested communicator '%{comm}' could not be found.
863
+ Please verify the name is correct and try again.
864
+ config_invalid: |-
865
+ There are errors in the configuration of this machine. Please fix
866
+ the following errors and try again:
36
867
 
37
- %{message}
38
- Note that this error message will not appear in the next version of Vagrant.
868
+ %{errors}
869
+ config_upgrade_errors: |-
870
+ Because there were errors upgrading your Vagrantfiles, Vagrant
871
+ can no longer continue. Please fix the errors above and try again.
872
+ copy_private_key_failed: |-
873
+ Vagrant failed to copy the default insecure private key into your
874
+ home directory. This is usually caused by a permissions error.
875
+ Please make sure the permissions of the source is readable and
876
+ the destination is writable.
877
+
878
+ Source: %{source}
879
+ Destination: %{destination}
880
+ corrupt_machine_index: |-
881
+ The machine index which stores all required information about
882
+ running Vagrant environments has become corrupt. This is usually
883
+ caused by external tampering of the Vagrant data folder.
884
+
885
+ Vagrant cannot manage any Vagrant environments if the index is
886
+ corrupt. Please attempt to manually correct it. If you are unable
887
+ to manually correct it, then remove the data file at the path below.
888
+ This will leave all existing Vagrant environments "orphaned" and
889
+ they'll have to be destroyed manually.
890
+
891
+ Path: %{path}
892
+ create_iso_host_cap_not_found: |-
893
+ Vagrant cannot create an iso due to the host capability for creating isos not existing.
894
+ Vagrant will now exit.
895
+ darwin_mount_failed: |-
896
+ Failed to mount folders in Darwin guest. The command attempted was:
897
+
898
+ %{command}
899
+
900
+ The error output from the last command was:
901
+
902
+ %{output}
903
+ darwin_version_failed: |-
904
+ Failed to determine macOS version.
905
+
906
+ Version string: %{version}
907
+ Error information: %{error}
39
908
  destroy_requires_force: |-
40
909
  Destroy doesn't have a TTY to ask for confirmation. Please pass the
41
910
  `--force` flag to force a destroy, otherwise attach a TTY so that
42
911
  the destroy can be confirmed.
43
- dotfile_is_directory: |-
44
- The local file Vagrant uses to store data ".vagrant" already exists
45
- and is a directory! If you are in your home directory, then please run
46
- this command in another directory. If you aren't in a home directory,
47
- then please rename ".vagrant" to something else, or configure Vagrant
48
- to use another filename by modifying `config.vagrant.dotfile_name`.
912
+ dotfile_upgrade_json_error: |-
913
+ A Vagrant 1.0.x local state file was found. Vagrant is able to upgrade
914
+ this to the latest format automatically, however various checks are
915
+ put in place to verify data isn't incorrectly deleted. In this case,
916
+ the old state file was not valid JSON. Vagrant 1.0.x would store state
917
+ as valid JSON, meaning that this file was probably tampered with or
918
+ manually edited. Vagrant's auto-upgrade process cannot continue in this
919
+ case.
920
+
921
+ In most cases, this can be resolve by simply removing the state file.
922
+ Note however though that if Vagrant was previously managing virtual
923
+ machines, they may be left in an "orphan" state. That is, if they are
924
+ running or exist, they'll have to manually be removed.
925
+
926
+ If you're unsure what to do, ask the Vagrant mailing list or contact
927
+ support.
928
+
929
+ State file path: %{state_file}
930
+ download_already_in_progress_error: |-
931
+ Download to global Vagrant location already in progress. This
932
+ may be caused by other Vagrant processes attempting to download
933
+ a file to the same location.
934
+
935
+ Download path: %{dest_path}
936
+ Lock file path: %{lock_file_path}
937
+ downloader_error: |-
938
+ An error occurred while downloading the remote file. The error
939
+ message, if any, is reproduced below. Please fix this error and try
940
+ again.
941
+
942
+ %{message}
943
+ downloader_interrupted: |-
944
+ The download was interrupted by an external signal. It did not
945
+ complete.
946
+ downloader_checksum_error: |-
947
+ The calculated checksum of the requested file does not match the expected
948
+ checksum!
949
+
950
+ File source: %{source}
951
+ Checksum type: %{type}
952
+ Expected checksum: %{expected_checksum}
953
+ Calculated checksum: %{actual_checksum}
954
+ env_inval: |-
955
+ Vagrant received an "EINVAL" error while attempting to set some
956
+ environment variables. This is usually caused by the total size of your
957
+ environment variables being too large. Vagrant sets a handful of
958
+ environment variables to function and requires this to work. Please
959
+ delete some environment variables prior to executing Vagrant to
960
+ fix this.
49
961
  environment_locked: |-
50
- An instance of Vagrant is already running. Only one instance of Vagrant
51
- may run at any given time to avoid problems with VirtualBox inconsistencies
52
- occurring. Please wait for the other instance of Vagrant to end and then
53
- try again.
54
- gem_command_in_bundler: |-
55
- You cannot run the `vagrant gem` command while in a bundler environment.
56
- Bundler messes around quite a bit with the RubyGem load paths and gems
57
- installed via `vagrant gem` are excluded by Bundler.
58
-
59
- Instead, please include your Vagrant plugins in your Gemfile itself.
60
- guest:
61
- invalid_class: |-
62
- The specified guest class does not inherit from `Vagrant::Guest::Base`.
63
- The specified guest class must inherit from this class.
64
-
65
- The specified guest class was: %{guest}
66
- unknown_type: |-
67
- The specified guest type is unknown: %{guest}. Please change this
68
- to a proper value.
69
- unspecified: |-
70
- A VM guest type must be specified! This is done via the `config.vm.guest`
71
- configuration value. Please read the documentation online for more information.
962
+ Vagrant attempted to acquire a lock named '%{name}', but this
963
+ lock is being held by another instance of Vagrant already. Please
964
+ wait and try again.
965
+ environment_non_existent_cwd: |-
966
+ The working directory for Vagrant doesn't exist! This is the
967
+ specified working directory:
968
+
969
+ %{cwd}
970
+ forward_port_adapter_not_found: |-
971
+ The adapter to attach a forwarded port to was not found. Please
972
+ verify that the given adapter is setup on the machine as a NAT
973
+ interface.
974
+
975
+ Host port: %{host}
976
+ Guest port: %{guest}
977
+ Adapter: %{adapter}
978
+ freebsd_nfs_whitespace: |-
979
+ FreeBSD hosts do not support sharing directories with whitespace in
980
+ their path. Please adjust your path accordingly.
981
+ guest_capability_invalid: |-
982
+ The registered guest capability '%{cap}' for the
983
+ detected guest OS '%{guest}' is invalid. The capability does
984
+ not implement the proper method. This is a bug with Vagrant or the
985
+ plugin that implements this capability. Please report a bug.
986
+ guest_capability_not_found: |-
987
+ Vagrant attempted to execute the capability '%{cap}'
988
+ on the detect guest OS '%{guest}', but the guest doesn't
989
+ support that capability. This capability is required for your
990
+ configuration of Vagrant. Please either reconfigure Vagrant to
991
+ avoid this capability or fix the issue by creating the capability.
992
+ guest_explicit_not_detected: |-
993
+ The guest implementation explicitly specified in your Vagrantfile
994
+ ("%{value}") could not be found. Please verify that the plugin is
995
+ installed which implements this guest and that the value you
996
+ used for `config.vm.guest` is correct.
997
+ guest_not_detected: |-
998
+ The guest operating system of the machine could not be detected!
999
+ Vagrant requires this knowledge to perform specific tasks such
1000
+ as mounting shared folders and configuring networks. Please add
1001
+ the ability to detect this guest operating system to Vagrant
1002
+ by creating a plugin or reporting a bug.
1003
+ home_dir_later_version: |-
1004
+ It appears that a newer version of Vagrant was run on this machine
1005
+ at some point. The current version of Vagrant is unable to read
1006
+ the configuration structure of this newer version. Please upgrade to
1007
+ the latest version of Vagrant.
72
1008
  home_dir_not_accessible: |-
73
1009
  The home directory you specified is not accessible. The home
74
1010
  directory that Vagrant uses must be both readable and writable.
75
1011
 
76
1012
  You specified: %{home_path}
77
- incompatible_with_future_version: |-
78
- It appears that you've ran a newer version of Vagrant on this
79
- computer. Unfortunately, newer versions of Vagrant change internal
80
- directory layouts that cause older versions to break. This version
81
- of Vagrant cannot properly run.
82
-
83
- If you'd like to start from a clean state, please remove the
84
- Vagrant state directory: %{path}
85
-
86
- Warning that this will remove all your boxes and potentially corrupt
87
- existing Vagrant environments that were running based on the future
88
- version.
1013
+ home_dir_unknown_version: |-
1014
+ The Vagrant app data directory (%{path}) is in a
1015
+ structure Vagrant doesn't understand. This is a rare exception.
1016
+ Please report an issue or ask the mailing list for help.
1017
+ host_explicit_not_detected: |-
1018
+ The host implementation explicitly specified in your Vagrantfile
1019
+ ("%{value}") could not be found. Please verify that the plugin is
1020
+ installed which implements this host and that the value you used
1021
+ for `config.vagrant.host` is correct.
1022
+ iso_build_failed: |-
1023
+ Failed to build iso image. The following command returned an error:
1024
+
1025
+ %{cmd}
1026
+
1027
+ Stdout from the command:
1028
+
1029
+ %{stdout}
1030
+
1031
+ Stderr from the command:
1032
+
1033
+ %{stderr}
1034
+ hyperv_virtualbox_error: |-
1035
+ Hyper-V and VirtualBox cannot be used together and will result in a
1036
+ system crash. Vagrant will now exit. Please disable Hyper-V if you wish
1037
+ to use VirtualBox.
89
1038
  interrupted: |-
90
1039
  Vagrant exited after cleanup due to external interrupt.
91
- multi_vm_required: |-
92
- A multi-vm environment is required for name specification to this command.
1040
+ local_data_dir_not_accessible: |-
1041
+ The directory Vagrant will use to store local environment-specific
1042
+ state is not accessible. The directory specified as the local data
1043
+ directory must be both readable and writable for the user that is
1044
+ running Vagrant.
1045
+
1046
+ Local data directory: %{local_data_path}
1047
+ linux_mount_failed: |-
1048
+ Failed to mount folders in Linux guest. This is usually because
1049
+ the "vboxsf" file system is not available. Please verify that
1050
+ the guest additions are properly installed in the guest and
1051
+ can work properly. The command attempted was:
1052
+
1053
+ %{command}
1054
+
1055
+ The error output from the last command was:
1056
+
1057
+ %{output}
1058
+ linux_rdp_client_not_found: |-
1059
+ An appropriate RDP client was not found. Vagrant requires either
1060
+ `xfreerdp` or `rdesktop` in order to connect via RDP to the Vagrant
1061
+ environment. Please ensure one of these applications is installed and
1062
+ available on the path and try again.
1063
+ machine_action_locked: |-
1064
+ An action '%{action}' was attempted on the machine '%{name}',
1065
+ but another process is already executing an action on the machine.
1066
+ Vagrant locks each machine for access by only one process at a time.
1067
+ Please wait until the other Vagrant process finishes modifying this
1068
+ machine, then try again.
1069
+
1070
+ If you believe this message is in error, please check the process
1071
+ listing for any "ruby" or "vagrant" processes and kill them. Then
1072
+ try again.
1073
+ machine_folder_not_accessible: |-
1074
+ Vagrant attempted to clean the machine folder for the machine '%{name}'
1075
+ but does not have permission to read the following path:
1076
+
1077
+ %{path}
1078
+
1079
+ Please ensure that Vagrant has the proper permissions to access the path
1080
+ above. You may need to grant this permission to the terminal emulator
1081
+ running Vagrant as well.
1082
+ machine_guest_not_ready: |-
1083
+ Guest-specific operations were attempted on a machine that is not
1084
+ ready for guest communication. This should not happen and a bug
1085
+ should be reported.
1086
+ machine_locked: |-
1087
+ Vagrant can't use the requested machine because it is locked! This
1088
+ means that another Vagrant process is currently reading or modifying
1089
+ the machine. Please wait for that Vagrant process to end and try
1090
+ again. Details about the machine are shown below:
1091
+
1092
+ Name: %{name}
1093
+ Provider: %{provider}
1094
+ machine_not_found: |-
1095
+ The machine with the name '%{name}' was not found configured for
1096
+ this Vagrant environment.
1097
+ machine_state_invalid: |-
1098
+ An internal error has occurred! The provider of the machine you're
1099
+ trying to work with reported an invalid state. This is a bug with
1100
+ the provider you're using, and not with Vagrant itself or with
1101
+ any configuration you may have done. Please report this bug to
1102
+ the proper location.
93
1103
  multi_vm_target_required: |-
94
1104
  This command requires a specific VM name to target in a multi-VM environment.
1105
+ netplan_no_available_renderers: |-
1106
+ No renderers compatible with netplan are available on guest. Please install
1107
+ a compatible renderer.
1108
+ net_ssh_exception: |-
1109
+ An error occurred in the underlying SSH library that Vagrant uses.
1110
+ The error message is shown below. In many cases, errors from this
1111
+ library are caused by ssh-agent issues. Try disabling your SSH
1112
+ agent or removing some keys and try again.
1113
+
1114
+ If the problem persists, please report a bug to the net-ssh project.
1115
+
1116
+ %{message}
1117
+ network_type_not_supported: |-
1118
+ The %{type} network type is not supported for this box or guest.
1119
+ network_address_invalid: |-
1120
+ Network settings specified in your Vagrantfile define an invalid
1121
+ IP address. Please review the error message below and update your
1122
+ Vagrantfile network settings:
1123
+
1124
+ Address: %{address}
1125
+ Netmask: %{mask}
1126
+ Error: %{error}
1127
+ network_manager_not_installed: |-
1128
+ Vagrant was instructed to configure the %{device} network device to
1129
+ be managed by NetworkManager. However, the configured guest VM does
1130
+ not have NetworkManager installed. To fix this error please remove
1131
+ the `nm_controlled` setting from local Vagrantfile. If NetworkManager
1132
+ is required to manage the network devices, please use a box with
1133
+ NetworkManager installed.
1134
+ nfs_bad_exports: |-
1135
+ NFS is reporting that your exports file is invalid. Vagrant does
1136
+ this check before making any changes to the file. Please correct
1137
+ the issues below and execute "vagrant reload":
1138
+
1139
+ %{output}
1140
+ nfs_exports_failed: |-
1141
+ Vagrant failed to install an updated NFS exports file. This may be
1142
+ due to overly restrictive permissions on your NFS exports file. Please
1143
+ validate them and try again.
1144
+
1145
+ command: %{command}
1146
+ stdout: %{stdout}
1147
+ stderr: %{stderr}
1148
+ nfs_dupe_permissions: |-
1149
+ You have attempted to export the same nfs host path at %{hostpath} with
1150
+ different nfs permissions. Please pick one permission and reload your guest.
1151
+ nfs_cant_read_exports: |-
1152
+ Vagrant can't read your current NFS exports! The exports file should be
1153
+ readable by any user. This is usually caused by invalid permissions
1154
+ on your NFS exports file. Please fix them and try again.
1155
+ nfs_mount_failed: |-
1156
+ Mounting NFS shared folders failed. This is most often caused by the NFS
1157
+ client software not being installed on the guest machine. Please verify
1158
+ that the NFS client software is properly installed, and consult any resources
1159
+ specific to the linux distro you're using for more information on how to
1160
+ do this.
1161
+ nfs_no_guest_ip: |-
1162
+ No guest IP was given to the Vagrant core NFS helper. This is an
1163
+ internal error that should be reported as a bug.
1164
+ nfs_no_host_ip: |-
1165
+ No host IP was given to the Vagrant core NFS helper. This is
1166
+ an internal error that should be reported as a bug.
1167
+ nfs_no_hostonly_network: |-
1168
+ NFS requires a host-only network to be created.
1169
+ Please add a host-only network to the machine (with either DHCP or a
1170
+ static IP) for NFS to work.
1171
+ nfs_no_valid_ids: |-
1172
+ No valid IDs were given to the NFS synced folder implementation to
1173
+ prune. This is an internal bug with Vagrant and an issue should be
1174
+ filed.
1175
+ nfs_not_supported: |-
1176
+ It appears your machine doesn't support NFS, or there is not an
1177
+ adapter to enable NFS on this machine for Vagrant. Please verify
1178
+ that `nfsd` is installed on your machine, and try again. If you're
1179
+ on Windows, NFS isn't supported. If the problem persists, please
1180
+ contact Vagrant support.
1181
+ nfs_client_not_installed_in_guest: |-
1182
+ No NFS client was detected as installed in your guest machine. This
1183
+ is required for NFS synced folders to work. In addition to this, Vagrant
1184
+ doesn't know how to automatically install NFS for your machine, so
1185
+ you must do this manually.
1186
+
1187
+ If this message is erroneous, you may disable this check by setting
1188
+ `config.nfs.verify_installed` to `false` in your Vagrantfile.
1189
+ no_default_provider: |-
1190
+ No usable default provider could be found for your system.
1191
+
1192
+ Vagrant relies on interactions with 3rd party systems, known as
1193
+ "providers", to provide Vagrant with resources to run development
1194
+ environments. Examples are VirtualBox, VMware, Hyper-V.
1195
+
1196
+ The easiest solution to this message is to install VirtualBox, which
1197
+ is available for free on all major platforms.
1198
+
1199
+ If you believe you already have a provider available, make sure it
1200
+ is properly installed and configured. You can see more details about
1201
+ why a particular provider isn't working by forcing usage with
1202
+ `vagrant up --provider=PROVIDER`, which should give you a more specific
1203
+ error message for that particular provider.
1204
+ no_default_synced_folder_impl: |-
1205
+ No synced folder implementation is available for your synced folders!
1206
+ Please consult the documentation to learn why this may be the case.
1207
+ You may force a synced folder implementation by specifying a "type:"
1208
+ option for the synced folders. Available synced folder implementations
1209
+ are listed below.
1210
+
1211
+ %{types}
95
1212
  no_env: |-
96
- A Vagrant environment is required to run this command. Run `vagrant init`
97
- to set one up.
98
- port_collision_resume: |-
99
- This VM cannot be resumed, because the forwarded ports would collide with
100
- another running virtual machine. Normally, Vagrant will attempt to fix this
101
- for you but VirtualBox only allows forwarded ports to change if the VM is
102
- powered off. Therefore, please reload your VM or halt the other running
103
- VMs to continue.
1213
+ A Vagrant environment or target machine is required to run this
1214
+ command. Run `vagrant init` to create a new Vagrant environment. Or,
1215
+ get an ID of a target machine from `vagrant global-status` to run
1216
+ this command on. A final option is to change to a directory with a
1217
+ Vagrantfile and to try again.
1218
+ plugin_gem_not_found: |-
1219
+ The plugin '%{name}' could not be installed because it could not
1220
+ be found. Please double check the name and try again.
1221
+ plugin_install_license_not_found: |-
1222
+ The license file to install could not be found. Please verify
1223
+ the path you gave is correct. The path to the license file given
1224
+ was: '%{path}'
1225
+ plugin_install_failed: |-
1226
+ Vagrant was unable to install the requested plugin: '%{name}'
1227
+ Please try to install this plugin again. If Vagrant is still unable
1228
+ to install the requested plugin, please report this error.
1229
+ plugin_install_space: |-
1230
+ The directory where plugins are installed (the Vagrant home directory)
1231
+ has a space in it. On Windows, there is a bug in Ruby when compiling
1232
+ plugins into directories with spaces. Please move your Vagrant home
1233
+ directory to a path without spaces and try again.
1234
+ plugin_install_version_conflict: |-
1235
+ The plugin(s) can't be installed due to the version conflicts below.
1236
+ This means that the plugins depend on a library version that conflicts
1237
+ with other plugins or Vagrant itself, creating an impossible situation
1238
+ where Vagrant wouldn't be able to load the plugins.
1239
+
1240
+ You can fix the issue by either removing a conflicting plugin or
1241
+ by contacting a plugin author to see if they can address the conflict.
1242
+
1243
+ %{conflicts}
1244
+ plugin_init_error: |-
1245
+ The plugins failed to initialize correctly. This may be due to manual
1246
+ modifications made within the Vagrant home directory. Vagrant can
1247
+ attempt to automatically correct this issue by running:
1248
+
1249
+ vagrant plugin repair
1250
+
1251
+ If Vagrant was recently updated, this error may be due to incompatible
1252
+ versions of dependencies. To fix this problem please remove and re-install
1253
+ all plugins. Vagrant can attempt to do this automatically by running:
1254
+
1255
+ vagrant plugin expunge --reinstall
1256
+
1257
+ Or you may want to try updating the installed plugins to their latest
1258
+ versions:
1259
+
1260
+ vagrant plugin update
1261
+
1262
+ Error message given during initialization: %{message}
1263
+ plugin_load_error: |-
1264
+ The plugins failed to load properly. The error message given is
1265
+ shown below.
1266
+
1267
+ %{message}
1268
+ plugin_not_installed: |-
1269
+ The plugin '%{name}' is not currently installed.
1270
+ plugin_state_file_not_parsable: |-
1271
+ Failed to parse the state file "%{path}":
1272
+ %{message}
1273
+
1274
+ Please remove the file and reinstall the plugins.
1275
+ If this error recurs, please report a bug.
1276
+ plugin_uninstall_system: |-
1277
+ The plugin you're attempting to uninstall ('%{name}') is a
1278
+ system plugin. This means that the plugin is part of the installation
1279
+ of Vagrant. These plugins cannot be removed.
1280
+
1281
+ You can however, install a plugin with the same name to replace
1282
+ these plugins. User-installed plugins take priority over
1283
+ system-installed plugins.
1284
+ plugin_source_error: |-
1285
+ Vagrant failed to load a configured plugin source. This can be caused
1286
+ by a variety of issues including: transient connectivity issues, proxy
1287
+ filtering rejecting access to a configured plugin source, or a configured
1288
+ plugin source not responding correctly. Please review the error message
1289
+ below to help resolve the issue:
1290
+
1291
+ %{error_msg}
1292
+
1293
+ Source: %{source}
1294
+ plugin_no_local_error: |-
1295
+ Vagrant is not currently working within a Vagrant project directory. Local
1296
+ plugins are only supported within a Vagrant project directory.
1297
+ plugin_missing_local_error: |-
1298
+ Vagrant is missing plugins required by the currently loaded Vagrantfile.
1299
+ Please install the configured plugins and run this command again. The
1300
+ following plugins are currently missing:
1301
+
1302
+ %{plugins}
1303
+
1304
+ To install the plugins configured in the current Vagrantfile run the
1305
+ following command:
1306
+
1307
+ vagrant plugin install --local
1308
+ plugin_needs_developer_tools: |-
1309
+ Vagrant failed to install the requested plugin because development tools
1310
+ are required for installation but are not currently installed on this
1311
+ machine. Please install development tools and then try this command
1312
+ again.
1313
+ plugin_missing_library: |-
1314
+ Vagrant failed to install the requested plugin because it depends
1315
+ on development files for a library which is not currently installed
1316
+ on this system. The following library is required by the '%{name}'
1317
+ plugin:
1318
+
1319
+ %{library}
1320
+
1321
+ If a package manager is used on this system, please install the development
1322
+ package for the library. The name of the package will be similar to:
1323
+
1324
+ %{library}-dev or %{library}-devel
1325
+
1326
+ After the library and development files have been installed, please
1327
+ run the command again.
1328
+ plugin_missing_ruby_dev: |-
1329
+ Vagrant failed to install the requested plugin because the Ruby header
1330
+ files could not be found. Install the ruby development package for your
1331
+ system and then run this command again.
1332
+ powershell_not_found: |-
1333
+ Failed to locate the powershell executable on the available PATH. Please
1334
+ ensure powershell is installed and available on the local PATH, then
1335
+ run the command again.
1336
+ powershell_invalid_version: |-
1337
+ The version of powershell currently installed on this host is less than
1338
+ the required minimum version. Please upgrade the installed version of
1339
+ powershell to the minimum required version and run the command again.
1340
+
1341
+ Installed version: %{installed_version}
1342
+ Minimum required version: %{minimum_version}
1343
+ pushes_not_defined: |-
1344
+ The Vagrantfile does not define any 'push' strategies. In order to use
1345
+ `vagrant push`, you must define at least one push strategy:
1346
+
1347
+ config.push.define "ftp" do |push|
1348
+ # ... push-specific options
1349
+ end
1350
+ push_strategy_not_defined: |-
1351
+ The push strategy '%{name}' is not defined in the Vagrantfile. Defined
1352
+ strategy names are:
1353
+
1354
+ %{pushes}
1355
+ push_strategy_not_loaded: |-
1356
+ There are no push strategies named '%{name}'. Please make sure you
1357
+ spelled it correctly. If you are using an external push strategy, you
1358
+ may need to install a plugin. Loaded push strategies are:
1359
+
1360
+ %{pushes}
1361
+ push_strategy_not_provided: |-
1362
+ The Vagrantfile defines more than one 'push' strategy. Please specify a
1363
+ strategy. Defined strategy names are:
1364
+
1365
+ %{pushes}
1366
+ package_include_symlink: |-
1367
+ A file or directory you're attempting to include with your packaged
1368
+ box has symlinks in it. Vagrant cannot include symlinks in the
1369
+ resulting package. Please remove the symlinks and try again.
1370
+ package_invalid_info: |-
1371
+ The information file that you've attempted to include doesn't exist or isn't a valid JSON file.
1372
+ Please check that the file exists and is titled 'info.json' and try again.
1373
+ provider_cant_install: |-
1374
+ The provider '%{provider}' doesn't support automatic installation.
1375
+ This is a limitation of this provider. Please report this as a feature
1376
+ request to the provider in question. To install this provider, you'll
1377
+ have to do so manually.
1378
+ provider_checksum_mismatch: |-
1379
+ The checksum of the downloaded provider '%{provider}' did not match the
1380
+ expected value. If the problem persists, please install the provider
1381
+ manually.
1382
+
1383
+ Expected: %{expected}
1384
+ Received: %{actual}
1385
+ provider_install_failed: |-
1386
+ Installation of the provider '%{provider}' failed! The stdout
1387
+ and stderr are shown below. Please read the error output, resolve it,
1388
+ and try again. If problem persists, please install the provider
1389
+ manually.
1390
+
1391
+ Stdout: %{stdout}
1392
+ Stderr: %{stderr}
1393
+ provider_not_found: |-
1394
+ The provider '%{provider}' could not be found, but was requested to
1395
+ back the machine '%{machine}'. Please use a provider that exists.
1396
+
1397
+ Vagrant knows about the following providers: %{providers}
1398
+ provider_not_found_suggestion: |-
1399
+ The provider '%{provider}' could not be found, but was requested to
1400
+ back the machine '%{machine}'. Please use a provider that exists.
1401
+
1402
+ Did you mean '%{suggestion}'?
1403
+
1404
+ Vagrant knows about the following providers: %{providers}
1405
+ provider_not_usable: |-
1406
+ The provider '%{provider}' that was requested to back the machine
1407
+ '%{machine}' is reporting that it isn't usable on this system. The
1408
+ reason is shown below:
1409
+
1410
+ %{message}
1411
+ provisioner_flag_invalid: |-
1412
+ '%{name}' is not a known provisioner. Please specify a valid
1413
+ provisioner.
1414
+ provisioner_winrm_unsupported: |-
1415
+ The provisioner '%{name}' doesn't support provisioning on
1416
+ Windows guests via WinRM. This is likely not a limitation
1417
+ of the provisioner itself but rather that Vagrant doesn't know
1418
+ how to run this provisioner over WinRM.
1419
+
1420
+ If you'd like this provisioner to work over WinRM, please
1421
+ take a look at the Vagrant source code linked below and try
1422
+ to contribute back support. Thank you!
1423
+
1424
+ https://github.com/hashicorp/vagrant
1425
+ rsync_error: |-
1426
+ There was an error when attempting to rsync a synced folder.
1427
+ Please inspect the error message below for more info.
1428
+
1429
+ Host path: %{hostpath}
1430
+ Guest path: %{guestpath}
1431
+ Command: %{command}
1432
+ Error: %{stderr}
1433
+ rsync_post_command_error: |-
1434
+ There was an error while attempting to run the post rsync
1435
+ command for a synced folder. Please inspect the error message
1436
+ below for more info.
1437
+
1438
+ Host path: %{hostpath}
1439
+ Guest path: %{guestpath}
1440
+ Error: %{message}
1441
+ rsync_guest_install_error: |-
1442
+ Installation of rsync into the guest has failed! The stdout
1443
+ and stderr are shown below. Please read the error output, resolve
1444
+ it and try again. If the problem persists, please install rsync
1445
+ manually within the guest.
1446
+
1447
+ Command: %{command}
1448
+ Stdout: %{stdout}
1449
+ Stderr: %{stderr}
1450
+ rsync_not_found: |-
1451
+ "rsync" could not be found on your PATH. Make sure that rsync
1452
+ is properly installed on your system and available on the PATH.
1453
+ rsync_not_installed_in_guest: |-
1454
+ "rsync" was not detected as installed in your guest machine. This
1455
+ is required for rsync synced folders to work. In addition to this,
1456
+ Vagrant doesn't know how to automatically install rsync for your
1457
+ machine, so you must do this manually.
1458
+ scp_permission_denied: |-
1459
+ Failed to upload a file to the guest VM via SCP due to a permissions
1460
+ error. This is normally because the SSH user doesn't have permission
1461
+ to write to the destination location. Alternately, the user running
1462
+ Vagrant on the host machine may not have permission to read the file.
1463
+
1464
+ Source: %{from}
1465
+ Dest: %{to}
104
1466
  scp_unavailable: |-
105
1467
  SSH server on the guest doesn't support SCP. Please install the necessary
106
1468
  software to enable SCP on your guest operating system.
@@ -112,6 +1474,22 @@ en:
112
1474
  %{path}
113
1475
 
114
1476
  Please create the folder manually or specify another path to share.
1477
+ shell_expand_failed: |-
1478
+ Vagrant failed to determine the shell expansion of a guest path
1479
+ (probably for one of your shared folders). This is an extremely rare
1480
+ error case and most likely indicates an unusual configuration of the
1481
+ guest system. Please report a bug with your Vagrantfile and debug log.
1482
+ snapshot_force: |-
1483
+ You must include the `--force` option to replace an existing snapshot.
1484
+ snapshot_not_supported: |-
1485
+ This provider doesn't support snapshots.
1486
+
1487
+ This may be intentional or this may be a bug. If this provider
1488
+ should support snapshots, then please report this as a bug to the
1489
+ maintainer of the provider.
1490
+ snapshot_not_found: |-
1491
+ The snapshot name `%{snapshot_name}` was not found for the
1492
+ virtual machine `%{machine}`.
115
1493
  ssh_authentication_failed: |-
116
1494
  SSH authentication failed! This is typically caused by the public/private
117
1495
  keypair for the SSH user not being properly set on the guest VM. Please
@@ -122,6 +1500,29 @@ en:
122
1500
  Vagrant assumes that this means the command failed!
123
1501
 
124
1502
  %{command}
1503
+
1504
+ Stdout from the command:
1505
+
1506
+ %{stdout}
1507
+
1508
+ Stderr from the command:
1509
+
1510
+ %{stderr}
1511
+ ssh_bad_exit_status_muted: |-
1512
+ The SSH command responded with a non-zero exit status. Vagrant
1513
+ assumes that this means the command failed. The output for this command
1514
+ should be in the log above. Please read the output to determine what
1515
+ went wrong.
1516
+ ssh_channel_open_fail: |-
1517
+ Failed to open an SSH channel on the remote end! This typically
1518
+ means that the maximum number of active sessions was hit on the
1519
+ SSH server. Please configure your remote SSH server to resolve
1520
+ this issue.
1521
+ ssh_connect_eacces: |-
1522
+ SSH is getting permission denied errors when attempting to connect
1523
+ to the IP for SSH. This is usually caused by network rules and not being
1524
+ able to connect to the specified IP. Please try changing the IP on
1525
+ which the guest machine binds to for SSH.
125
1526
  ssh_connection_refused: |-
126
1527
  SSH connection was refused! This usually happens if the VM failed to
127
1528
  boot properly. Some steps to try to fix this: First, try reloading your
@@ -129,6 +1530,76 @@ en:
129
1530
  If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
130
1531
  followed by a `vagrant up`. If that doesn't work, contact a Vagrant
131
1532
  maintainer (support channels listed on the website) for more assistance.
1533
+ ssh_connection_aborted: |-
1534
+ SSH connection was aborted! This usually happens when the machine is taking
1535
+ too long to reboot or the SSH daemon is not properly configured on the VM.
1536
+ First, try reloading your machine with `vagrant reload`, since a simple
1537
+ restart sometimes fixes things. If that doesn't work, destroy your machine
1538
+ and recreate it with a `vagrant destroy` followed by a `vagrant up`. If that
1539
+ doesn't work, contact support.
1540
+ ssh_connection_reset: |-
1541
+ SSH connection was reset! This usually happens when the machine is
1542
+ taking too long to reboot. First, try reloading your machine with
1543
+ `vagrant reload`, since a simple restart sometimes fixes things.
1544
+ If that doesn't work, destroy your machine and recreate it with
1545
+ a `vagrant destroy` followed by a `vagrant up`. If that doesn't work,
1546
+ contact support.
1547
+ ssh_connection_timeout: |-
1548
+ Vagrant timed out while attempting to connect via SSH. This usually
1549
+ means that the VM booted, but there are issues with the SSH configuration
1550
+ or network connectivity issues. Please try to `vagrant reload` or
1551
+ `vagrant up` again.
1552
+ ssh_disconnected: |-
1553
+ The SSH connection was unexpectedly closed by the remote end. This
1554
+ usually indicates that SSH within the guest machine was unable to
1555
+ properly start up. Please boot the VM in GUI mode to check whether
1556
+ it is booting properly.
1557
+ ssh_no_exit_status: |-
1558
+ The SSH command completed, but Vagrant did not receive an exit status.
1559
+ This indicates that the command was terminated unexpectedly. Please
1560
+ check that the VM has sufficient memory to run the command and that no
1561
+ processes were killed by the guest operating system.
1562
+ ssh_no_route: |-
1563
+ While attempting to connect with SSH, a "no route to host" (EHOSTUNREACH)
1564
+ error was received. Please verify your network settings are correct
1565
+ and try again.
1566
+ ssh_host_down: |-
1567
+ While attempting to connect with SSH, a "host is down" (EHOSTDOWN)
1568
+ error was received. Please verify your SSH settings are correct
1569
+ and try again.
1570
+ ssh_invalid_shell: |-
1571
+ The configured shell (config.ssh.shell) is invalid and unable
1572
+ to properly execute commands. The most common cause for this is
1573
+ using a shell that is unavailable on the system. Please verify
1574
+ you're using the full path to the shell and that the shell is
1575
+ executable by the SSH user.
1576
+ ssh_insert_key_unsupported: |-
1577
+ Vagrant is configured to generate a random keypair and insert it
1578
+ onto the guest machine, but it appears Vagrant doesn't know how to do
1579
+ this with your guest OS. Please disable key insertion by setting
1580
+ `config.ssh.insert_key = false` in the Vagrantfile.
1581
+
1582
+ After doing so, run `vagrant reload` for the setting to take effect.
1583
+
1584
+ If you'd like Vagrant to learn how to insert keys on this OS, please
1585
+ open an issue with details about your environment.
1586
+ ssh_is_putty_link: |-
1587
+ The `ssh` executable found in the PATH is a PuTTY Link SSH client.
1588
+ Vagrant is only compatible with OpenSSH SSH clients. Please install
1589
+ an OpenSSH SSH client or manually SSH in using your existing client
1590
+ using the information below.
1591
+
1592
+ Host: %{host}
1593
+ Port: %{port}
1594
+ Username: %{username}
1595
+ Private key: %{key_path}
1596
+ ssh_key_bad_owner: |-
1597
+ The private key to connect to the machine via SSH must be owned
1598
+ by the user running Vagrant. This is a strict requirement from
1599
+ SSH itself. Please fix the following key to be owned by the user
1600
+ running Vagrant:
1601
+
1602
+ %{key_path}
132
1603
  ssh_key_bad_permissions: |-
133
1604
  The private key to connect to this box via SSH has invalid permissions
134
1605
  set on it. The permissions of the private key should be set to 0600, otherwise SSH will
@@ -136,66 +1607,349 @@ en:
136
1607
  permissions on the following file to 0600 and then try running this command again:
137
1608
 
138
1609
  %{key_path}
1610
+
1611
+ Note that this error occurs after Vagrant automatically tries to
1612
+ do this for you. The likely cause of this error is a lack of filesystem
1613
+ permissions or even filesystem functionality. For example, if your
1614
+ Vagrant data is on a USB stick, a common case is that chmod is
1615
+ not supported. The key will need to be moved to a filesystem that
1616
+ supports chmod.
139
1617
  ssh_key_type_not_supported: |-
140
1618
  The private key you're attempting to use with this Vagrant box uses
141
1619
  an unsupported encryption type. The SSH library Vagrant uses does not support
142
- this key type. Please use `ssh-rsa` or `ssh-dss` instead.
143
- ssh_port_not_detected: |-
144
- Vagrant couldn't determine the SSH port for your VM! Vagrant attempts to
145
- automatically find a forwarded port that matches your `config.ssh.guest_port`
146
- (default: 22) value and uses this for SSH. Alternatively, if `config.ssh.port`
147
- is set, it will use this.
148
-
149
- However, in this case Vagrant was unable to find a forwarded port that matches
150
- the guest port and `config.ssh.port` is not set!
151
-
152
- Please make sure that you have a forwarded port that goes to the configured
153
- guest port value, or specify an explicit SSH port with `config.ssh.port`.
1620
+ this key type. Please use `ssh-rsa` or `ssh-dss` instead. Note that
1621
+ sometimes keys in your ssh-agent can interfere with this as well,
1622
+ so verify the keys are valid there in addition to standard
1623
+ file paths.
1624
+ ssh_key_type_not_supported_by_server: |-
1625
+ The private key you are attempting to generate is not supported by
1626
+ the guest SSH server. Please use one of the available key types defined
1627
+ below that is supported by the guest SSH server.
1628
+
1629
+ Requested: %{requested_key_type}
1630
+ Available: %{available_key_types}
1631
+
1632
+ ssh_not_ready: |-
1633
+ The provider for this Vagrant-managed machine is reporting that it
1634
+ is not yet ready for SSH. Depending on your provider this can carry
1635
+ different meanings. Make sure your machine is created and running and
1636
+ try again. Additionally, check the output of `vagrant status` to verify
1637
+ that the machine is in the state that you expect. If you continue to
1638
+ get this error message, please view the documentation for the provider
1639
+ you're using.
1640
+ ssh_run_requires_keys: |-
1641
+ Using `vagrant ssh -c` requires key-based SSH authentication, but your
1642
+ Vagrant environment is configured to use only password-based authentication.
1643
+ Please configure your Vagrantfile with a private key to use this
1644
+ feature.
1645
+
1646
+ Note that Vagrant can automatically insert a keypair and use that
1647
+ keypair for you. Just set `config.ssh.insert_key = true` in your
1648
+ Vagrantfile.
154
1649
  ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
155
1650
  ssh_unavailable_windows: |-
156
- `vagrant ssh` isn't available on the Windows platform. You are still able
157
- to SSH into the virtual machine if you get a Windows SSH client (such as
158
- PuTTY). The authentication information is shown below:
1651
+ `ssh` executable not found in any directories in the %PATH% variable. Is an
1652
+ SSH client installed? Try installing Cygwin, MinGW or Git, all of which
1653
+ contain an SSH client. Or use your favorite SSH client with the following
1654
+ authentication information shown below:
159
1655
 
160
1656
  Host: %{host}
161
1657
  Port: %{port}
162
1658
  Username: %{username}
163
1659
  Private key: %{key_path}
1660
+ synced_folder_unusable: |-
1661
+ The synced folder type '%{type}' is reporting as unusable for
1662
+ your current setup. Please verify you have all the proper
1663
+ prerequisites for using this shared folder type and try again.
1664
+
1665
+ test_key: |-
1666
+ test value
1667
+ triggers_run_fail: |-
1668
+ Trigger run failed
1669
+ triggers_guest_not_running: |-
1670
+ Could not run remote script on %{machine_name} because its state is %{state}
1671
+ triggers_guest_not_exist: |-
1672
+ Could not run remote script on guest because it does not exist.
1673
+ triggers_bad_exit_codes: |-
1674
+ A script exited with an unacceptable exit code %{code}.
1675
+ triggers_no_block_given: |-
1676
+ There was an error parsing the Vagrantfile:
1677
+ No config was given for the trigger(s) %{command}.
1678
+ triggers_no_stage_given: |-
1679
+ The incorrect stage was given to the trigger plugin:
1680
+ Guest: %{guest_name}
1681
+ Name: %{name}
1682
+ Type: %{type}
1683
+ Stage: %{stage}
1684
+
1685
+ This is an internal error that should be reported as a bug.
1686
+
164
1687
  ui_expects_tty: |-
165
1688
  Vagrant is attempting to interface with the UI in a way that requires
166
1689
  a TTY. Most actions in Vagrant that require a TTY have configuration
167
1690
  switches to disable this requirement. Please do that or run Vagrant
168
1691
  with TTY.
1692
+ unimplemented_provider_action: |-
1693
+ Vagrant attempted to call the action '%{action}' on the provider
1694
+ '%{provider}', but this provider doesn't support this action. This
1695
+ is probably a bug in either the provider or the plugin calling this
1696
+ action, and should be reported.
1697
+ upload_invalid_compression_type: |-
1698
+ The compression type requested for upload (`%{type}`) is not a
1699
+ supported value. Try uploading again using a valid compression
1700
+ type.
1701
+
1702
+ Supported types: %{valid_types}
1703
+ upload_missing_extract_capability: |-
1704
+ The guest does not provide extraction capability for the requested
1705
+ compression type (`%{type}`). Try a different compression type or
1706
+ upload without compression.
1707
+ upload_missing_temp_capability: |-
1708
+ The guest does not provide temporary path capabilities. Please
1709
+ try the upload again without requesting a temporary path.
1710
+ upload_source_missing: |-
1711
+ The source path provided for upload cannot be found. Please validate
1712
+ the source location for upload an try again.
1713
+
1714
+ Source Path: %{source}
1715
+ uploader_error: |-
1716
+ An error occurred while uploading the file. The error
1717
+ message, if any, is reproduced below. Please fix this error and try
1718
+ again.
1719
+
1720
+ exit code: %{exit_code}
1721
+ %{message}
1722
+ uploader_interrupted: |-
1723
+ The upload was interrupted by an external signal. It did not
1724
+ complete.
1725
+ vagrant_locked: |-
1726
+ The requested Vagrant action is locked. This may be caused
1727
+ by other Vagrant processes attempting to do a similar action.
1728
+
1729
+ Lock file path: %{lock_file_path}
169
1730
  vagrantfile_exists: |-
170
1731
  `Vagrantfile` already exists in this directory. Remove it before
171
1732
  running `vagrant init`.
1733
+ vagrantfile_load_error: |-
1734
+ There was an error loading a Vagrantfile. The file being loaded
1735
+ and the error message are shown below. This is usually caused by
1736
+ a syntax error.
1737
+
1738
+ Path: %{path}
1739
+ Line number: %{line}
1740
+ Message: %{exception_class}: %{message}
1741
+ vagrantfile_name_error: |-
1742
+ There was an error loading a Vagrantfile. The file being loaded
1743
+ and the error message are shown below. This is usually caused by
1744
+ an invalid or undefined variable.
1745
+
1746
+ Path: %{path}
1747
+ Line number: %{line}
1748
+ Message: %{message}
172
1749
  vagrantfile_syntax_error: |-
173
1750
  There is a syntax error in the following Vagrantfile. The syntax error
174
1751
  message is reproduced below for convenience:
175
1752
 
176
1753
  %{file}
1754
+ vagrantfile_template_not_found_error: |-
1755
+ The Vagrantfile template '%{path}' does not exist. Please double check
1756
+ the template path and try again.
1757
+ vagrantfile_write_error: |-
1758
+ The user that is running Vagrant doesn't have the proper permissions
1759
+ to write a Vagrantfile to the specified location. Please ensure that
1760
+ you call `vagrant init` in a location where the proper permissions
1761
+ are in place to create a Vagrantfile.
1762
+ vagrant_version_bad: |-
1763
+ This Vagrant environment has specified that it requires the Vagrant
1764
+ version to satisfy the following version requirements:
1765
+
1766
+ %{requirements}
1767
+
1768
+ You are running Vagrant %{version}, which does not satisfy
1769
+ these requirements. Please change your Vagrant version or update
1770
+ the Vagrantfile to allow this Vagrant version. However, be warned
1771
+ that if the Vagrantfile has specified another version, it probably has
1772
+ good reason to do so, and changing that may cause the environment to
1773
+ not function properly.
177
1774
  vboxmanage_error: |-
178
- There was an error executing the following command with VBoxManage:
1775
+ There was an error while executing `VBoxManage`, a CLI used by Vagrant
1776
+ for controlling VirtualBox. The command and stderr is shown below.
179
1777
 
180
- %{command}
1778
+ Command: %{command}
1779
+
1780
+ Stderr: %{stderr}
1781
+ vboxmanage_launch_error: |-
1782
+ There was an error running VBoxManage. This is usually a permissions
1783
+ problem or installation problem with VirtualBox itself, and not Vagrant.
1784
+ Please note the error message below (if any), resolve the issue, and
1785
+ try Vagrant again.
1786
+
1787
+ %{message}
1788
+ vboxmanage_not_found_error: |-
1789
+ The "VBoxManage" command or one of its dependencies could not
1790
+ be found. Please verify VirtualBox is properly installed. You can verify
1791
+ everything is okay by running "VBoxManage --version" and verifying
1792
+ that the VirtualBox version is outputted.
181
1793
 
182
- For more information on the failure, enable detailed logging with
183
- VAGRANT_LOG.
1794
+ If you're on Windows and just installed VirtualBox, you have to
1795
+ log out and log back in for the new environmental variables to take
1796
+ effect. If you're on Linux or Mac, verify your PATH contains the folder
1797
+ that has VBoxManage in it.
1798
+ virtualbox_broken_version_040214: |-
1799
+ Vagrant detected you have VirtualBox 4.2.14 installed. VirtualBox
1800
+ 4.2.14 contains a critical bug which prevents it from working with
1801
+ Vagrant. VirtualBox 4.2.16+ fixes this problem. Please upgrade
1802
+ VirtualBox.
1803
+ virtualbox_config_not_found: |-
1804
+ Vagrant was unable to locate the configuration file for the requested
1805
+ VirtualBox VM. Verify the requested VM exists and try again.
1806
+
1807
+ UUID provided: %{uuid}
1808
+ virtualbox_disks_controller_not_found: |-
1809
+ Vagrant expected to find a storage controller called '%{name}',
1810
+ but there is no controller with this name attached to the current VM.
1811
+ If you have changed or removed any storage controllers, please restore
1812
+ them to their previous configuration.
1813
+ virtualbox_disks_no_supported_controllers: |-
1814
+ Vagrant was unable to detect a disk controller with any of the
1815
+ following supported types:
1816
+
1817
+ %{supported_types}
1818
+
1819
+ Please add one of the supported controller types in order to use the
1820
+ disk configuration feature.
1821
+ virtualbox_disks_defined_exceed_limit: |-
1822
+ VirtualBox only allows up to %{limit} disks to be attached to the
1823
+ storage controller '%{name}'. Please remove some disks from your disk
1824
+ configuration, or attach a new storage controller.
1825
+ virtualbox_disks_primary_not_found: |-
1826
+ Vagrant was not able to detect a primary disk attached to the main
1827
+ controller. Vagrant Disks requires that the primary disk be attached
1828
+ to the first port of the main controller in order to manage it.
1829
+ virtualbox_disks_unsupported_controller: |-
1830
+ An disk operation was attempted on the controller '%{controller_name}',
1831
+ but Vagrant doesn't support this type of disk controller.
1832
+ virtualbox_guest_property_not_found: |-
1833
+ Could not find a required VirtualBox guest property:
1834
+ %{guest_property}
1835
+ This is an internal error that should be reported as a bug.
184
1836
  virtualbox_invalid_version: |-
185
1837
  Vagrant has detected that you have a version of VirtualBox installed
186
- that is not supported. Please install one of the supported versions
187
- listed below to use Vagrant:
1838
+ that is not supported by this version of Vagrant. Please install one of
1839
+ the supported versions listed below to use Vagrant:
188
1840
 
189
1841
  %{supported_versions}
1842
+
1843
+ A Vagrant update may also be available that adds support for the version
1844
+ you specified. Please check www.vagrantup.com/downloads.html to download
1845
+ the latest version.
190
1846
  virtualbox_kernel_module_not_loaded: |-
191
1847
  VirtualBox is complaining that the kernel module is not loaded. Please
1848
+ run `VBoxManage --version` or open the VirtualBox GUI to see the error
1849
+ message which should contain instructions on how to fix this error.
1850
+ virtualbox_install_incomplete: |-
1851
+ VirtualBox is complaining that the installation is incomplete. Please
192
1852
  run `VBoxManage --version` to see the error message which should contain
193
1853
  instructions on how to fix this error.
1854
+ virtualbox_machine_folder_not_found: |-
1855
+ Vagrant failed to determine the machine folder on this host from
1856
+ the VirtualBox system information. Try running the command again.
1857
+ If this error persists, please report this error as a bug.
1858
+ virtualbox_mount_failed: |-
1859
+ Vagrant was unable to mount VirtualBox shared folders. This is usually
1860
+ because the filesystem "vboxsf" is not available. This filesystem is
1861
+ made available via the VirtualBox Guest Additions and kernel module.
1862
+ Please verify that these guest additions are properly installed in the
1863
+ guest. This is not a bug in Vagrant and is usually caused by a faulty
1864
+ Vagrant box. For context, the command attempted was:
1865
+
1866
+ %{command}
1867
+
1868
+ The error output from the command was:
1869
+
1870
+ %{output}
1871
+ virtualbox_mount_not_supported_bsd: |-
1872
+ Vagrant is not able to mount VirtualBox shared folders on BSD-based
1873
+ guests. BSD-based guests do not support the VirtualBox filesystem at
1874
+ this time.
1875
+
1876
+ To change the type of the default synced folder, specify the type as
1877
+ rsync or nfs:
1878
+
1879
+ config.vm.synced_folder ".", "/vagrant", type: "nfs" # or "rsync"
1880
+
1881
+ Alternatively, if you do not need to mount the default synced folder,
1882
+ you can also disable it entirely:
1883
+
1884
+ config.vm.synced_folder ".", "/vagrant", disabled: true
1885
+
1886
+ You can read more about Vagrant's synced folder types and the various
1887
+ configuration options on the Vagrant website.
1888
+
1889
+ This is not a bug in Vagrant.
1890
+ virtualbox_name_exists: |-
1891
+ The name of your virtual machine couldn't be set because VirtualBox
1892
+ is reporting another VM with that name already exists. Most of the
1893
+ time, this is because of an error with VirtualBox not cleaning up
1894
+ properly. To fix this, verify that no VMs with that name do exist
1895
+ (by opening the VirtualBox GUI). If they don't, then look at the
1896
+ folder in the error message from VirtualBox below and remove it
1897
+ if there isn't any information you need in there.
1898
+
1899
+ VirtualBox error:
1900
+
1901
+ %{stderr}
1902
+ virtualbox_no_name: |-
1903
+ Vagrant was unable to determine the recommended name for your
1904
+ VirtualBox VM. This is usually an issue with VirtualBox. The output
1905
+ from VirtualBox is shown below, which may contain an error to fix.
1906
+ The best way to fix this issue is usually to uninstall VirtualBox,
1907
+ restart your computer, then reinstall VirtualBox.
1908
+
1909
+ VirtualBox output:
1910
+
1911
+ %{output}
1912
+ virtualbox_no_room_for_high_level_network: |-
1913
+ There is no available slots on the VirtualBox VM for the configured
1914
+ high-level network interfaces. "private_network" and "public_network"
1915
+ network configurations consume a single network adapter slot on the
1916
+ VirtualBox VM. VirtualBox limits the number of slots to 8, and it
1917
+ appears that every slot is in use. Please lower the number of used
1918
+ network adapters.
194
1919
  virtualbox_not_detected: |-
195
1920
  Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
196
1921
  Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
197
1922
  this to be available on the PATH. If VirtualBox is installed, please find the
198
1923
  `VBoxManage` binary and add it to the PATH environmental variable.
1924
+ virtualbox_user_mismatch: |-
1925
+ The VirtualBox VM was created with a user that doesn't match the
1926
+ current user running Vagrant. VirtualBox requires that the same user
1927
+ be used to manage the VM that was created. Please re-run Vagrant with
1928
+ that user. This is not a Vagrant issue.
1929
+
1930
+ The UID used to create the VM was: %{original_uid}
1931
+ Your UID is: %{uid}
1932
+ virtualbox_version_empty: |-
1933
+ Vagrant detected that VirtualBox appears installed on your system,
1934
+ but calls to detect the version are returning empty. This is often
1935
+ indicative of installation issues with VirtualBox. Please verify
1936
+ that VirtualBox is properly installed. As a final verification,
1937
+ please run the following command manually and verify a version is
1938
+ outputted:
1939
+
1940
+ %{vboxmanage} --version
1941
+ virtualbox_invalid_host_subnet: |-
1942
+ The IP address configured for the host-only network is not within the
1943
+ allowed ranges. Please update the address used to be within the allowed
1944
+ ranges and run the command again.
1945
+
1946
+ Address: %{address}
1947
+ Ranges: %{ranges}
1948
+
1949
+ Valid ranges can be modified in the /etc/vbox/networks.conf file. For
1950
+ more information including valid format see:
1951
+
1952
+ https://www.virtualbox.org/manual/ch06.html#network_hostonly
199
1953
  vm_creation_required: |-
200
1954
  VM must be created before running this command. Run `vagrant up` first.
201
1955
  vm_inaccessible: |-
@@ -203,6 +1957,10 @@ en:
203
1957
  with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
204
1958
  and clear out your inaccessible virtual machines or find a way to fix
205
1959
  them.
1960
+ vm_name_exists: |-
1961
+ A VirtualBox machine with the name '%{name}' already exists.
1962
+ Please use another name or delete the machine with the existing
1963
+ name, and try again.
206
1964
  vm_no_match: |-
207
1965
  No virtual machines matched the regular expression given.
208
1966
  vm_not_found: |-
@@ -210,70 +1968,374 @@ en:
210
1968
  vm_not_running: |-
211
1969
  VM must be running to open SSH connection. Run `vagrant up`
212
1970
  to start the virtual machine.
1971
+ winrm_invalid_communicator: |-
1972
+ The winrm command requires a WinRM communicator to be used when connecting
1973
+ to the guest. Please update your configuration and try the command again.
1974
+ wsl_vagrant_version_mismatch: |-
1975
+ Vagrant cannot currently enable access to manage machines within the Windows
1976
+ environment because the version of Vagrant installed on Windows does not
1977
+ match this version of Vagrant running within the Windows Subsystem for Linux.
1978
+ Please ensure both installation of Vagrant are the same. If you do not want
1979
+ update your Vagrant installations you can disable Windows access by unsetting
1980
+ the `VAGRANT_WSL_ACCESS_WINDOWS_USER` environment variable.
1981
+
1982
+ Windows Vagrant version: %{windows_version}
1983
+ Windows Subsystem for Linux Vagrant version: %{wsl_version}
1984
+ wsl_vagrant_access_error: |-
1985
+ Vagrant will not operate outside the Windows Subsystem for Linux unless explicitly
1986
+ instructed. Due to the inability to enforce expected Linux file ownership and
1987
+ permissions on the Windows system, Vagrant will not make modifications to prevent
1988
+ unexpected errors. To learn more about this, and the options that are available,
1989
+ please refer to the Vagrant documentation:
213
1990
 
1991
+ https://www.vagrantup.com/docs/other/wsl.html
1992
+ wsl_virtualbox_windows_access: |-
1993
+ Vagrant is unable to use the VirtualBox provider from the Windows Subsystem for
1994
+ Linux without access to the Windows environment. Enabling this access must be
1995
+ done with caution and an understanding of the implications. For more information
1996
+ on enabling Windows access and using VirtualBox from the Windows Subsystem for
1997
+ Linux, please refer to the Vagrant documentation:
1998
+
1999
+ https://www.vagrantup.com/docs/other/wsl.html
2000
+ wsl_rootfs_not_found_error: |-
2001
+ Vagrant is unable to determine the location of this instance of the Windows
2002
+ Subsystem for Linux. If this error persists it may be resolved by destroying
2003
+ this subsystem and installing it again.
214
2004
  #-------------------------------------------------------------------------------
215
2005
  # Translations for config validation errors
216
2006
  #-------------------------------------------------------------------------------
217
2007
  config:
2008
+ disk:
2009
+ dvd_type_file_required:
2010
+ A 'file' option is required when defining a disk of type ':dvd' for guest '%{machine}'.
2011
+ dvd_type_primary: |-
2012
+ Disks of type ':dvd' cannot be defined as a primary disks. Please
2013
+ remove the 'primary' argument for disk '%{name}' on guest '%{machine}'.
2014
+ invalid_ext: |-
2015
+ Disk type '%{ext}' is not a valid disk extension for '%{name}'. Please pick one of the following supported disk types: %{exts}
2016
+ invalid_type: |-
2017
+ Disk type '%{type}' is not a valid type. Please pick one of the following supported disk types: %{types}
2018
+ invalid_size: |-
2019
+ Config option 'size' for disk '%{name}' on guest '%{machine}' is not an integer
2020
+ invalid_file_type: |-
2021
+ Disk config option 'file' for '%{machine}' is not a string.
2022
+ missing_file: |-
2023
+ Disk file '%{file_path}' for disk '%{name}' on machine '%{machine}' does not exist.
2024
+ missing_provider: |-
2025
+ 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
2026
+ no_name_set: |-
2027
+ A 'name' option is required when defining a disk for guest '%{machine}'.
218
2028
  common:
219
- error_empty: "`%{field}` must be filled in."
2029
+ bad_field: "The following settings shouldn't exist: %{fields}"
220
2030
  chef:
221
- cookbooks_path_empty: "Must specify a cookbooks path for chef solo."
222
- run_list_empty: "Run list must not be empty."
223
- server_url_empty: "Chef server URL must be populated."
224
- vagrant_as_json_key: |-
225
- `vagrant` cannot be a JSON key, because it is used by Vagrant already.
226
- validation_key_path: "Validation key path must be valid path to your chef server validation key."
2031
+ cookbooks_path_empty: |-
2032
+ Missing required value for `chef.cookbooks_path'.
2033
+ nodes_path_empty: |-
2034
+ Missing required value for `chef.nodes_path'.
2035
+ environment_path_missing: |-
2036
+ Environment path not found: %{path}
2037
+ nodes_path_missing: |-
2038
+ Path specified for `nodes_path` does not exist: %{path}
2039
+ environment_path_required: |-
2040
+ When 'environment' is specified, you must provide 'environments_path'.
2041
+ cookbooks_path_missing: |-
2042
+ Cookbook path doesn't exist: %{path}
2043
+ custom_config_path_missing: |-
2044
+ Path specified for "custom_config_path" does not exist.
2045
+ server_url_empty: "Chef Server URL must be populated."
2046
+ validation_key_path: "Validation key path must be valid path to your Chef Server validation key."
2047
+ loader:
2048
+ bad_v1_key: |-
2049
+ Unknown configuration section '%{key}'. If this section was part of
2050
+ a Vagrant 1.0.x plugin, note that 1.0.x plugins are incompatible with 1.1+.
2051
+ root:
2052
+ sensitive_bad_type: |-
2053
+ Invalid type provided for `sensitive`. The sensitive option expects a string
2054
+ or an array of strings.
2055
+ plugins_invalid_format: |-
2056
+ Invalid type provided for `plugins`.
2057
+ plugins_bad_key: |-
2058
+ Invalid plugin configuration detected for `%{plugin_name}` plugin.
2059
+
2060
+ Unknown keys: %{plugin_key}
2061
+ bad_key: |-
2062
+ Unknown configuration section '%{key}'.
227
2063
  ssh:
228
2064
  private_key_missing: "`private_key_path` file must exist: %{path}"
2065
+ paranoid_deprecated: |-
2066
+ The key `paranoid` is deprecated. Please use `verify_host_key`. Supported
2067
+ values are exactly the same, only the name of the option has changed.
2068
+ ssh_config_missing: "`config` file must exist: %{path}"
2069
+ connect_timeout_invalid_type: |-
2070
+ The `connect_timeout` key only accepts values of Integer type. Received
2071
+ `%{given}` type which cannot be converted to an Integer type.
2072
+ connect_timeout_invalid_value: |-
2073
+ The `connect_timeout` key only accepts values greater than or equal to 1 (received `%{given}`)
2074
+ connect_retries_invalid_type: |-
2075
+ The `connect_retries` key only accepts values of Integer type. Received
2076
+ `%{given}` type which cannot be converted to an Integer type.
2077
+ connect_retries_invalid_value: |-
2078
+ The `connect_retries` key only accepts values greater than or equal to 0 (received `%{given}`)
2079
+ connect_retry_delay_invalid_type: |-
2080
+ The `connect_retry_delay` key only accepts values of Numeric type. Received
2081
+ `%{given}` type which cannot be converted to a Numeric type.
2082
+ connect_retry_delay_invalid_value: |-
2083
+ The `connect_retry_delay` key only accepts values greater than or equal to 0 (received `%{given}`)
2084
+ connect_invalid_key_type: |-
2085
+ Invalid SSH key type set ('%{given}'). Supported types: %{supported}
2086
+ triggers:
2087
+ bad_trigger_type: |-
2088
+ The type '%{type}' defined for trigger '%{trigger}' is not valid. Must be one of the following types: '%{types}'
2089
+ bad_command_warning: |-
2090
+ The command '%{cmd}' was not found for this trigger.
2091
+ name_bad_type: |-
2092
+ Invalid type set for `name` on trigger for command '%{cmd}'. `name` should be a String.
2093
+ info_bad_type: |-
2094
+ Invalid type set for `info` on trigger for command '%{cmd}'. `info` should be a String.
2095
+ warn_bad_type: |-
2096
+ Invalid type set for `warn` on trigger for command '%{cmd}'. `warn` should be a String.
2097
+ on_error_bad_type: |-
2098
+ Invalid type set for `on_error` on trigger for command '%{cmd}'. `on_error` can
2099
+ only be `:halt` (default) or `:continue`.
2100
+ abort_bad_type: |-
2101
+ Trigger option `abort` for command '%{cmd}' must be either set to
2102
+ `true` (defaults to exit code 1) or an integer to use as an exit code.
2103
+ abort_false_type: |-
2104
+ `false` is not a valid option for the `abort` option for a trigger. This
2105
+ will be ignored...
2106
+ exit_codes_bad_type: |-
2107
+ Invalid type set for `exit_codes` on trigger for command '%{cmd}'. `exit_codes` can
2108
+ only be a single integer or an array of integers.
2109
+ only_on_bad_type: |-
2110
+ Invalid type found for `only_on`. All values must be a `String` or `Regexp`.
2111
+ ruby_bad_type: |-
2112
+ Invalid type for `ruby` option on trigger for command '%{cmd}'. Only `proc`
2113
+ types are allowed.
2114
+ privileged_ignored: |-
2115
+ The `privileged` setting for option `run` for trigger command '%{command}' will be ignored and set to false.
2116
+ powershell_args_ignored: |-
2117
+ The setting `powershell_args` is not supported for the trigger option `run` and will be ignored.
2118
+ run:
2119
+ bad_type: |-
2120
+ Invalid type set for `run` on trigger for command '%{cmd}'. `run`
2121
+ must be a Hash.
2122
+ run_remote:
2123
+ bad_type: |-
2124
+ Invalid type set for `run` on trigger for command '%{cmd}'. `run`
2125
+ must be a Hash.
2126
+
229
2127
  vm:
230
- base_mac_invalid: "Base MAC address for eth0/NAT must be set. Contact box maintainer for more information."
231
- boot_mode_invalid: "Boot mode must be one of: headless or gui"
2128
+ bad_version: |-
2129
+ Invalid box version constraints: %{version}
2130
+ box_download_ca_cert_not_found: |-
2131
+ "box_download_ca_cert" file not found: %{path}
2132
+ box_download_ca_path_not_found: |-
2133
+ "box_download_ca_path" directory not found: %{path}
2134
+ box_download_checksum_blank: |-
2135
+ Checksum type specified but "box_download_checksum" is blank
2136
+ box_download_checksum_notblank: |-
2137
+ Checksum specified but must also specify "box_download_checksum_type"
2138
+ box_empty: "Box value for guest '%{machine_name}' is an empty string."
232
2139
  box_missing: "A box must be specified."
233
- box_not_found: "The box '%{name}' could not be found."
234
- network_invalid: |-
235
- The network type '%{type}' is not valid. Please use
236
- 'hostonly' or 'bridged'.
2140
+ box_download_options_type: |-
2141
+ Found "box_download_options" specified as type '%{type}', should be a Hash
2142
+ box_download_options_not_converted: |-
2143
+ Something went wrong converting VM config `box_download_options`. Value for provided key '%{missing_key}' is invalid type. Should be String or Bool
2144
+ clone_and_box: "Only one of clone or box can be specified."
2145
+ config_type: "Found '%{option}' specified as type '%{given}', should be '%{required}'"
2146
+ hostname_invalid_characters: |-
2147
+ The hostname set for the VM '%{name}' should only contain letters, numbers,
2148
+ hyphens or dots. It cannot start with a hyphen or dot.
2149
+ ignore_provider_config: |-
2150
+ Ignoring provider config for validation...
2151
+ multiple_primary_disks_error: |-
2152
+ There are more than one primary disks defined for guest '%{name}'. Please ensure that only one disk has been defined as a primary disk.
2153
+ multiple_disk_files_error: |-
2154
+ The following disk files are used multiple times in the disk
2155
+ configuration for the VM '%{name}':
2156
+
2157
+ %{disk_files}
2158
+
2159
+ Each disk file may only be attached to a VM once.
2160
+ multiple_disk_names_error: |-
2161
+ The following disks names are defined multiple times in the disk
2162
+ configuration for the VM '%{name}':
2163
+
2164
+ %{disk_names}
2165
+
2166
+ Disk names must be unique.
2167
+ multiple_networks_set_hostname: "Multiple networks have set `:hostname`"
2168
+ name_invalid: |-
2169
+ The sub-VM name '%{name}' is invalid. Please don't use special characters.
2170
+ network_ip_ends_in_one: |-
2171
+ You assigned a static IP ending in ".1" or ":1" to this machine.
2172
+ This is very often used by the router and can cause the
2173
+ network to not work properly. If the network doesn't work
2174
+ properly, try changing this IP.
237
2175
  network_ip_required: |-
238
- Host only networks require an IP as an argument.
239
- network_ip_invalid: |-
240
- The host only network IP '%{ip}' is invalid.
241
- network_ip_ends_one: |-
242
- The host only network IP '%{ip}' must not end in a 1, as this
243
- is reserved for the host machine.
244
- shared_folder_hostpath_missing: "Shared folder host path for '%{name}' doesn't exist: %{path}"
2176
+ An IP is required for a private network.
2177
+ network_fp_invalid_port: |-
2178
+ Ports to forward must be 1 to 65535
2179
+ network_fp_host_not_unique: |-
2180
+ Forwarded port '%{host}' (host port) is declared multiple times
2181
+ with the protocol '%{protocol}'.
2182
+ network_fp_requires_ports: |-
2183
+ Forwarded port definitions require a "host" and "guest" value
2184
+ network_type_invalid: |-
2185
+ Network type '%{type}' is invalid. Please use a valid network type.
2186
+ network_with_hostname_must_set_ip: "Network specified with `:hostname` must provide a static ip"
2187
+ provisioner_not_found: |-
2188
+ The '%{name}' provisioner could not be found.
2189
+ shared_folder_guestpath_duplicate: |-
2190
+ A shared folder guest path is used multiple times. Shared
2191
+ folders must all map to a unique guest path: %{path}
2192
+ shared_folder_guestpath_relative: |-
2193
+ The shared folder guest path must be absolute: %{path}
2194
+ shared_folder_hostpath_missing: |-
2195
+ The host path of the shared folder is missing: %{path}
2196
+ shared_folder_invalid_option_type: |-
2197
+ The type '%{type}' is not a valid synced folder type. If 'type' is not
2198
+ specified, Vagrant will automatically choose the best synced folder
2199
+ option for your guest. Otherwise, please pick from the following available options:
2200
+
2201
+ %{options}
245
2202
  shared_folder_nfs_owner_group: |-
246
- Shared folder '%{name}': NFS does not support the owner/group settings.
247
- provisioner_not_found: "The provisioner '%{shortcut}' doesn't exist."
248
- provisioner_invalid_class: "The provisioner '%{shortcut}' must inherit from `Vagrant::Provisioners::Base`."
2203
+ Shared folders that have NFS enabled do not support owner/group
2204
+ attributes. Host path: %{path}
2205
+ shared_folder_mount_options_array: |-
2206
+ Shared folder mount options specified by 'mount_options' must
2207
+ be an array of options.
2208
+ shared_folder_requires_guestpath_or_name: |-
2209
+ Shared folder options must include a guestpath and/or name.
2210
+ shared_folder_wsl_not_drvfs: |-
2211
+ The host path of the shared folder is not supported from WSL. Host
2212
+ path of the shared folder must be located on a file system with
2213
+ DrvFs type. Host path: %{path}
2214
+
2215
+ #-------------------------------------------------------------------------------
2216
+ # Translations for guests
2217
+ #-------------------------------------------------------------------------------
2218
+ guests:
2219
+ capabilities:
2220
+ rebooting: |-
2221
+ Waiting for machine to reboot...
249
2222
 
250
2223
  #-------------------------------------------------------------------------------
251
2224
  # Translations for commands. e.g. `vagrant x`
252
2225
  #-------------------------------------------------------------------------------
253
2226
  commands:
2227
+ deprecated: |-
2228
+ [DEPRECATION WARNING]: The Vagrant command 'vagrant %{name}' is scheduled be
2229
+ deprecated in an upcoming Vagrant release.
254
2230
  common:
2231
+ vm_already_running: |-
2232
+ VirtualBox VM is already running.
255
2233
  vm_not_created: "VM not created. Moving on..."
256
- vm_not_running: "VM is not currently running. Please bring it up to run this command."
2234
+ vm_not_running: "VM is not currently running. Please, first bring it up with `vagrant up` then run this command."
257
2235
  box:
258
2236
  no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
2237
+ remove_in_use_query: |-
2238
+ Box '%{name}' (v%{version}) with provider '%{provider}' and
2239
+ architectures '%{architecture}' appears to still be in use by
2240
+ at least one Vagrant environment. Removing the box could corrupt
2241
+ the environment. We recommend destroying these environments first:
2242
+
2243
+ %{users}
2244
+
2245
+ Are you sure you want to remove this box? [y/N]
2246
+ removing: |-
2247
+ Removing box '%{name}' (v%{version}) with provider '%{provider}'...
259
2248
  destroy:
260
- confirmation: "Are you sure you want to destroy the '%{name}' VM? [Y/N] "
2249
+ confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
261
2250
  will_not_destroy: |-
262
2251
  The VM '%{name}' will not be destroyed, since the confirmation
263
2252
  was declined.
264
- gem:
265
- help_preamble: |-
266
- `vagrant gem` is used to install Vagrant plugins via the RubyGems
267
- system. In fact, `vagrant gem` is just a frontend to the actual `gem`
268
- interface, with the difference being that Vagrant sets up a custom
269
- directory where gems are installed so that they are isolated from your
270
- system gems.
2253
+ warning: |-
2254
+ Destroying guests with `--parallel` automatically enables `--force`.
2255
+ Press ctrl-c to cancel.
271
2256
  init:
272
2257
  success: |-
273
2258
  A `Vagrantfile` has been placed in this directory. You are now
274
2259
  ready to `vagrant up` your first virtual environment! Please read
275
2260
  the comments in the Vagrantfile as well as documentation on
276
2261
  `vagrantup.com` for more information on using Vagrant.
2262
+ plugin:
2263
+ expunge_confirm: |-
2264
+
2265
+ This command permanently deletes all currently installed user plugins. It
2266
+ should only be used when a repair command is unable to properly fix the
2267
+ system.
2268
+
2269
+ Continue?
2270
+ expunge_request_reinstall: |-
2271
+ Would you like Vagrant to attempt to reinstall current plugins?
2272
+ expunge_complete: |-
2273
+
2274
+ All user installed plugins have been removed from this Vagrant environment!
2275
+ expunge_reinstall: |-
2276
+
2277
+ Vagrant will now attempt to reinstall user plugins that were removed.
2278
+ expunge_aborted: |-
2279
+
2280
+ Vagrant expunge has been declined. Skipping removal of plugins.
2281
+ installed_license: |-
2282
+ The license for '%{name}' was successfully installed!
2283
+ installing_license: |-
2284
+ Installing license for '%{name}'...
2285
+ no_plugins: |-
2286
+ No plugins installed.
2287
+ plugin_require: " - Custom entrypoint: %{require}"
2288
+ plugin_version: " - Version Constraint: %{version}"
2289
+ installed: |-
2290
+ Installed the plugin '%{name} (%{version})'!
2291
+ installing: |-
2292
+ Installing the '%{name}' plugin. This can take a few minutes...
2293
+ uninstalling: |-
2294
+ Uninstalling the '%{name}' plugin...
2295
+ up_to_date: |-
2296
+ All plugins are up to date.
2297
+ updated: |-
2298
+ Updated '%{name}' to version '%{version}'!
2299
+ updating: |-
2300
+ Updating installed plugins...
2301
+ updating_specific: |-
2302
+ Updating plugins: %{names}. This may take a few minutes...
2303
+ post_install: |-
2304
+ Post install message from the '%{name}' plugin:
2305
+
2306
+ %{message}
2307
+ repairing: |-
2308
+ Repairing currently installed global plugins. This may take a few minutes...
2309
+ repairing_local: |-
2310
+ Repairing currently installed local project plugins. This may take a few minutes...
2311
+ repair_complete: |-
2312
+ Installed plugins successfully repaired!
2313
+ repair_local_complete: |-
2314
+ Local project plugins successfully repaired!
2315
+ repair_failed: |-
2316
+ Failed to automatically repair installed Vagrant plugins. To fix this
2317
+ problem remove all user installed plugins and reinstall. Vagrant can
2318
+ do this for you automatically by running the following command:
2319
+
2320
+ vagrant plugin expunge --reinstall
2321
+
2322
+ Failure message received during repair:
2323
+
2324
+ %{message}
2325
+ snapshot:
2326
+ not_supported: |-
2327
+ This provider doesn't support snapshots.
2328
+
2329
+ This may be intentional or this may be a bug. If this provider
2330
+ should support snapshots, then please report this as a bug to the
2331
+ maintainer of the provider.
2332
+ no_push_snapshot: |-
2333
+ No pushed snapshot found!
2334
+
2335
+ Use `vagrant snapshot push` to push a snapshot to restore to.
2336
+ save:
2337
+ vm_not_created: |-
2338
+ Machine '%{name}' has not been created yet, and therefore cannot save snapshots. Skipping...
277
2339
  status:
278
2340
  aborted: |-
279
2341
  The VM is in an aborted state. This means that it was abruptly
@@ -282,7 +2344,7 @@ en:
282
2344
  have to destroy and restart the virtual machine.
283
2345
  gurumeditation: |-
284
2346
  The VM is in the "guru meditation" state. This is a rare case which means
285
- that an internal error in VitualBox caused the VM to fail. This is always
2347
+ that an internal error in VirtualBox caused the VM to fail. This is always
286
2348
  the sign of a bug in VirtualBox. You can try to bring your VM back online
287
2349
  with a `vagrant up`.
288
2350
  inaccessible: |-
@@ -291,14 +2353,16 @@ en:
291
2353
  VirtualBox, moving to a new computer, etc. Please consult VirtualBox
292
2354
  for how to handle this issue.
293
2355
  output: |-
294
- Current VM states:
2356
+ Current machine states:
295
2357
 
296
2358
  %{states}
297
2359
 
298
2360
  %{message}
299
2361
  not_created: |-
300
2362
  The environment has not yet been created. Run `vagrant up` to
301
- create the environment.
2363
+ create the environment. If a machine is not created, only the
2364
+ default provider will be shown. So if a provider is not listed,
2365
+ then the machine is not created for that environment.
302
2366
  paused: |-
303
2367
  The VM is paused. This VM may have been paused via the VirtualBox
304
2368
  GUI or the VBoxManage command line interface. To unpause, please
@@ -306,6 +2370,8 @@ en:
306
2370
  that vagrant would be able to control the VM again.
307
2371
  poweroff: |-
308
2372
  The VM is powered off. To restart the VM, simply run `vagrant up`
2373
+ stopping: |-
2374
+ The VM is stopping.
309
2375
  running: |-
310
2376
  The VM is running. To stop this VM, you can run `vagrant halt` to
311
2377
  shut it down forcefully, or you can run `vagrant suspend` to simply
@@ -327,31 +2393,88 @@ en:
327
2393
  above with their current state. For more information about a specific
328
2394
  VM, run `vagrant status NAME`.
329
2395
  up:
330
- vm_created: "VM already created. Booting if it's not already running..."
331
- version:
332
- output: "Vagrant version %{version}"
2396
+ upping: |-
2397
+ Bringing machine '%{name}' up with '%{provider}' provider...
2398
+ upload:
2399
+ compress: |-
2400
+ Compressing %{source} to %{type} for upload...
2401
+ complete: |-
2402
+ Upload has completed successfully!
2403
+
2404
+ Source: %{source}
2405
+ Destination: %{destination}
2406
+ decompress: |-
2407
+ Decompressing %{type} upload to %{destination}...
2408
+ start: |-
2409
+ Uploading %{source} to %{destination}
2410
+ validate:
2411
+ success: |-
2412
+ Vagrantfile validated successfully.
333
2413
 
334
2414
  #-------------------------------------------------------------------------------
335
- # Translations for Vagrant middleware acions
2415
+ # Translations for Vagrant middleware actions
336
2416
  #-------------------------------------------------------------------------------
2417
+ cap:
2418
+ cleanup_disks:
2419
+ disk_cleanup: |-
2420
+ Disk '%{name}' no longer exists in Vagrant config. Removing and closing medium from guest...
2421
+ disk_not_found: |-
2422
+ Disk '%{name}' could not be found, and could not be properly removed. Please remove this disk manually if it still exists
2423
+ configure_disks:
2424
+ create_disk: |-
2425
+ Disk '%{name}' not found in guest. Creating and attaching disk to guest...
2426
+ floppy_not_supported: "Floppy disk configuration not yet supported. Skipping disk '%{name}'..."
2427
+ shrink_size_not_supported: |-
2428
+ VirtualBox does not support shrinking disk sizes. Cannot shrink '%{name}' disks size.
2429
+ resize_disk: |-
2430
+ Disk '%{name}' needs to be resized. Resizing disk...
2431
+ recovery_from_resize: |-
2432
+ 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.
2433
+ The original disk is located at %{location}
2434
+ 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...
2435
+ recovery_attached_disks: |-
2436
+ Disk has been reattached. Vagrant will now continue on an raise the exception receieved
2437
+ start: "Configuring storage mediums..."
2438
+ cloud_init:
2439
+ content_type_not_set: |-
2440
+ 'content_type' must be defined for a cloud_init config. Guest '%{machine}'
2441
+ has not defined a 'content_type' for its cloud_init config. Valid options
2442
+ supported by Vagrant are listed below:
2443
+
2444
+ %{accepted_types}
2445
+ incorrect_content_type: |-
2446
+ Content-type "%{content_type}" is not supported by Vagrant and
2447
+ cloud-init on machine '%{machine}'. Valid options supported by Vagrant are
2448
+ listed below:
2449
+
2450
+ %{accepted_types}
2451
+ incorrect_inline_type: |-
2452
+ The inline config cloud_init option for guest '%{machine}' is of type '%{type}', but
2453
+ should be a String.
2454
+ incorrect_path_type: |-
2455
+ The path '%{path}' given for guest '%{machine}' is of type '%{type}'.
2456
+ Config option 'path' must be a String.
2457
+ incorrect_type_set: |-
2458
+ The type '%{type}' defined for a cloud_init config with guest '%{machine}'
2459
+ is not a valid type. Currently, Vagrant only supports type: '%{default_type}'.
2460
+ path_and_inline_set: |-
2461
+ Guest '%{machine}' defines both a 'path' and 'inline' for its cloud_init config,
2462
+ however only one config option should be defined for cloud_init.
2463
+ path_invalid: |-
2464
+ The path '%{path}' defined for guest '%{machine}' cloud_init config was
2465
+ not found on the system.
337
2466
  actions:
338
2467
  runner:
339
2468
  waiting_cleanup: "Waiting for cleanup before exiting..."
340
2469
  exit_immediately: "Exiting immediately, without cleanup!"
2470
+ disk:
2471
+ cleanup_provider_unsupported: |-
2472
+ Guest provider '%{provider}' does not support the cleaning up disks, and will not attempt to clean up attached disks on the guest..
2473
+ provider_unsupported: |-
2474
+ Guest provider '%{provider}' does not support the disk feature, and will not use the disk configuration defined.
341
2475
  vm:
342
2476
  boot:
343
2477
  booting: Booting VM...
344
- waiting: Waiting for VM to boot. This can take a few minutes.
345
- ready: VM booted and ready for use!
346
- failed: Failed to connect to VM!
347
- failed_to_boot: |-
348
- Failed to connect to VM via SSH. Please verify the VM successfully booted
349
- by looking at the VirtualBox GUI.
350
- failed_to_run: |-
351
- The VM failed to remain in the "running" state while attempting to boot.
352
- This is normally caused by a misconfiguration or host system incompatibilities.
353
- Please open the VirtualBox GUI and attempt to boot the virtual machine
354
- manually to get a more informative error message.
355
2478
  bridged_networking:
356
2479
  available: |-
357
2480
  Available bridged network interfaces:
@@ -361,20 +2484,21 @@ en:
361
2484
  Enabling bridged network...
362
2485
  preparing: |-
363
2486
  Preparing bridged networking...
2487
+ choice_help: |-
2488
+ When choosing an interface, it is usually the one that is
2489
+ being used to connect to the internet.
2490
+ select_interface: |-
2491
+ Which interface should the network bridge to?
364
2492
  specific_not_found: |-
365
2493
  Specific bridge '%{bridge}' not found. You may be asked to specify
366
2494
  which network to bridge to.
367
2495
  check_box:
368
- not_found: Box %{name} was not found. Fetching box from specified URL...
369
- not_specified: |-
370
- No base box was specified! A base box is required as a staring point
371
- for every vagrant virtual machine. Please specify one in your Vagrantfile
372
- using `config.vm.box`
373
- does_not_exist: |-
374
- Specified box `%{name}` does not exist!
375
-
376
- The box must be added through the `vagrant box add` command. Please view
377
- the documentation associated with the command for more information.
2496
+ not_found: |-
2497
+ Box '%{name}' was not found. Fetching box from specified URL for
2498
+ the provider '%{provider}'. Note that if the URL does not have
2499
+ a box for this provider, you should interrupt Vagrant now and add
2500
+ the box yourself. Otherwise Vagrant will attempt to download the
2501
+ full box prior to discovering this error.
378
2502
  check_guest_additions:
379
2503
  not_detected: |-
380
2504
  No guest additions were detected on the base box for this VM! Guest
@@ -385,11 +2509,12 @@ en:
385
2509
  This is not an error message; everything may continue to work properly,
386
2510
  in which case you may ignore this message.
387
2511
  version_mismatch: |-
388
- The guest additions on this VM do not match the install version of
389
- VirtualBox! This may cause things such as forwarded ports, shared
390
- folders, and more to not work properly. If any of those things fail on
391
- this machine, please update the guest additions and repackage the
392
- box.
2512
+ The guest additions on this VM do not match the installed version of
2513
+ VirtualBox! In most cases this is fine, but in rare cases it can
2514
+ prevent things such as shared folders from working properly. If you see
2515
+ shared folder errors, please make sure the guest additions within the
2516
+ virtual machine match the version of VirtualBox you have installed on
2517
+ your host and reload your VM.
393
2518
 
394
2519
  Guest Additions Version: %{guest_version}
395
2520
  VirtualBox Version: %{virtualbox_version}
@@ -399,6 +2524,19 @@ en:
399
2524
  deleting: Clearing any previously set network interfaces...
400
2525
  clear_shared_folders:
401
2526
  deleting: Cleaning previously set shared folders...
2527
+ clone:
2528
+ setup_master: Preparing master VM for linked clones...
2529
+ setup_master_detail: |-
2530
+ This is a one time operation. Once the master VM is prepared,
2531
+ it will be used as a base for linked clones, making the creation
2532
+ of new VMs take milliseconds on a modern system.
2533
+ creating: Cloning VM...
2534
+ failure: Creation of the linked clone failed.
2535
+ create_master:
2536
+ failure: |-
2537
+ Failed to create lock-file for master VM creation for box %{box}.
2538
+ cloud_init_user_data_setup: |-
2539
+ Preparing user data for cloud-init...
402
2540
  customize:
403
2541
  failure: |-
404
2542
  A customization command failed:
@@ -410,7 +2548,7 @@ en:
410
2548
  %{error}
411
2549
 
412
2550
  Please fix this customization and try again.
413
- running: Running any VM customizations...
2551
+ running: Running '%{event}' VM customizations...
414
2552
  destroy:
415
2553
  destroying: Destroying VM and associated drives...
416
2554
  destroy_network:
@@ -433,20 +2571,34 @@ en:
433
2571
  Forwarded port: %{guest_port} => %{host_port}
434
2572
  collision_error: |-
435
2573
  Vagrant cannot forward the specified ports on this VM, since they
436
- would collide with another VirtualBox virtual machine's forwarded
437
- ports! The forwarded port to %{host_port} is already in use on the host
438
- machine.
2574
+ would collide with some other application that is already listening
2575
+ on these ports. The forwarded port to %{host_port} is already in use
2576
+ on the host machine.
439
2577
 
440
- To fix this, modify your current projects Vagrantfile to use another
2578
+ To fix this, modify your current project's Vagrantfile to use another
441
2579
  port. Example, where '1234' would be replaced by a unique host port:
442
2580
 
443
- config.vm.forward_port %{guest_port}, 1234
2581
+ config.vm.network :forwarded_port, guest: %{guest_port}, host: 1234
2582
+
2583
+ Sometimes, Vagrant will attempt to auto-correct this for you. In this
2584
+ case, Vagrant was unable to. This is usually because the guest machine
2585
+ is in a state which doesn't allow modifying port forwarding. You could
2586
+ try 'vagrant reload' (equivalent of running a halt followed by an up)
2587
+ so vagrant can attempt to auto-correct this upon booting. Be warned
2588
+ that any unsaved work might be lost.
444
2589
 
445
2590
  fixed_collision: |-
446
2591
  Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
447
2592
  forwarding: Forwarding ports...
448
2593
  forwarding_entry: |-
449
- -- %{guest_port} => %{host_port} (adapter %{adapter})
2594
+ %{guest_port} (guest) => %{host_port} (host) (adapter %{adapter})
2595
+ host_ip_not_found: |-
2596
+ You are trying to forward a host IP that does not exist. Please set `host_ip`
2597
+ to the address of an existing IPv4 network interface, or remove the option
2598
+ from your port forward configuration.
2599
+
2600
+ VM: %{name}
2601
+ Host IP: %{host_ip}
450
2602
  non_nat: |-
451
2603
  VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
452
2604
  forwards on this adapter.
@@ -461,8 +2613,13 @@ en:
461
2613
  Forcing shutdown of VM...
462
2614
  graceful: |-
463
2615
  Attempting graceful shutdown of VM...
464
- host_name:
465
- setting: "Setting host name..."
2616
+ guest_not_ready: |-
2617
+ Guest communication could not be established! This is usually because
2618
+ SSH is not running, the authentication information was changed,
2619
+ or some other networking issue. Vagrant will force halt, if
2620
+ capable.
2621
+ hostname:
2622
+ setting: "Setting hostname..."
466
2623
  import:
467
2624
  importing: Importing base box '%{name}'...
468
2625
  failure: |-
@@ -470,16 +2627,13 @@ en:
470
2627
  manually for more verbose error output.
471
2628
  match_mac:
472
2629
  matching: Matching MAC address for NAT networking...
2630
+ generating: Generating MAC address for NAT networking...
473
2631
  no_base_mac: |-
474
2632
  No base MAC address was specified. This is required for the NAT networking
475
2633
  to work properly (and hence port forwarding, SSH, etc.). Specifying this
476
- MAC address is typically up to the box and box maintiner. Please contact
2634
+ MAC address is typically up to the box and box maintainer. Please contact
477
2635
  the relevant person to solve this issue.
478
2636
  network:
479
- adapter_collision: |-
480
- More than one network have been assigned to the same adapter. Please
481
- make sure your networks you've configured in your Vagrantfile do not
482
- overlap.
483
2637
  configuring: |-
484
2638
  Configuring and enabling network interfaces...
485
2639
  dhcp_already_attached: |-
@@ -490,19 +2644,19 @@ en:
490
2644
  host only network interface can have only one DHCP server. Please
491
2645
  reconfigure your host only network or remove the virtual machine
492
2646
  using the other host only network.
493
- no_adapters: |-
494
- No available adapters on the virtual machine were found to accomodate
495
- for all configured networks. VirtualBox virtual machines have 8
496
- network interfaces available usually, so please lower the number of
497
- networks to below 8.
498
2647
  preparing: |-
499
2648
  Preparing network interfaces based on configuration...
2649
+ cleanup_vbox_default_dhcp: |-
2650
+ Found default DHCP server from initial VirtualBox install. Cleaning it up...
500
2651
  host_only_network:
501
2652
  collides: |-
502
2653
  The specified host network collides with a non-hostonly network!
503
2654
  This will cause your specified IP to be inaccessible. Please change
504
- the IP or name of your host only network to not match that of
2655
+ the IP or name of your host only network so that it no longer matches that of
505
2656
  a bridged or non-hostonly network.
2657
+
2658
+ Bridged Network Address: '%{netaddr}'
2659
+ Host-only Network '%{interface_name}': '%{that_netaddr}'
506
2660
  creating: "Creating new host only network for environment..."
507
2661
  enabling: "Enabling host only network..."
508
2662
  not_found: |-
@@ -512,63 +2666,111 @@ en:
512
2666
  specified network manually.
513
2667
  preparing: "Preparing host only network..."
514
2668
  nfs:
515
- host_required: |-
516
- A host class is required for NFS shared folders. By default, these
517
- are auto-detected, but can be overridden with `config.vagrant.host`.
518
- There is currently no host class loaded.
519
- no_host_network: |-
520
- NFS shared folders requires that host only networking is enabled
521
- with a static IP. Please enable host only network and assign a
522
- static IP via `config.vm.network`.
523
- not_supported: |-
524
- The host class is reporting that NFS is not supported by this host,
525
- or `nfsd` may not be installed. Please verify that `nfsd` is installed
526
- on your machine, and retry.
527
2669
  exporting: Exporting NFS shared folders...
2670
+ installing: "Installing NFS client..."
528
2671
  mounting: Mounting NFS shared folders...
529
- persist:
530
- dotfile_error: |-
531
- The dotfile which Vagrant uses to store the UUID of the project's
532
- virtual machine already exists and is not a file! The dotfile is
533
- currently configured to be '%{dotfile_path}'
534
-
535
- To change this value, please see `config.vagrant.dotfile_name`
536
-
537
- Are you trying to use Vagrant from your home directory? This is the
538
- leading cause of this error message. To resolve this, simply use a
539
- different directory. Or, if you really want to run Vagrant from your
540
- home directory, modify the `config.vagrant.dotfile_name` configuration
541
- key.
542
- persisting: "Persisting the VM UUID (%{uuid})..."
2672
+ mounting_entry: "%{hostpath} => %{guestpath}"
2673
+ v4_with_udp_warning: |-
2674
+
2675
+ WARNING: Invalid NFS settings detected!
2676
+
2677
+ Detected UDP enabled with NFSv4. NFSv4 does not support UDP.
2678
+ If folder mount fails disable UDP using the following option:
2679
+
2680
+ nfs_udp: false
2681
+
2682
+ For more information see:
2683
+ RFC5661: https://tools.ietf.org/html/rfc5661#section-2.9.1
2684
+ RFC7530: https://tools.ietf.org/html/rfc7530#section-3.1
2685
+ smb:
2686
+ mfsymlink_warning: |-
2687
+ Vagrant is currently configured to mount SMB folders with the
2688
+ `mfsymlink` option enabled. This is equivalent to adding the
2689
+ following to your Vagrantfile:
2690
+
2691
+ config.vm.synced_folder '/host/path', '/guest/path', type: "smb", mount_options: ['mfsymlink']
2692
+
2693
+ This option may be globally disabled with an environment variable:
2694
+
2695
+ VAGRANT_DISABLE_SMBMFSYMLINKS=1
2696
+
543
2697
  provision:
544
2698
  beginning: "Running provisioner: %{provisioner}..."
2699
+ disabled_by_config: |-
2700
+ Machine not provisioned because `--no-provision` is specified.
2701
+ disabled_by_sentinel: |-
2702
+ Machine already provisioned. Run `vagrant provision` or use the `--provision`
2703
+ flag to force provisioning. Provisioners marked to run always will still run.
2704
+ file:
2705
+ locations: "%{src} => %{dst}"
545
2706
  resume:
546
2707
  resuming: Resuming suspended VM...
2708
+ unpausing: |-
2709
+ Unpausing the VM...
547
2710
  share_folders:
548
2711
  creating: Creating shared folders metadata...
549
2712
  mounting: Mounting shared folders...
550
- mounting_entry: "-- %{name}: %{guest_path}"
551
- nomount_entry: "-- %{name}: Automounting disabled."
2713
+ mounting_entry: "%{hostpath} => %{guestpath}"
2714
+ nomount_entry: "Automounting disabled: %{hostpath}"
2715
+ set_default_nic_type:
2716
+ e1000_warning: |-
2717
+ Vagrant has detected a configuration issue which exposes a
2718
+ vulnerability with the installed version of VirtualBox. The
2719
+ current guest is configured to use an E1000 NIC type for a
2720
+ network adapter which is vulnerable in this version of VirtualBox.
2721
+ Ensure the guest is trusted to use this configuration or update
2722
+ the NIC type using one of the methods below:
2723
+
2724
+ https://www.vagrantup.com/docs/virtualbox/configuration.html#default-nic-type
2725
+ https://www.vagrantup.com/docs/virtualbox/networking.html#virtualbox-nic-type
2726
+ set_name:
2727
+ setting_name: |-
2728
+ Setting the name of the VM: %{name}
2729
+ snapshot:
2730
+ deleting: |-
2731
+ Deleting the snapshot '%{name}'...
2732
+ deleted: |-
2733
+ Snapshot deleted!
2734
+ list_none: |-
2735
+ No snapshots have been taken yet!
2736
+ list_none_detail: |-
2737
+ You can take a snapshot using `vagrant snapshot save`. Note that
2738
+ not all providers support this yet. Once a snapshot is taken, you
2739
+ can list them using this command, and use commands such as
2740
+ `vagrant snapshot restore` to go back to a certain snapshot.
2741
+ restoring: |-
2742
+ Restoring the snapshot '%{name}'...
2743
+ saving: |-
2744
+ Snapshotting the machine as '%{name}'...
2745
+ saved: |-
2746
+ Snapshot saved! You can restore the snapshot at any time by
2747
+ using `vagrant snapshot restore`. You can delete it using
2748
+ `vagrant snapshot delete`.
552
2749
  suspend:
553
2750
  suspending: Saving VM state and suspending execution...
554
2751
 
555
2752
  box:
2753
+ unpackage:
2754
+ untar_failure: |-
2755
+ The box failed to unpackage properly. Please verify that the box
2756
+ file you're trying to add is not corrupted and that enough disk space
2757
+ is available and then try again.
2758
+ The output from attempting to unpackage (if any):
2759
+
2760
+ %{output}
2761
+ add:
2762
+ adding: |-
2763
+ Extracting box...
2764
+ checksumming: |-
2765
+ Calculating and comparing box checksum...
556
2766
  destroy:
557
2767
  destroying: "Deleting box '%{name}'..."
558
2768
  download:
559
- with: "Downloading with %{class}..."
560
2769
  cleaning: "Cleaning up downloaded box..."
561
- unknown_type: "Unknown or unsupported URI type given for box download."
562
- unpackage:
563
- extracting: "Extracting box..."
564
- already_exists: |-
565
- A box already exists under the name of '%{name}'. This may or may
566
- not be the same box you are trying to add. Please use another name
567
- or remove the previous box then try to add it again.
568
- untar_failure: |-
569
- Failed to untar the box file. This is usually because you're
570
- attempting to add a box that isn't a valid box file. Please
571
- double check that the box file is properly packaged.
2770
+ download_failed: |-
2771
+ Download failed. Will try another box URL if there is one.
2772
+ interrupted: "Box download was interrupted. Exiting."
2773
+ resuming: "Box download is resuming from prior download progress"
572
2774
  verify:
573
2775
  verifying: "Verifying box..."
574
2776
  failed: |-
@@ -580,41 +2782,42 @@ en:
580
2782
  general:
581
2783
  package:
582
2784
  packaging: "Packaging additional file: %{file}"
583
- compressing: "Compressing package to: %{tar_path}"
2785
+ compressing: "Compressing package to: %{fullpath}"
2786
+ box_folder: "Creating new folder: %{folder_path}"
584
2787
  output_exists: |-
585
- The specified file to save the package as already exists. Please
2788
+ The specified file '%{filename}' to save the package as already exists. Please
586
2789
  remove this file or specify a different file name for outputting.
587
2790
  output_is_directory: |-
588
2791
  The specified output is a directory. Please specify a path including
589
2792
  a filename.
590
2793
  requires_directory: |-
591
2794
  A directory was not specified to package. This should never happen
592
- and is a result of an internal inconsistency.
2795
+ and is a result of an internal inconsistency. Please report a bug
2796
+ on the Vagrant bug tracker.
593
2797
  include_file_missing: |-
594
2798
  Package include file doesn't exist: %{file}
595
2799
 
596
- downloaders:
597
- file:
598
- download: "Copying box to temporary location..."
599
- file_missing: "The specified path to a file doesn't exist."
600
- http:
601
- download: "Downloading box: %{url}"
602
- socket_error: |-
603
- An error occurred while trying to download the specified box. This most
604
- often happens if there is no internet connection or the address is
605
- invalid.
606
- status_error: |-
607
- Bad status code: %{status}
608
-
609
- Please verify that the box exists and is accessible. Also verify that
610
- this computer is properly connected to the internet.
611
-
612
2800
  hosts:
613
2801
  bsd:
614
2802
  nfs_export: |-
615
2803
  Preparing to edit /etc/exports. Administrator privileges will be required...
616
2804
  nfs_prune: |-
617
2805
  Pruning invalid NFS exports. Administrator privileges will be required...
2806
+ darwin:
2807
+ virtualbox_install_download: |-
2808
+ Downloading VirtualBox %{version}...
2809
+ virtualbox_install_detail: |-
2810
+ This may not be the latest version of VirtualBox, but it is a version
2811
+ that is known to work well. Over time, we'll update the version that
2812
+ is installed.
2813
+ virtualbox_install_install: |-
2814
+ Installing VirtualBox. This will take a few minutes...
2815
+ virtualbox_install_install_detail: |-
2816
+ You may be asked for your administrator password during this time.
2817
+ If you're uncomfortable entering your password here, please install
2818
+ VirtualBox manually.
2819
+ virtualbox_install_success: |-
2820
+ VirtualBox has successfully been installed!
618
2821
  linux:
619
2822
  nfs_export: |-
620
2823
  Preparing to edit /etc/exports. Administrator privileges will be required...
@@ -623,45 +2826,99 @@ en:
623
2826
  arch:
624
2827
  nfs_export:
625
2828
  prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
626
- freebsd:
627
- nfs_whitespace: |-
628
- FreeBSD hosts do not support sharing directories with whitespace in
629
- their path. Please adjust your path accordingly.
2829
+ windows:
2830
+ virtualbox_install_download: |-
2831
+ Downloading VirtualBox %{version}...
2832
+ virtualbox_install_detail: |-
2833
+ This may not be the latest version of VirtualBox, but it is a version
2834
+ that is known to work well. Over time, we'll update the version that
2835
+ is installed.
2836
+ virtualbox_install_install: |-
2837
+ Installing VirtualBox. This will take a few minutes...
2838
+ virtualbox_install_install_detail: |-
2839
+ A couple pop-ups will occur during this installation process to
2840
+ ask for admin privileges as well as to install Oracle drivers.
2841
+ Please say yes to both. If you're uncomfortable with this, please
2842
+ install VirtualBox manually.
2843
+ virtualbox_install_success: |-
2844
+ VirtualBox has successfully been installed!
630
2845
 
631
2846
  provisioners:
2847
+ base:
2848
+ both_before_after_set: |-
2849
+ Dependency provisioners cannot currently set both `before` and `after` options.
2850
+ dependency_provisioner_dependency: |-
2851
+ Dependency provisioner "%{name}" relies on another dependency provisioner "%{dep_name}". This is currently not supported.
2852
+ invalid_alias_value: |-
2853
+ Provisioner option `%{opt}` is not set as a valid type. Must be a string, or one of the alias shortcuts: %{alias}
2854
+ missing_provisioner_name: |-
2855
+ Could not find provisioner name `%{name}` defined for machine `%{machine_name}` to run provisioner "%{provisioner_name}" `%{action}`.
2856
+ wrong_type: |-
2857
+ Provisioner option `%{opt}` is not set as a valid type. Must be a %{type}.
632
2858
  chef:
633
2859
  chef_not_detected: |-
634
2860
  The chef binary (either `chef-solo` or `chef-client`) was not found on
635
2861
  the VM and is required for chef provisioning. Please verify that chef
636
2862
  is installed and that the binary is available on the PATH.
2863
+ cookbooks_folder_not_found_warning:
2864
+ "The cookbook path '%{path}' doesn't exist. Ignoring..."
2865
+ nodes_folder_not_found_warning:
2866
+ "The node path '%{path}' doesn't exist. Ignoring..."
2867
+ data_bags_folder_not_found_warning:
2868
+ "The databag path '%{path}' doesn't exist. Ignoring..."
2869
+ roles_folder_not_found_warning:
2870
+ "The role path '%{path}' doesn't exist. Ignoring..."
2871
+ environments_folder_not_found_warning:
2872
+ "The environment path '%{path}' doesn't exist. Ignoring..."
637
2873
  json: "Generating chef JSON and uploading..."
638
2874
  client_key_folder: "Creating folder to hold client key..."
2875
+ generating_node_name: |-
2876
+ Auto-generating node name for Chef...
2877
+ using_hostname_node_name: |-
2878
+ Using hostname "%{hostname}" as node name for Chef...
2879
+ install_failed: |-
2880
+ Vagrant could not detect Chef on the guest! Even after Vagrant
2881
+ attempted to install Chef, it could still not find Chef on the system.
2882
+ Please make sure you are connected to the Internet and can access
2883
+ Chef's package distribution servers. If you already have Chef
2884
+ installed on this guest, you can disable the automatic Chef detection
2885
+ by setting the 'install' option in the Chef configuration section of
2886
+ your Vagrantfile:
2887
+
2888
+ chef.install = false
2889
+ log_level_empty: |-
2890
+ The Chef provisioner requires a log level. If you did not set a
2891
+ log level, this is probably a bug and should be reported.
639
2892
  upload_validation_key: "Uploading chef client validation key..."
640
2893
  upload_encrypted_data_bag_secret_key: "Uploading chef encrypted data bag secret key..."
2894
+ recipe_empty: |-
2895
+ Chef Apply provisioning requires that the `config.chef.recipe` be set
2896
+ to a string containing the recipe contents you want to execute on the
2897
+ guest.
641
2898
  running_client: "Running chef-client..."
642
2899
  running_client_again: "Running chef-client again (failed to converge)..."
2900
+ running_apply: "Running chef-apply..."
643
2901
  running_solo: "Running chef-solo..."
644
2902
  running_solo_again: "Running chef-solo again (failed to converge)..."
645
- invalid_provisioner: |-
646
- Vagrant::Provisioners::Chef is not a valid provisioner! Use
647
- ChefSolo or ChefClient instead.
2903
+ running_zero: "Running chef-client (local-mode)..."
2904
+ running_zero_again: "Running chef-client (local-mode) again (failed to converge)..."
648
2905
  missing_shared_folders: |-
649
2906
  Shared folders that Chef requires are missing on the virtual machine.
650
2907
  This is usually due to configuration changing after already booting the
651
2908
  machine. The fix is to run a `vagrant reload` so that the proper shared
652
- folders will prepared and mounted on the VM.
2909
+ folders will be prepared and mounted on the VM.
653
2910
  no_convergence: |-
654
2911
  Chef never successfully completed! Any errors should be visible in the
655
2912
  output above. Please fix your recipes so that they properly complete.
656
2913
  not_detected: |-
657
- The `%{binary}` binary appears to not be in the PATH of the guest. This
2914
+ The `%{binary}` binary appears not to be in the PATH of the guest. This
658
2915
  could be because the PATH is not properly setup or perhaps chef is not
659
2916
  installed on this guest. Chef provisioning can not continue without
660
2917
  chef properly installed.
661
2918
  server_url_required: |-
662
2919
  Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
663
2920
  URL of your chef server. Examples include "http://12.12.12.12:4000" and
664
- "http://myserver.com:4000" (the port of course can be different, but 4000 is the default)
2921
+ "http://example.com:4000" (the port of course can be different, but 4000 is the default)
665
2922
  server_validation_key_required: |-
666
2923
  Chef server provisioning requires that the `config.chef.validation_key_path` configuration
667
2924
  be set to a path on your local machine of the validation key used to register the
@@ -669,91 +2926,224 @@ en:
669
2926
  server_validation_key_doesnt_exist: |-
670
2927
  The validation key set for `config.chef.validation_key_path` does not exist! This
671
2928
  file needs to exist so it can be uploaded to the virtual machine.
2929
+ upload_path_empty: |-
2930
+ The Chef Apply provisioner requires that the `config.chef.upload_path`
2931
+ be set to a non-nil, non-empty value.
2932
+ missing_node_name: |-
2933
+ The Chef Client provisioner cannot delete the %{deletable} from
2934
+ the Chef server because Vagrant does not know the `node_name'! You
2935
+ need to manually delete the %{deletable} from the Chef server. You
2936
+ can specify the `node_name' in the Chef configuration to prevent this
2937
+ in the future.
2938
+ deleting_from_server: "Deleting %{deletable} \"%{name}\" from Chef server..."
2939
+
2940
+ file:
2941
+ no_dest_file: "File destination must be specified."
2942
+ no_source_file: "File source must be specified."
2943
+ path_invalid: "File upload source file %{path} must exist"
672
2944
 
673
2945
  puppet:
674
2946
  not_detected: |-
675
- The `%{binary}` binary appears to not be in the PATH of the guest. This
2947
+ The `%{binary}` binary appears not to be in the PATH of the guest. This
676
2948
  could be because the PATH is not properly setup or perhaps Puppet is not
677
2949
  installed on this guest. Puppet provisioning can not continue without
678
2950
  Puppet properly installed.
679
2951
  running_puppet: "Running Puppet with %{manifest}..."
2952
+ running_puppet_env: "Running Puppet with environment %{environment}..."
680
2953
  manifest_missing: |-
681
2954
  The configured Puppet manifest is missing. Please specify a path to an
682
2955
  existing manifest:
683
2956
 
684
2957
  %{manifest}
2958
+ environment_missing: |-
2959
+ The configured Puppet environment folder %{environment} was not found in the
2960
+ specified environmentpath %{environmentpath}.
2961
+ Please specify a path to an existing Puppet directory environment.
2962
+ environment_path_missing: "The environment path specified for Puppet does not exist: %{path}"
685
2963
  manifests_path_missing: "The manifests path specified for Puppet does not exist: %{path}"
686
2964
  missing_shared_folders: |-
687
2965
  Shared folders that Puppet requires are missing on the virtual machine.
688
2966
  This is usually due to configuration changing after already booting the
689
2967
  machine. The fix is to run a `vagrant reload` so that the proper shared
690
- folders will prepared and mounted on the VM.
2968
+ folders will be prepared and mounted on the VM.
691
2969
  module_path_missing: "The configured module path doesn't exist: %{path}"
692
2970
 
693
2971
  puppet_server:
2972
+ cert_requires_node: |-
2973
+ "puppet_node" is required when a client cert or key is specified
2974
+ client_cert_and_private_key: |-
2975
+ Both a client certificate and private key must be specified, if any
2976
+ client_cert_not_found: |-
2977
+ The specified client cert path could not be found
2978
+ client_private_key_not_found: |-
2979
+ The specified client private key path could not be found
694
2980
  not_detected: |-
695
- The `%{binary}` binary appears to not be in the PATH of the guest. This
2981
+ The `%{binary}` binary appears not to be in the PATH of the guest. This
696
2982
  could be because the PATH is not properly setup or perhaps Puppet is not
697
2983
  installed on this guest. Puppet provisioning can not continue without
698
2984
  Puppet properly installed.
699
2985
  running_puppetd: "Running Puppet agent..."
2986
+ uploading_client_cert: |-
2987
+ Uploading client certificate and private key...
700
2988
 
701
2989
  shell:
702
- args_not_string: "Shell provisioner `args` must be a string."
703
- path_and_inline_set: "Only one of `path` or `inline` may be set."
2990
+ args_bad_type: "Shell provisioner `args` must be a string or array."
2991
+ invalid_encoding: |-
2992
+ Invalid encoding '%{actual}' for script at '%{path}'.
2993
+ Must be '%{default}' or UTF-8.
2994
+ env_must_be_a_hash: |-
2995
+ The shell provisioner's `env' option must be a hash.
704
2996
  no_path_or_inline: "One of `path` or `inline` must be set."
2997
+ path_and_inline_set: "Only one of `path` or `inline` may be set."
705
2998
  path_invalid: "`path` for shell provisioner does not exist on the host system: %{path}"
2999
+ running: "Running: %{script}"
3000
+ runningas: "Running: %{local} as %{remote}"
706
3001
  upload_path_not_set: "`upload_path` must be set for the shell provisioner."
3002
+ interactive_not_elevated: "To be interactive, it must also be privileged."
707
3003
 
708
- guest:
709
- base:
710
- unsupported_configure_networks: |-
711
- Networking features require support that is dependent on the operating
712
- system running within the guest virtual machine. Vagrant has built-in support
713
- for many operating systems: Debian, Ubuntu, Gentoo, and RedHat. The distro
714
- of your VM couldn't be detected or doesn't support networking features.
715
-
716
- Most of the time this is simply due to the fact that no one has contributed
717
- back the logic necessary to set this up. Please report a bug as well as the
718
- box you're using.
719
- unsupported_host_name: |-
720
- Setting host name is currently only supported on Debian, Ubuntu and RedHat.
721
- If you'd like your guest OS to be supported, please open a ticket on the
722
- project.
723
- unsupported_nfs: |-
724
- Vagrant doesn't support mounting NFS shared folders for your specific
725
- guest operating system yet, or possibly couldn't properly detect the
726
- operating system on the VM.
727
-
728
- Most of the time this is simply due to the fact that no one has contributed
729
- back the logic necessary to set this up. Please report a bug as well as the
730
- box you're using.
731
- unsupported_halt: |-
732
- Vagrant doesn't support graceful shutdowns for your specific
733
- guest operating system yet, or possibly couldn't properly detect the
734
- operating system on the VM.
735
-
736
- Most of the time this is simply due to the fact that no one has contributed
737
- back the logic necessary to set this up. Please report a bug as well as the
738
- box you're using.
739
- unsupported_shared_folder: |-
740
- Vagrant doesn't support mounting shared folders for your specific
741
- guest operating system yet, or possibly couldn't properly detect the
742
- operating system on the VM.
743
-
744
- Most of the time this is simply due to the fact that no one has contributed
745
- back the logic necessary to set this up. Please report a bug as well as the
746
- box you're using.
747
- linux:
748
- guestpath_expand_fail: |-
749
- Vagrant failed to determine the shell expansion of the guest path
750
- for one of your shared folders. This is an extremely rare error case
751
- and most likely indicates an unusual configuration of the guest system.
752
- Please report a bug with your Vagrantfile.
753
- mount_fail: "Failed to mount shared folders. `vboxsf` was not available."
754
- mount_nfs_fail: |-
755
- Mounting NFS shared folders failed. This is most often caused by the NFS
756
- client software not being installed on the guest machine. Please verify
757
- that the NFS client software is properly installed, and consult any resources
758
- specific to the linux distro you're using for more information on how to
759
- do this.
3004
+ ansible:
3005
+ ansible_host_pattern_detected: |-
3006
+ Vagrant has detected a host range pattern in the `groups` option.
3007
+ Vagrant doesn't fully check the validity of these parameters!
3008
+
3009
+ Please check https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#inventory-basics-formats-hosts-and-groups
3010
+ for more information.
3011
+ cannot_detect: |-
3012
+ Vagrant does not support detecting whether Ansible is installed
3013
+ for the guest OS running in the machine. Vagrant will assume it is
3014
+ installed and attempt to continue.
3015
+
3016
+ If you'd like this provisioner to be improved, please
3017
+ take a look at the Vagrant source code linked below and try
3018
+ to contribute back support. Thank you!
3019
+
3020
+ https://github.com/hashicorp/vagrant
3021
+ errors:
3022
+ ansible_command_failed: |-
3023
+ Ansible failed to complete successfully. Any error output should be
3024
+ visible above. Please fix these errors and try again.
3025
+ ansible_compatibility_mode_conflict: |-
3026
+ The requested Ansible compatibility mode (%{compatibility_mode}) is in conflict with
3027
+ the Ansible installation on your Vagrant %{system} system (currently: %{ansible_version}).
3028
+ See https://docs.vagrantup.com/v2/provisioning/ansible_common.html#compatibility_mode
3029
+ for more information.
3030
+ ansible_not_found_on_guest: |-
3031
+ The Ansible software could not be found! Please verify
3032
+ that Ansible is correctly installed on your guest system.
3033
+
3034
+ If you haven't installed Ansible yet, please install Ansible
3035
+ on your Vagrant basebox, or enable the automated setup with the
3036
+ ansible_local provisioner `install` option. Please check
3037
+ https://docs.vagrantup.com/v2/provisioning/ansible_local.html#install
3038
+ for more information.
3039
+ ansible_not_found_on_host: |-
3040
+ The Ansible software could not be found! Please verify
3041
+ that Ansible is correctly installed on your host system.
3042
+
3043
+ If you haven't installed Ansible yet, please install Ansible
3044
+ on your host system. Vagrant can't do this for you in a safe and
3045
+ automated way.
3046
+ Please check https://docs.ansible.com for more information.
3047
+ ansible_programming_error: |-
3048
+ Ansible Provisioner Programming Error:
3049
+
3050
+ %{message}
3051
+
3052
+ Internal Details:
3053
+
3054
+ %{details}
3055
+
3056
+ Sorry, but this Vagrant error should never occur.
3057
+ Please check https://github.com/hashicorp/vagrant/issues for any
3058
+ existing bug report. If needed, please create a new issue. Thank you!
3059
+ cannot_support_pip_install: |-
3060
+ Unfortunately Vagrant does not support yet installing Ansible
3061
+ from pip for the guest OS running in the machine.
3062
+
3063
+ If you'd like this provisioner to be improved, please
3064
+ take a look at the Vagrant source code linked below and try
3065
+ to contribute back support. Thank you!
3066
+
3067
+ https://github.com/hashicorp/vagrant
3068
+ ansible_version_mismatch: |-
3069
+ The requested Ansible version (%{required_version}) was not found on the %{system}.
3070
+ Please check the Ansible installation on your Vagrant %{system} system (currently: %{current_version}),
3071
+ or adapt the provisioner `version` option in your Vagrantfile.
3072
+ See https://docs.vagrantup.com/v2/provisioning/ansible_common.html#version
3073
+ for more information.
3074
+ config_file_not_found: |-
3075
+ `%{config_option}` does not exist on the %{system}: %{path}
3076
+ extra_vars_invalid: |-
3077
+ `extra_vars` must be a hash or a path to an existing file. Received: %{value} (as %{type})
3078
+ no_compatibility_mode: |-
3079
+ `compatibility_mode` must be a valid mode (possible values: %{valid_modes}).
3080
+ no_playbook: |-
3081
+ `playbook` file path must be set.
3082
+ raw_arguments_invalid: |-
3083
+ `raw_arguments` must be an array of strings. Received: %{value} (as %{type})
3084
+ raw_ssh_args_invalid: |-
3085
+ `raw_ssh_args` must be an array of strings. Received: %{value} (as %{type})
3086
+ installing: "Installing Ansible..."
3087
+ installing_pip: "Installing pip... (for Ansible installation)"
3088
+ running_galaxy: "Running ansible-galaxy..."
3089
+ running_playbook: "Running ansible-playbook..."
3090
+ windows_not_supported_for_control_machine: |-
3091
+ Windows is not officially supported for the Ansible Control Machine.
3092
+ Please check https://docs.ansible.com/intro_installation.html#control-machine-requirements
3093
+ compatibility_mode_not_detected: |-
3094
+ Vagrant gathered an unknown Ansible version:
3095
+
3096
+ %{gathered_version}
3097
+ and falls back on the compatibility mode '%{compatibility_mode}'.
3098
+
3099
+ Alternatively, the compatibility mode can be specified in your Vagrantfile:
3100
+ https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode
3101
+ compatibility_mode_warning: |-
3102
+ Vagrant has automatically selected the compatibility mode '%{compatibility_mode}'
3103
+ according to the Ansible version installed (%{ansible_version}).
3104
+
3105
+ Alternatively, the compatibility mode can be specified in your Vagrantfile:
3106
+ https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode
3107
+
3108
+ docker:
3109
+ wrong_provisioner: |-
3110
+ The Docker post-install provisioner cannot also take a Docker post-install
3111
+ provisioner
3112
+ not_running: "Docker is not running on the guest VM."
3113
+ install_failed: "Docker installation failed."
3114
+
3115
+ podman:
3116
+ wrong_provisioner: |-
3117
+ The Podman post-install provisioner cannot also take a Podman post-install
3118
+ provisioner
3119
+ install_failed: "Podman installation failed."
3120
+
3121
+ salt:
3122
+ minion_config_nonexist: |-
3123
+ The specified minion_config '%{missing_config_file}' file could not be found.
3124
+ master_config_nonexist: |-
3125
+ The specified master_config '%{missing_config_file}' file could not be found.
3126
+ grains_config_nonexist: |-
3127
+ The specified grains_config file could not be found.
3128
+ missing_key: |-
3129
+ You must include both public and private keys.
3130
+ must_accept_keys: |-
3131
+ You must accept keys when running highstate with master!
3132
+ args_array: |-
3133
+ You must set `args_array` value as an array.
3134
+ python_version: |-
3135
+ You must set `python_version` as an integer or string that represents an integer.
3136
+ version_type_missing: |-
3137
+ You must set the option `install_type` when specifying a `version`.
3138
+ salt_invalid_shasum_error: |-
3139
+ The bootstrap-salt script downloaded from '%{source}' couldn't be verified. Expected SHA256 '%{expected_sha}', but computed '%{computed_sha}'
3140
+
3141
+ pushes:
3142
+ file:
3143
+ no_destination: "File destination must be specified."
3144
+
3145
+ autocomplete:
3146
+ installed: |-
3147
+ Autocomplete installed at paths:
3148
+ - %{paths}
3149
+ not_installed: "Autocomplete not installed"