tnargav 1.2.2

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 (452) hide show
  1. data/.gitignore +31 -0
  2. data/.gitsetup.yml +5 -0
  3. data/.travis.yml +7 -0
  4. data/.yardopts +1 -0
  5. data/CHANGELOG.md +1067 -0
  6. data/Gemfile +3 -0
  7. data/LICENSE +21 -0
  8. data/README.md +89 -0
  9. data/Rakefile +18 -0
  10. data/bin/vagrant +106 -0
  11. data/config/default.rb +36 -0
  12. data/contrib/README.md +12 -0
  13. data/contrib/bash/completion.sh +3 -0
  14. data/contrib/emacs/vagrant.el +8 -0
  15. data/contrib/vim/vagrantfile.vim +9 -0
  16. data/keys/README.md +17 -0
  17. data/keys/vagrant +27 -0
  18. data/keys/vagrant.pub +1 -0
  19. data/lib/vagrant/action/builder.rb +174 -0
  20. data/lib/vagrant/action/builtin/box_add.rb +81 -0
  21. data/lib/vagrant/action/builtin/call.rb +67 -0
  22. data/lib/vagrant/action/builtin/config_validate.rb +30 -0
  23. data/lib/vagrant/action/builtin/confirm.rb +38 -0
  24. data/lib/vagrant/action/builtin/destroy_confirm.rb +21 -0
  25. data/lib/vagrant/action/builtin/env_set.rb +24 -0
  26. data/lib/vagrant/action/builtin/graceful_halt.rb +73 -0
  27. data/lib/vagrant/action/builtin/handle_box_url.rb +77 -0
  28. data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +134 -0
  29. data/lib/vagrant/action/builtin/lock.rb +57 -0
  30. data/lib/vagrant/action/builtin/nfs.rb +118 -0
  31. data/lib/vagrant/action/builtin/provision.rb +70 -0
  32. data/lib/vagrant/action/builtin/set_hostname.rb +27 -0
  33. data/lib/vagrant/action/builtin/ssh_exec.rb +42 -0
  34. data/lib/vagrant/action/builtin/ssh_run.rb +43 -0
  35. data/lib/vagrant/action/general/package.rb +103 -0
  36. data/lib/vagrant/action/hook.rb +107 -0
  37. data/lib/vagrant/action/runner.rb +69 -0
  38. data/lib/vagrant/action/warden.rb +103 -0
  39. data/lib/vagrant/action.rb +43 -0
  40. data/lib/vagrant/batch_action.rb +113 -0
  41. data/lib/vagrant/box.rb +97 -0
  42. data/lib/vagrant/box_collection.rb +375 -0
  43. data/lib/vagrant/cli.rb +82 -0
  44. data/lib/vagrant/config/loader.rb +222 -0
  45. data/lib/vagrant/config/v1/dummy_config.rb +13 -0
  46. data/lib/vagrant/config/v1/loader.rb +105 -0
  47. data/lib/vagrant/config/v1/root.rb +60 -0
  48. data/lib/vagrant/config/v1.rb +9 -0
  49. data/lib/vagrant/config/v2/dummy_config.rb +13 -0
  50. data/lib/vagrant/config/v2/loader.rb +141 -0
  51. data/lib/vagrant/config/v2/root.rb +105 -0
  52. data/lib/vagrant/config/v2/util.rb +21 -0
  53. data/lib/vagrant/config/v2.rb +9 -0
  54. data/lib/vagrant/config/version_base.rb +80 -0
  55. data/lib/vagrant/config.rb +61 -0
  56. data/lib/vagrant/environment.rb +843 -0
  57. data/lib/vagrant/errors.rb +570 -0
  58. data/lib/vagrant/guest.rb +163 -0
  59. data/lib/vagrant/hosts.rb +28 -0
  60. data/lib/vagrant/machine.rb +325 -0
  61. data/lib/vagrant/machine_state.rb +45 -0
  62. data/lib/vagrant/plugin/v1/command.rb +169 -0
  63. data/lib/vagrant/plugin/v1/communicator.rb +98 -0
  64. data/lib/vagrant/plugin/v1/config.rb +112 -0
  65. data/lib/vagrant/plugin/v1/errors.rb +15 -0
  66. data/lib/vagrant/plugin/v1/guest.rb +92 -0
  67. data/lib/vagrant/plugin/v1/host.rb +66 -0
  68. data/lib/vagrant/plugin/v1/manager.rb +131 -0
  69. data/lib/vagrant/plugin/v1/plugin.rb +229 -0
  70. data/lib/vagrant/plugin/v1/provider.rb +68 -0
  71. data/lib/vagrant/plugin/v1/provisioner.rb +50 -0
  72. data/lib/vagrant/plugin/v1.rb +19 -0
  73. data/lib/vagrant/plugin/v2/command.rb +234 -0
  74. data/lib/vagrant/plugin/v2/communicator.rb +98 -0
  75. data/lib/vagrant/plugin/v2/components.rb +47 -0
  76. data/lib/vagrant/plugin/v2/config.rb +136 -0
  77. data/lib/vagrant/plugin/v2/errors.rb +15 -0
  78. data/lib/vagrant/plugin/v2/guest.rb +78 -0
  79. data/lib/vagrant/plugin/v2/host.rb +66 -0
  80. data/lib/vagrant/plugin/v2/manager.rb +173 -0
  81. data/lib/vagrant/plugin/v2/plugin.rb +226 -0
  82. data/lib/vagrant/plugin/v2/provider.rb +69 -0
  83. data/lib/vagrant/plugin/v2/provisioner.rb +47 -0
  84. data/lib/vagrant/plugin/v2.rb +22 -0
  85. data/lib/vagrant/plugin.rb +6 -0
  86. data/lib/vagrant/registry.rb +78 -0
  87. data/lib/vagrant/ui.rb +215 -0
  88. data/lib/vagrant/util/ansi_escape_code_remover.rb +34 -0
  89. data/lib/vagrant/util/busy.rb +59 -0
  90. data/lib/vagrant/util/counter.rb +24 -0
  91. data/lib/vagrant/util/downloader.rb +146 -0
  92. data/lib/vagrant/util/file_checksum.rb +38 -0
  93. data/lib/vagrant/util/file_mode.rb +12 -0
  94. data/lib/vagrant/util/hash_with_indifferent_access.rb +63 -0
  95. data/lib/vagrant/util/is_port_open.rb +38 -0
  96. data/lib/vagrant/util/line_ending_helpers.rb +14 -0
  97. data/lib/vagrant/util/network_ip.rb +28 -0
  98. data/lib/vagrant/util/platform.rb +58 -0
  99. data/lib/vagrant/util/retryable.rb +31 -0
  100. data/lib/vagrant/util/safe_chdir.rb +33 -0
  101. data/lib/vagrant/util/safe_exec.rb +36 -0
  102. data/lib/vagrant/util/safe_puts.rb +31 -0
  103. data/lib/vagrant/util/scoped_hash_override.rb +45 -0
  104. data/lib/vagrant/util/ssh.rb +150 -0
  105. data/lib/vagrant/util/stacked_proc_runner.rb +35 -0
  106. data/lib/vagrant/util/string_block_editor.rb +77 -0
  107. data/lib/vagrant/util/subprocess.rb +273 -0
  108. data/lib/vagrant/util/template_renderer.rb +83 -0
  109. data/lib/vagrant/util/which.rb +43 -0
  110. data/lib/vagrant/util.rb +12 -0
  111. data/lib/vagrant/version.rb +6 -0
  112. data/lib/vagrant.rb +258 -0
  113. data/plugins/README.md +5 -0
  114. data/plugins/commands/box/command/add.rb +51 -0
  115. data/plugins/commands/box/command/list.rb +41 -0
  116. data/plugins/commands/box/command/remove.rb +37 -0
  117. data/plugins/commands/box/command/repackage.rb +43 -0
  118. data/plugins/commands/box/command/root.rb +75 -0
  119. data/plugins/commands/box/plugin.rb +15 -0
  120. data/plugins/commands/destroy/command.rb +31 -0
  121. data/plugins/commands/destroy/plugin.rb +18 -0
  122. data/plugins/commands/halt/command.rb +33 -0
  123. data/plugins/commands/halt/plugin.rb +18 -0
  124. data/plugins/commands/init/command.rb +40 -0
  125. data/plugins/commands/init/plugin.rb +18 -0
  126. data/plugins/commands/package/command.rb +83 -0
  127. data/plugins/commands/package/plugin.rb +18 -0
  128. data/plugins/commands/plugin/action/bundler_check.rb +25 -0
  129. data/plugins/commands/plugin/action/install_gem.rb +81 -0
  130. data/plugins/commands/plugin/action/license_plugin.rb +54 -0
  131. data/plugins/commands/plugin/action/list_plugins.rb +54 -0
  132. data/plugins/commands/plugin/action/prune_gems.rb +149 -0
  133. data/plugins/commands/plugin/action/uninstall_plugin.rb +23 -0
  134. data/plugins/commands/plugin/action.rb +52 -0
  135. data/plugins/commands/plugin/command/base.rb +22 -0
  136. data/plugins/commands/plugin/command/install.rb +58 -0
  137. data/plugins/commands/plugin/command/license.rb +31 -0
  138. data/plugins/commands/plugin/command/list.rb +28 -0
  139. data/plugins/commands/plugin/command/root.rb +75 -0
  140. data/plugins/commands/plugin/command/uninstall.rb +28 -0
  141. data/plugins/commands/plugin/gem_helper.rb +74 -0
  142. data/plugins/commands/plugin/plugin.rb +22 -0
  143. data/plugins/commands/plugin/state_file.rb +57 -0
  144. data/plugins/commands/provision/command.rb +34 -0
  145. data/plugins/commands/provision/plugin.rb +18 -0
  146. data/plugins/commands/reload/command.rb +37 -0
  147. data/plugins/commands/reload/plugin.rb +18 -0
  148. data/plugins/commands/resume/command.rb +25 -0
  149. data/plugins/commands/resume/plugin.rb +17 -0
  150. data/plugins/commands/ssh/command.rb +63 -0
  151. data/plugins/commands/ssh/plugin.rb +17 -0
  152. data/plugins/commands/ssh_config/command.rb +49 -0
  153. data/plugins/commands/ssh_config/plugin.rb +18 -0
  154. data/plugins/commands/status/command.rb +39 -0
  155. data/plugins/commands/status/plugin.rb +18 -0
  156. data/plugins/commands/suspend/command.rb +25 -0
  157. data/plugins/commands/suspend/plugin.rb +18 -0
  158. data/plugins/commands/up/command.rb +57 -0
  159. data/plugins/commands/up/plugin.rb +17 -0
  160. data/plugins/commands/up/start_mixins.rb +26 -0
  161. data/plugins/communicators/ssh/communicator.rb +342 -0
  162. data/plugins/communicators/ssh/plugin.rb +19 -0
  163. data/plugins/guests/arch/cap/change_host_name.rb +18 -0
  164. data/plugins/guests/arch/cap/configure_networks.rb +23 -0
  165. data/plugins/guests/arch/guest.rb +11 -0
  166. data/plugins/guests/arch/plugin.rb +25 -0
  167. data/plugins/guests/debian/cap/change_host_name.rb +18 -0
  168. data/plugins/guests/debian/cap/configure_networks.rb +61 -0
  169. data/plugins/guests/debian/guest.rb +9 -0
  170. data/plugins/guests/debian/plugin.rb +25 -0
  171. data/plugins/guests/fedora/cap/configure_networks.rb +59 -0
  172. data/plugins/guests/fedora/cap/network_scripts_dir.rb +15 -0
  173. data/plugins/guests/fedora/guest.rb +11 -0
  174. data/plugins/guests/fedora/plugin.rb +25 -0
  175. data/plugins/guests/freebsd/cap/change_host_name.rb +14 -0
  176. data/plugins/guests/freebsd/cap/configure_networks.rb +39 -0
  177. data/plugins/guests/freebsd/cap/halt.rb +16 -0
  178. data/plugins/guests/freebsd/cap/mount_nfs_folder.rb +14 -0
  179. data/plugins/guests/freebsd/guest.rb +14 -0
  180. data/plugins/guests/freebsd/plugin.rb +35 -0
  181. data/plugins/guests/gentoo/cap/change_host_name.rb +17 -0
  182. data/plugins/guests/gentoo/cap/configure_networks.rb +43 -0
  183. data/plugins/guests/gentoo/guest.rb +9 -0
  184. data/plugins/guests/gentoo/plugin.rb +25 -0
  185. data/plugins/guests/linux/cap/halt.rb +16 -0
  186. data/plugins/guests/linux/cap/mount_nfs.rb +30 -0
  187. data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +40 -0
  188. data/plugins/guests/linux/cap/read_ip_address.rb +17 -0
  189. data/plugins/guests/linux/cap/shell_expand_guest_path.rb +26 -0
  190. data/plugins/guests/linux/guest.rb +11 -0
  191. data/plugins/guests/linux/plugin.rb +40 -0
  192. data/plugins/guests/openbsd/cap/halt.rb +16 -0
  193. data/plugins/guests/openbsd/guest.rb +11 -0
  194. data/plugins/guests/openbsd/plugin.rb +20 -0
  195. data/plugins/guests/pld/cap/network_scripts_dir.rb +11 -0
  196. data/plugins/guests/pld/guest.rb +11 -0
  197. data/plugins/guests/pld/plugin.rb +20 -0
  198. data/plugins/guests/redhat/cap/change_host_name.rb +18 -0
  199. data/plugins/guests/redhat/cap/configure_networks.rb +60 -0
  200. data/plugins/guests/redhat/cap/network_scripts_dir.rb +11 -0
  201. data/plugins/guests/redhat/guest.rb +11 -0
  202. data/plugins/guests/redhat/plugin.rb +30 -0
  203. data/plugins/guests/solaris/cap/change_host_name.rb +17 -0
  204. data/plugins/guests/solaris/cap/configure_networks.rb +25 -0
  205. data/plugins/guests/solaris/cap/halt.rb +21 -0
  206. data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +28 -0
  207. data/plugins/guests/solaris/config.rb +18 -0
  208. data/plugins/guests/solaris/guest.rb +14 -0
  209. data/plugins/guests/solaris/plugin.rb +40 -0
  210. data/plugins/guests/suse/cap/change_host_name.rb +18 -0
  211. data/plugins/guests/suse/cap/network_scripts_dir.rb +11 -0
  212. data/plugins/guests/suse/guest.rb +11 -0
  213. data/plugins/guests/suse/plugin.rb +25 -0
  214. data/plugins/guests/ubuntu/cap/change_host_name.rb +23 -0
  215. data/plugins/guests/ubuntu/guest.rb +32 -0
  216. data/plugins/guests/ubuntu/plugin.rb +20 -0
  217. data/plugins/hosts/arch/host.rb +68 -0
  218. data/plugins/hosts/arch/plugin.rb +15 -0
  219. data/plugins/hosts/bsd/host.rb +102 -0
  220. data/plugins/hosts/bsd/plugin.rb +15 -0
  221. data/plugins/hosts/fedora/host.rb +51 -0
  222. data/plugins/hosts/fedora/plugin.rb +15 -0
  223. data/plugins/hosts/freebsd/host.rb +43 -0
  224. data/plugins/hosts/freebsd/plugin.rb +15 -0
  225. data/plugins/hosts/gentoo/host.rb +24 -0
  226. data/plugins/hosts/gentoo/plugin.rb +15 -0
  227. data/plugins/hosts/linux/host.rb +95 -0
  228. data/plugins/hosts/linux/plugin.rb +15 -0
  229. data/plugins/hosts/opensuse/host.rb +34 -0
  230. data/plugins/hosts/opensuse/plugin.rb +15 -0
  231. data/plugins/hosts/windows/host.rb +17 -0
  232. data/plugins/hosts/windows/plugin.rb +15 -0
  233. data/plugins/kernel_v1/config/nfs.rb +20 -0
  234. data/plugins/kernel_v1/config/package.rb +17 -0
  235. data/plugins/kernel_v1/config/ssh.rb +46 -0
  236. data/plugins/kernel_v1/config/vagrant.rb +31 -0
  237. data/plugins/kernel_v1/config/vm.rb +184 -0
  238. data/plugins/kernel_v1/plugin.rb +44 -0
  239. data/plugins/kernel_v2/config/nfs.rb +14 -0
  240. data/plugins/kernel_v2/config/package.rb +13 -0
  241. data/plugins/kernel_v2/config/ssh.rb +76 -0
  242. data/plugins/kernel_v2/config/ssh_connect.rb +40 -0
  243. data/plugins/kernel_v2/config/vagrant.rb +13 -0
  244. data/plugins/kernel_v2/config/vm.rb +416 -0
  245. data/plugins/kernel_v2/config/vm_provisioner.rb +55 -0
  246. data/plugins/kernel_v2/config/vm_subvm.rb +30 -0
  247. data/plugins/kernel_v2/plugin.rb +44 -0
  248. data/plugins/providers/virtualbox/action/boot.rb +49 -0
  249. data/plugins/providers/virtualbox/action/check_accessible.rb +23 -0
  250. data/plugins/providers/virtualbox/action/check_created.rb +21 -0
  251. data/plugins/providers/virtualbox/action/check_guest_additions.rb +45 -0
  252. data/plugins/providers/virtualbox/action/check_running.rb +21 -0
  253. data/plugins/providers/virtualbox/action/check_virtualbox.rb +22 -0
  254. data/plugins/providers/virtualbox/action/clean_machine_folder.rb +43 -0
  255. data/plugins/providers/virtualbox/action/clear_forwarded_ports.rb +18 -0
  256. data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +31 -0
  257. data/plugins/providers/virtualbox/action/clear_shared_folders.rb +17 -0
  258. data/plugins/providers/virtualbox/action/created.rb +20 -0
  259. data/plugins/providers/virtualbox/action/customize.rb +36 -0
  260. data/plugins/providers/virtualbox/action/destroy.rb +19 -0
  261. data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +16 -0
  262. data/plugins/providers/virtualbox/action/discard_state.rb +20 -0
  263. data/plugins/providers/virtualbox/action/export.rb +57 -0
  264. data/plugins/providers/virtualbox/action/forced_halt.rb +25 -0
  265. data/plugins/providers/virtualbox/action/forward_ports.rb +87 -0
  266. data/plugins/providers/virtualbox/action/import.rb +51 -0
  267. data/plugins/providers/virtualbox/action/is_paused.rb +20 -0
  268. data/plugins/providers/virtualbox/action/is_running.rb +20 -0
  269. data/plugins/providers/virtualbox/action/is_saved.rb +20 -0
  270. data/plugins/providers/virtualbox/action/match_mac_address.rb +21 -0
  271. data/plugins/providers/virtualbox/action/message_already_running.rb +16 -0
  272. data/plugins/providers/virtualbox/action/message_not_created.rb +16 -0
  273. data/plugins/providers/virtualbox/action/message_not_running.rb +16 -0
  274. data/plugins/providers/virtualbox/action/message_will_not_destroy.rb +17 -0
  275. data/plugins/providers/virtualbox/action/network.rb +410 -0
  276. data/plugins/providers/virtualbox/action/package.rb +20 -0
  277. data/plugins/providers/virtualbox/action/package_vagrantfile.rb +33 -0
  278. data/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb +35 -0
  279. data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +64 -0
  280. data/plugins/providers/virtualbox/action/prune_nfs_exports.rb +20 -0
  281. data/plugins/providers/virtualbox/action/resume.rb +25 -0
  282. data/plugins/providers/virtualbox/action/sane_defaults.rb +91 -0
  283. data/plugins/providers/virtualbox/action/set_name.rb +40 -0
  284. data/plugins/providers/virtualbox/action/setup_package_files.rb +51 -0
  285. data/plugins/providers/virtualbox/action/share_folders.rb +128 -0
  286. data/plugins/providers/virtualbox/action/suspend.rb +20 -0
  287. data/plugins/providers/virtualbox/action.rb +311 -0
  288. data/plugins/providers/virtualbox/config.rb +86 -0
  289. data/plugins/providers/virtualbox/driver/base.rb +360 -0
  290. data/plugins/providers/virtualbox/driver/meta.rb +142 -0
  291. data/plugins/providers/virtualbox/driver/version_4_0.rb +485 -0
  292. data/plugins/providers/virtualbox/driver/version_4_1.rb +485 -0
  293. data/plugins/providers/virtualbox/driver/version_4_2.rb +482 -0
  294. data/plugins/providers/virtualbox/model/forwarded_port.rb +58 -0
  295. data/plugins/providers/virtualbox/plugin.rb +42 -0
  296. data/plugins/providers/virtualbox/provider.rb +92 -0
  297. data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +31 -0
  298. data/plugins/provisioners/ansible/config.rb +72 -0
  299. data/plugins/provisioners/ansible/plugin.rb +23 -0
  300. data/plugins/provisioners/ansible/provisioner.rb +45 -0
  301. data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +19 -0
  302. data/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb +14 -0
  303. data/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb +34 -0
  304. data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +24 -0
  305. data/plugins/provisioners/cfengine/config.rb +120 -0
  306. data/plugins/provisioners/cfengine/plugin.rb +42 -0
  307. data/plugins/provisioners/cfengine/provisioner.rb +136 -0
  308. data/plugins/provisioners/chef/config/base.rb +85 -0
  309. data/plugins/provisioners/chef/config/chef_client.rb +57 -0
  310. data/plugins/provisioners/chef/config/chef_solo.rb +87 -0
  311. data/plugins/provisioners/chef/plugin.rb +33 -0
  312. data/plugins/provisioners/chef/provisioner/base.rb +93 -0
  313. data/plugins/provisioners/chef/provisioner/chef_client.rb +107 -0
  314. data/plugins/provisioners/chef/provisioner/chef_solo.rb +192 -0
  315. data/plugins/provisioners/puppet/config/puppet.rb +70 -0
  316. data/plugins/provisioners/puppet/config/puppet_server.rb +16 -0
  317. data/plugins/provisioners/puppet/plugin.rb +33 -0
  318. data/plugins/provisioners/puppet/provisioner/puppet.rb +117 -0
  319. data/plugins/provisioners/puppet/provisioner/puppet_server.rb +67 -0
  320. data/plugins/provisioners/shell/config.rb +56 -0
  321. data/plugins/provisioners/shell/plugin.rb +23 -0
  322. data/plugins/provisioners/shell/provisioner.rb +86 -0
  323. data/tasks/acceptance.rake +113 -0
  324. data/tasks/bundler.rake +3 -0
  325. data/tasks/test.rake +20 -0
  326. data/templates/commands/init/Vagrantfile.erb +111 -0
  327. data/templates/commands/ssh_config/config.erb +16 -0
  328. data/templates/config/messages.erb +14 -0
  329. data/templates/config/validation_failed.erb +7 -0
  330. data/templates/guests/arch/network_dhcp.erb +4 -0
  331. data/templates/guests/arch/network_static.erb +6 -0
  332. data/templates/guests/debian/network_dhcp.erb +11 -0
  333. data/templates/guests/debian/network_static.erb +7 -0
  334. data/templates/guests/fedora/network_dhcp.erb +6 -0
  335. data/templates/guests/fedora/network_static.erb +13 -0
  336. data/templates/guests/freebsd/network_dhcp.erb +3 -0
  337. data/templates/guests/freebsd/network_static.erb +3 -0
  338. data/templates/guests/gentoo/network_dhcp.erb +4 -0
  339. data/templates/guests/gentoo/network_static.erb +4 -0
  340. data/templates/guests/redhat/network_dhcp.erb +6 -0
  341. data/templates/guests/redhat/network_static.erb +8 -0
  342. data/templates/locales/en.yml +1126 -0
  343. data/templates/nfs/exports.erb +5 -0
  344. data/templates/nfs/exports_freebsd.erb +5 -0
  345. data/templates/nfs/exports_linux.erb +5 -0
  346. data/templates/package_Vagrantfile.erb +11 -0
  347. data/templates/provisioners/chef_client/client.erb +32 -0
  348. data/templates/provisioners/chef_solo/solo.erb +25 -0
  349. data/templates/rgloader.rb +9 -0
  350. data/test/acceptance/base.rb +48 -0
  351. data/test/acceptance/box_test.rb +99 -0
  352. data/test/acceptance/destroy_test.rb +37 -0
  353. data/test/acceptance/halt_test.rb +72 -0
  354. data/test/acceptance/init_test.rb +33 -0
  355. data/test/acceptance/networking/host_only_test.rb +37 -0
  356. data/test/acceptance/networking/port_forward_test.rb +125 -0
  357. data/test/acceptance/package_test.rb +46 -0
  358. data/test/acceptance/provisioning/basic_test.rb +61 -0
  359. data/test/acceptance/provisioning/chef_solo_test.rb +37 -0
  360. data/test/acceptance/provisioning/shell_test.rb +53 -0
  361. data/test/acceptance/resume_test.rb +17 -0
  362. data/test/acceptance/shared_folders_test.rb +84 -0
  363. data/test/acceptance/skeletons/chef_solo_basic/README.md +3 -0
  364. data/test/acceptance/skeletons/chef_solo_basic/cookbooks/basic/recipes/default.rb +5 -0
  365. data/test/acceptance/skeletons/chef_solo_json/README.md +3 -0
  366. data/test/acceptance/skeletons/chef_solo_json/cookbooks/basic/recipes/default.rb +6 -0
  367. data/test/acceptance/skeletons/provisioner_multi/README.md +3 -0
  368. data/test/acceptance/skeletons/provisioner_multi/cookbooks/basic/recipes/default.rb +5 -0
  369. data/test/acceptance/ssh_test.rb +46 -0
  370. data/test/acceptance/support/config.rb +42 -0
  371. data/test/acceptance/support/isolated_environment.rb +118 -0
  372. data/test/acceptance/support/matchers/have_color.rb +9 -0
  373. data/test/acceptance/support/matchers/match_output.rb +14 -0
  374. data/test/acceptance/support/matchers/succeed.rb +14 -0
  375. data/test/acceptance/support/network_tests.rb +29 -0
  376. data/test/acceptance/support/output.rb +95 -0
  377. data/test/acceptance/support/shared/base_context.rb +72 -0
  378. data/test/acceptance/support/shared/command_examples.rb +33 -0
  379. data/test/acceptance/support/virtualbox.rb +36 -0
  380. data/test/acceptance/suspend_test.rb +56 -0
  381. data/test/acceptance/up_basic_test.rb +33 -0
  382. data/test/acceptance/up_with_box_url.rb +40 -0
  383. data/test/acceptance/vagrant_test.rb +47 -0
  384. data/test/acceptance/version_test.rb +15 -0
  385. data/test/config/acceptance_boxes.yml +7 -0
  386. data/test/support/isolated_environment.rb +46 -0
  387. data/test/support/tempdir.rb +43 -0
  388. data/test/unit/base.rb +27 -0
  389. data/test/unit/support/dummy_provider.rb +16 -0
  390. data/test/unit/support/isolated_environment.rb +179 -0
  391. data/test/unit/support/shared/base_context.rb +104 -0
  392. data/test/unit/vagrant/action/builder_test.rb +242 -0
  393. data/test/unit/vagrant/action/builtin/call_test.rb +145 -0
  394. data/test/unit/vagrant/action/builtin/confirm_test.rb +36 -0
  395. data/test/unit/vagrant/action/builtin/env_set_test.rb +20 -0
  396. data/test/unit/vagrant/action/builtin/graceful_halt_test.rb +61 -0
  397. data/test/unit/vagrant/action/builtin/lock_test.rb +98 -0
  398. data/test/unit/vagrant/action/builtin/ssh_exec_test.rb +57 -0
  399. data/test/unit/vagrant/action/hook_test.rb +120 -0
  400. data/test/unit/vagrant/action/runner_test.rb +71 -0
  401. data/test/unit/vagrant/action/warden_test.rb +92 -0
  402. data/test/unit/vagrant/batch_action_test.rb +36 -0
  403. data/test/unit/vagrant/box_collection_test.rb +237 -0
  404. data/test/unit/vagrant/box_test.rb +122 -0
  405. data/test/unit/vagrant/cli_test.rb +27 -0
  406. data/test/unit/vagrant/config/loader_test.rb +184 -0
  407. data/test/unit/vagrant/config/v1/dummy_config_test.rb +24 -0
  408. data/test/unit/vagrant/config/v1/loader_test.rb +145 -0
  409. data/test/unit/vagrant/config/v1/root_test.rb +40 -0
  410. data/test/unit/vagrant/config/v2/dummy_config_test.rb +24 -0
  411. data/test/unit/vagrant/config/v2/loader_test.rb +151 -0
  412. data/test/unit/vagrant/config/v2/root_test.rb +97 -0
  413. data/test/unit/vagrant/config/v2/util_test.rb +21 -0
  414. data/test/unit/vagrant/config_test.rb +66 -0
  415. data/test/unit/vagrant/environment_test.rb +721 -0
  416. data/test/unit/vagrant/guest_test.rb +166 -0
  417. data/test/unit/vagrant/hosts_test.rb +37 -0
  418. data/test/unit/vagrant/machine_state_test.rb +26 -0
  419. data/test/unit/vagrant/machine_test.rb +384 -0
  420. data/test/unit/vagrant/plugin/v1/command_test.rb +143 -0
  421. data/test/unit/vagrant/plugin/v1/communicator_test.rb +9 -0
  422. data/test/unit/vagrant/plugin/v1/config_test.rb +50 -0
  423. data/test/unit/vagrant/plugin/v1/host_test.rb +5 -0
  424. data/test/unit/vagrant/plugin/v1/manager_test.rb +114 -0
  425. data/test/unit/vagrant/plugin/v1/plugin_test.rb +267 -0
  426. data/test/unit/vagrant/plugin/v1/provider_test.rb +18 -0
  427. data/test/unit/vagrant/plugin/v2/command_test.rb +238 -0
  428. data/test/unit/vagrant/plugin/v2/communicator_test.rb +9 -0
  429. data/test/unit/vagrant/plugin/v2/components_test.rb +17 -0
  430. data/test/unit/vagrant/plugin/v2/config_test.rb +60 -0
  431. data/test/unit/vagrant/plugin/v2/host_test.rb +5 -0
  432. data/test/unit/vagrant/plugin/v2/manager_test.rb +174 -0
  433. data/test/unit/vagrant/plugin/v2/plugin_test.rb +305 -0
  434. data/test/unit/vagrant/plugin/v2/provider_test.rb +18 -0
  435. data/test/unit/vagrant/registry_test.rb +128 -0
  436. data/test/unit/vagrant/util/ansi_escape_code_remover_test.rb +16 -0
  437. data/test/unit/vagrant/util/downloader_test.rb +57 -0
  438. data/test/unit/vagrant/util/file_checksum_test.rb +23 -0
  439. data/test/unit/vagrant/util/hash_with_indifferent_access_test.rb +38 -0
  440. data/test/unit/vagrant/util/is_port_open_test.rb +53 -0
  441. data/test/unit/vagrant/util/line_endings_helper_test.rb +16 -0
  442. data/test/unit/vagrant/util/network_ip_test.rb +17 -0
  443. data/test/unit/vagrant/util/retryable_test.rb +106 -0
  444. data/test/unit/vagrant/util/safe_chdir_test.rb +43 -0
  445. data/test/unit/vagrant/util/scoped_hash_override_test.rb +48 -0
  446. data/test/unit/vagrant/util/ssh_test.rb +30 -0
  447. data/test/unit/vagrant/util/string_block_editor_test.rb +106 -0
  448. data/test/unit/vagrant/util/which_test.rb +43 -0
  449. data/test/unit/vagrant_test.rb +56 -0
  450. data/tnargav.gemspec +69 -0
  451. data/vagrant.gemspec +69 -0
  452. metadata +730 -0
@@ -0,0 +1,1126 @@
1
+ en:
2
+ vagrant:
3
+ cfengine_bootstrapping: |-
4
+ Bootstrapping CFEngine with policy server: %{policy_server}...
5
+ cfengine_bootstrapping_policy_hub: |-
6
+ Performing additional bootstrap for policy hubs...
7
+ cfengine_cant_autodetect_ip: |-
8
+ Vagrant was unable to automatically detect the IP address of the
9
+ running machine to use as the policy server address. Please specify
10
+ the policy server address manually, or verify that the networks are
11
+ configured properly internally.
12
+ cfengine_cant_detect: |-
13
+ Vagrant doesn't support detecting whether CFEngine is installed
14
+ for the guest OS running in the machine. Vagrant will assume it is
15
+ installed and attempt to continue.
16
+ cfengine_detected_ip: |-
17
+ Detected policy server IP address: %{address}...
18
+ cfengine_installing: |-
19
+ Installing CFEngine onto machine...
20
+ cfengine_installing_files_path: |-
21
+ Copying the 'files_path' files...
22
+ cfengine_no_bootstrap: |-
23
+ CFEngine doesn't require bootstrap. Not bootstrapping.
24
+ cfengine_single_run: |-
25
+ CFEngine running in "single run" mode. Will execute one file.
26
+ cfengine_single_run_execute: |-
27
+ Executing run file for CFEngine...
28
+ chef_run_list_empty: |-
29
+ Warning: Chef solo run list is empty. This may not be what you want.
30
+
31
+ cfengine_config:
32
+ classes_array: |-
33
+ The 'classes' configuration must be an array.
34
+ files_path_not_directory: |-
35
+ The 'files_path' must point to a valid directory.
36
+ invalid_mode: |-
37
+ The mode must be 'bootstrap' or 'single_run'
38
+ policy_server_address: |-
39
+ The policy server address must be set for bootstrapping.
40
+ run_file_not_found: |-
41
+ The 'run_file' specified could not be found.
42
+
43
+ general:
44
+ batch_unexpected_error: |-
45
+ An unexpected error ocurred when executing the action on the
46
+ '%{machine}' machine. Please report this as a bug:
47
+
48
+ %{message}
49
+ batch_vagrant_error: |-
50
+ An error occurred while executing the action on the '%{machine}'
51
+ machine. Please handle this error then try again:
52
+
53
+ %{message}
54
+ config_upgrade_messages: |-
55
+ There were warnings and/or errors while loading your Vagrantfile.
56
+ Your Vagrantfile was written for an earlier version of Vagrant,
57
+ and while Vagrant does the best it can to remain backwards
58
+ compatible, there are some cases where things have changed
59
+ significantly enough to warrant a message. These messages are
60
+ shown below.
61
+
62
+ %{output}
63
+ moving_home_dir: "Moving old Vagrant home directory to new location: %{directory}"
64
+ home_dir_migration_failed: |-
65
+ Both an old and new Vagrant home directory exist. Only the new one will
66
+ be used. Please merge the old directory into the new directory if you'd
67
+ like to use the old data as well.
68
+
69
+ Old: %{old}
70
+ New: %{new}
71
+ in_bundler: |-
72
+ You appear to be running Vagrant in a Bundler environment. Because
73
+ Vagrant should be run within installers (outside of Bundler), Vagrant
74
+ will assume that you're developing plugins and will change its behavior
75
+ in certain ways to better assist plugin development.
76
+ not_in_installer: |-
77
+ You appear to be running Vagrant outside of the official installers.
78
+ Note that the installers are what ensure that Vagrant has all required
79
+ dependencies, and Vagrant assumes that these dependencies exist. By
80
+ running outside of the installer environment, Vagrant may not function
81
+ properly. To remove this warning, install Vagrant using one of the
82
+ official packages from vagrantup.com.
83
+ upgraded_v1_dotfile: |-
84
+ A Vagrant 1.0.x state file was found for this environment. Vagrant has
85
+ gone ahead and auto-upgraded this to the latest format. Everything
86
+ should continue working as normal. Beware, however, that older versions
87
+ of Vagrant may no longer be used with this environment.
88
+
89
+ However, in case anything went wrong, the old dotfile was backed up
90
+ to the location below. If everything is okay, it is safe to remove
91
+ this backup.
92
+
93
+ Backup: %{backup_path}
94
+
95
+ #-------------------------------------------------------------------------------
96
+ # Translations for exception classes
97
+ #-------------------------------------------------------------------------------
98
+ errors:
99
+ active_machine_with_different_provider: |-
100
+ An active machine was found with a different provider. Vagrant
101
+ currently allows each machine to be brought up with only a single
102
+ provider at a time. A future version will remove this limitation.
103
+ Until then, please destroy the existing machine to up with a new
104
+ provider.
105
+
106
+ Machine name: %{name}
107
+ Active provider: %{active_provider}
108
+ Requested provider: %{requested_provider}
109
+ ansible_playbook_app_not_found: |-
110
+ The "ansible-playbook" program could not be found! Please verify
111
+ that "ansible-playbook" is available on the PATH of your host
112
+ system, and try again.
113
+
114
+ If you haven't installed Ansible yet, please install Ansible
115
+ on your system. Vagrant can't do this for you in a safe, automated
116
+ way. Please see ansible.cc for more info.
117
+ base_vm_not_found: The base VM with the name '%{name}' was not found.
118
+ batch_multi_error: |-
119
+ An error occurred while executing multiple actions in parallel.
120
+ Any errors that occurred are shown below.
121
+
122
+ %{message}
123
+ box_config_changing_box: |-
124
+ While loading the Vagrantfile, the provider override specified
125
+ a new box. This box, in turn, specified a different box. This isn't
126
+ allowed, as it could lead to infinite recursion of Vagrant configuration
127
+ loading. Please fix this.
128
+ box_metadata_file_not_found: |-
129
+ The "metadata.json" file for the box '%{name}' was not found.
130
+ Boxes require this file in order for Vagrant to determine the
131
+ provider it was made for. If you made the box, please add a
132
+ "metadata.json" file to it. If someone else made the box, please
133
+ notify the box creator that the box is corrupt. Documentation for
134
+ box file format can be found at the URL below:
135
+
136
+ http://docs.vagrantup.com/v2/boxes/format.html
137
+ box_not_found: Box '%{name}' could not be found.
138
+ box_provider_doesnt_match: |-
139
+ The box you attempted to add doesn't match the provider you specified.
140
+
141
+ Provider expected: %{expected}
142
+ Provider of box: %{actual}
143
+ box_upgrade_required: |-
144
+ The box '%{name}' is still stored on disk in the Vagrant 1.0.x
145
+ format. This box must be upgraded in order to work properly with
146
+ this version of Vagrant.
147
+ cfengine_bootstrap_failed: |-
148
+ Failed to bootstrap CFEngine. Please see the output above to
149
+ see what went wrong and address the issue.
150
+ cfengine_install_failed: |-
151
+ After installing CFEngine, Vagrant still can't detect a proper
152
+ CFEngine installation. Please verify that CFEngine was properly
153
+ installed, as the installation may have failed.
154
+ cfengine_not_installed: |-
155
+ CFEngine appears to not be installed on the guest machine. Vagrant
156
+ can attempt to install CFEngine for you if you set the "install"
157
+ setting to "true", but this setting was not set. Please install
158
+ CFEngine on the guest machine or enable the "install" setting for
159
+ Vagrant to attempt to install it for you.
160
+ cli_invalid_options: |-
161
+ An invalid option was specified. The help for this command
162
+ is available below.
163
+
164
+ %{help}
165
+ cli_invalid_usage: |-
166
+ This command was not invoked properly. The help for this command is
167
+ available below.
168
+
169
+ %{help}
170
+ config_invalid: |-
171
+ There are errors in the configuration of this machine. Please fix
172
+ the following errors and try again:
173
+
174
+ %{errors}
175
+ config_upgrade_errors: |-
176
+ Because there were errors upgrading your Vagrantfiles, Vagrant
177
+ can no longer continue. Please fix the errors above and try again.
178
+ copy_private_key_failed: |-
179
+ Vagrant failed to copy the default insecure private key into your
180
+ home directory. This is usually caused by a permissions error.
181
+ Please make sure the permissions of the source is readable and
182
+ the destination is writable.
183
+
184
+ Source: %{source}
185
+ Destination: %{destination}
186
+ destroy_requires_force: |-
187
+ Destroy doesn't have a TTY to ask for confirmation. Please pass the
188
+ `--force` flag to force a destroy, otherwise attach a TTY so that
189
+ the destroy can be confirmed.
190
+ dotfile_is_directory: |-
191
+ The local file Vagrant uses to store data ".vagrant" already exists
192
+ and is a directory! If you are in your home directory, then please run
193
+ this command in another directory. If you aren't in a home directory,
194
+ then please rename ".vagrant" to something else, or configure Vagrant
195
+ to use another filename by modifying `config.vagrant.dotfile_name`.
196
+ dotfile_upgrade_json_error: |-
197
+ A Vagrant 1.0.x local state file was found. Vagrant is able to upgrade
198
+ this to the latest format automatically, however various checks are
199
+ put in place to verify data isn't incorrectly deleted. In this case,
200
+ the old state file was not valid JSON. Vagrant 1.0.x would store state
201
+ as valid JSON, meaning that this file was probably tampered with or
202
+ manually edited. Vagrant's auto-upgrade process cannot continue in this
203
+ case.
204
+
205
+ In most cases, this can be resolve by simply removing the state file.
206
+ Note however though that if Vagrant was previously managing virtual
207
+ machines, they may be left in an "orphan" state. That is, if they are
208
+ running or exist, they'll have to manually be removed.
209
+
210
+ If you're unsure what to do, ask the Vagrant mailing list or contact
211
+ support.
212
+
213
+ State file path: %{state_file}
214
+ downloader_error: |-
215
+ An error occurred while downloading the remote file. The error
216
+ message, if any, is reproduced below. Please fix this error and try
217
+ again.
218
+
219
+ %{message}
220
+ downloader_interrupted: |-
221
+ The download was interrupted by an external signal. It did not
222
+ complete.
223
+ environment_locked: |-
224
+ An instance of Vagrant is already running. Only one instance of Vagrant
225
+ may run at any given time to avoid problems with VirtualBox inconsistencies
226
+ occurring. Please wait for the other instance of Vagrant to end and then
227
+ try again.
228
+ forward_port_adapter_not_found: |-
229
+ The adapter to attach a forwarded port to was not found. Please
230
+ verify that the given adapter is setup on the machine as a NAT
231
+ interface.
232
+
233
+ Host port: %{host}
234
+ Guest port: %{guest}
235
+ Adapter: %{adapter}
236
+ gem_command_in_bundler: |-
237
+ You cannot run the `vagrant plugin` command while in a bundler environment.
238
+ This should generally never happen unless Vagrant is installed outside
239
+ of the official installers or another gem is wrongly attempting to
240
+ use Vagrant internals directly. Please properly install Vagrant to
241
+ fix this. If this error persists, please contact support.
242
+ guest_capability_invalid: |-
243
+ The registered guest capability '%{cap}' for the
244
+ detected guest OS '%{guest}' is invalid. The capability does
245
+ not implement the proper method. This is a bug with Vagrant or the
246
+ plugin that implements this capability. Please report a bug.
247
+ guest_capability_not_found: |-
248
+ Vagrant attempted to execute the capability '%{cap}'
249
+ on the detect guest OS '%{guest}', but the guest doesn't
250
+ support that capability. This capability is required for your
251
+ configuration of Vagrant. Please either reconfigure Vagrant to
252
+ avoid this capability or fix the issue by creating the capability.
253
+ guest_not_detected: |-
254
+ The guest operating system of the machine could not be detected!
255
+ Vagrant requires this knowledge to perform specific tasks such
256
+ as mounting shared folders and configuring networks. Please add
257
+ the ability to detect this guest operating system to Vagrant
258
+ by creating a plugin or reporting a bug.
259
+ home_dir_not_accessible: |-
260
+ The home directory you specified is not accessible. The home
261
+ directory that Vagrant uses must be both readable and writable.
262
+
263
+ You specified: %{home_path}
264
+ interrupted: |-
265
+ Vagrant exited after cleanup due to external interrupt.
266
+ local_data_dir_not_accessible: |-
267
+ The directory Vagrant will use to store local environment-specific
268
+ state is not accessible. The directory specified as the local data
269
+ directory must be both readable and writable for the user that is
270
+ running Vagrant.
271
+
272
+ Local data directory: %{local_data_path}
273
+ linux_mount_failed: |-
274
+ Failed to mount folders in Linux guest. This is usually beacuse
275
+ the "vboxsf" file system is not available. Please verify that
276
+ the guest additions are properly installed in the guest and
277
+ can work properly. The command attempted was:
278
+
279
+ %{command}
280
+ linux_nfs_mount_failed: |-
281
+ Mounting NFS shared folders failed. This is most often caused by the NFS
282
+ client software not being installed on the guest machine. Please verify
283
+ that the NFS client software is properly installed, and consult any resources
284
+ specific to the linux distro you're using for more information on how to
285
+ do this.
286
+ linux_shell_expand_failed: |-
287
+ Vagrant failed to determine the shell expansion of the guest path
288
+ for one of your shared folders. This is an extremely rare error case
289
+ and most likely indicates an unusual configuration of the guest system.
290
+ Please report a bug with your Vagrantfile.
291
+ machine_guest_not_ready: |-
292
+ Guest-specific operations were attempted on a machine that is not
293
+ ready for guest communication. This should not happen and a bug
294
+ should be reported.
295
+ machine_not_found: |-
296
+ The machine with the name '%{name}' was not found configured for
297
+ this Vagrant environment.
298
+ machine_state_invalid: |-
299
+ An internal error has occurred! The provider of the machine you're
300
+ trying to work with reported an invalid state. This is a bug with
301
+ the provider you're using, and not with Vagrant itself or with
302
+ any configuration you may have done. Please report this bug to
303
+ the proper location.
304
+ multi_vm_required: |-
305
+ A multi-vm environment is required for name specification to this command.
306
+ multi_vm_target_required: |-
307
+ This command requires a specific VM name to target in a multi-VM environment.
308
+ nfs_no_guest_ip: |-
309
+ No guest IP was given to the Vagrant core NFS helper. This is an
310
+ internal error that should be reported as a bug.
311
+ nfs_no_host_ip: |-
312
+ No host IP was given to the Vagrant core NFS helper. This is
313
+ an internal error that should be reported as a bug.
314
+ nfs_no_hostonly_network: |-
315
+ NFS requires a host-only network with a static IP to be created.
316
+ Please add a host-only network with a static IP to the machine
317
+ for NFS to work.
318
+ no_env: |-
319
+ A Vagrant environment is required to run this command. Run `vagrant init`
320
+ to set one up in this directory, or change to a directory with a
321
+ Vagrantfile and try again.
322
+ plugin_gem_error: |-
323
+ An error occurred within RubyGems, the underlying system used to
324
+ manage Vagrant plugins. The output of the errors are shown below:
325
+
326
+ %{output}
327
+ plugin_install_bad_entry_point: |-
328
+ Attempting to load the plugin '%{name}' failed, because
329
+ the entry point doesn't exist. The entry point attempted was
330
+ '%{entry_point}'. If this is not correct, please manually
331
+ specify an `--entry-point` when installing the plugin.
332
+ plugin_install_license_not_found: |-
333
+ The license file to install could not be found. Please verify
334
+ the path you gave is correct. The path to the license file given
335
+ was: '%{path}'
336
+ plugin_install_not_found: |-
337
+ The plugin '%{name}' could not be found in local or remote
338
+ repositories. Please check the name of the plugin and try again.
339
+ plugin_load_error: |-
340
+ The plugin "%{plugin}" could not be found. Please make sure that it is
341
+ properly installed via `vagrant plugin`. Note that plugins made for
342
+ Vagrant 1.0.x are not compatible with 1.1+ and this error will likely
343
+ continue to show when you use `plugin install` with a 1.0.x plugin.
344
+ plugin_load_failed: |-
345
+ Failed to load the "%{plugin}" plugin. View logs for more details.
346
+ plugin_load_failed_with_output: |-
347
+ Failed to load the "%{plugin}" plugin. The output from loading
348
+ the plugin is shown below. View the logs for complete details.
349
+
350
+ stdout: %{stdout}
351
+
352
+ stderr: %{stderr}
353
+ plugin_not_found: |-
354
+ The plugin '%{name}' could not be found. Please install this plugin
355
+ prior to attempting to do anything with it.
356
+ port_collision_resume: |-
357
+ This VM cannot be resumed, because the forwarded ports would collide
358
+ with a running program (it could be another virtual machine). Normally,
359
+ Vagrant will attempt to fix this for you but VirtualBox only allows
360
+ forwarded ports to change if the VM is powered off. Therefore, please
361
+ reload your VM or stop the other program to continue.
362
+ provider_not_found: |-
363
+ The provider '%{provider}' could not be found, but was requested to
364
+ back the machine '%{machine}'. Please use a provider that exists.
365
+ scp_permission_denied: |-
366
+ Failed to upload a file to the guest VM via SCP due to a permissions
367
+ error. This is normally because the user running Vagrant doesn't have
368
+ read permission on the file. Please set proper permissions on the file:
369
+
370
+ %{path}
371
+ scp_unavailable: |-
372
+ SSH server on the guest doesn't support SCP. Please install the necessary
373
+ software to enable SCP on your guest operating system.
374
+ shared_folder_create_failed: |-
375
+ Failed to create the following shared folder on the host system. This is
376
+ usually because Vagrant does not have sufficient permissions to create
377
+ the folder.
378
+
379
+ %{path}
380
+
381
+ Please create the folder manually or specify another path to share.
382
+ ssh_authentication_failed: |-
383
+ SSH authentication failed! This is typically caused by the public/private
384
+ keypair for the SSH user not being properly set on the guest VM. Please
385
+ verify that the guest VM is setup with the proper public key, and that
386
+ the private key path for Vagrant is setup properly as well.
387
+ ssh_bad_exit_status: |-
388
+ The following SSH command responded with a non-zero exit status.
389
+ Vagrant assumes that this means the command failed!
390
+
391
+ %{command}
392
+ ssh_connect_eacces: |-
393
+ SSH is getting permission denied errors when attempting to connect
394
+ to the IP for SSH. This is usually caused by network rules and not being
395
+ able to connect to the specified IP. Please try changing the IP on
396
+ which the guest machine binds to for SSH.
397
+ ssh_connection_refused: |-
398
+ SSH connection was refused! This usually happens if the VM failed to
399
+ boot properly. Some steps to try to fix this: First, try reloading your
400
+ VM with `vagrant reload`, since a simple restart sometimes fixes things.
401
+ If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
402
+ followed by a `vagrant up`. If that doesn't work, contact a Vagrant
403
+ maintainer (support channels listed on the website) for more assistance.
404
+ ssh_connection_reset: |-
405
+ SSH connection was reset! This usually happens when the machine is
406
+ taking too long to reboot. First, try reloading your machine with
407
+ `vagrant reload`, since a simple restart sometimes fixes things.
408
+ If that doesn't work, destroy your machine and recreate it with
409
+ a `vagrant destroy` followed by a `1vagrant up`. If that doesn't work,
410
+ contact support.
411
+ ssh_connection_timeout: |-
412
+ Vagrant timed out while attempting to connect via SSH. This usually
413
+ means that the VM booted, but there are issues with the SSH configuration
414
+ or network connectivity issues. Please try to `vagrant reload` or
415
+ `vagrant up` again.
416
+ ssh_disconnected: |-
417
+ The SSH connection was unexpectedly closed by the remote end. This
418
+ usually indicates that SSH within the guest machine was unable to
419
+ properly start up. Please boot the VM in GUI mode to check whether
420
+ it is booting properly.
421
+ ssh_host_down: |-
422
+ While attempting to connect with SSH, a "host is down" (EHOSTDOWN)
423
+ error was received. Please verify your SSH settings are correct
424
+ and try again.
425
+ ssh_is_putty_link: |-
426
+ The `ssh` executable found in the PATH is a PuTTY Link SSH client.
427
+ Vagrant is only compatible with OpenSSH SSH clients. Please install
428
+ an OpenSSH SSH client or manually SSH in using your existing client
429
+ using the information below.
430
+
431
+ Host: %{host}
432
+ Port: %{port}
433
+ Username: %{username}
434
+ Private key: %{key_path}
435
+ ssh_key_bad_owner: |-
436
+ The private key to connect to the machine via SSH must be owned
437
+ by the user running Vagrant. This is a strict requirement from
438
+ SSH itself. Please fix the following key to be owned by the user
439
+ running Vagrant:
440
+
441
+ %{key_path}
442
+ ssh_key_bad_permissions: |-
443
+ The private key to connect to this box via SSH has invalid permissions
444
+ set on it. The permissions of the private key should be set to 0600, otherwise SSH will
445
+ ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
446
+ permissions on the following file to 0600 and then try running this command again:
447
+
448
+ %{key_path}
449
+ ssh_key_type_not_supported: |-
450
+ The private key you're attempting to use with this Vagrant box uses
451
+ an unsupported encryption type. The SSH library Vagrant uses does not support
452
+ this key type. Please use `ssh-rsa` or `ssh-dss` instead. Note that
453
+ sometimes keys in your ssh-agent can interfere with this as well,
454
+ so verify the keys are valid there in addition to standard
455
+ file paths.
456
+ ssh_not_ready: |-
457
+ The provider for this Vagrant-managed machine is reporting that it
458
+ is not yet ready for SSH. Depending on your provider this can carry
459
+ different meanings. Make sure your machine is created and running and
460
+ try again. Additionally, check the output of `vagrant status` to verify
461
+ that the machine is in the state that you expect. If you continue to
462
+ get this error message, please view the documentation for the provider
463
+ you're using.
464
+ ssh_port_not_detected: |-
465
+ Vagrant couldn't determine the SSH port for your VM! Vagrant attempts to
466
+ automatically find a forwarded port that matches your `config.ssh.guest_port`
467
+ (default: 22) value and uses this for SSH. Alternatively, if `config.ssh.port`
468
+ is set, it will use this.
469
+
470
+ However, in this case Vagrant was unable to find a forwarded port that matches
471
+ the guest port and `config.ssh.port` is not set!
472
+
473
+ Please make sure that you have a forwarded port that goes to the configured
474
+ guest port value, or specify an explicit SSH port with `config.ssh.port`.
475
+ ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
476
+ ssh_unavailable_windows: |-
477
+ `ssh` executable not found in any directories in the %PATH% variable. Is an
478
+ SSH client installed? Try installing Cygwin, MinGW or Git, all of which
479
+ contain an SSH client. Or use the PuTTY SSH client with the following
480
+ authentication information shown below:
481
+
482
+ Host: %{host}
483
+ Port: %{port}
484
+ Username: %{username}
485
+ Private key: %{key_path}
486
+ ui_expects_tty: |-
487
+ Vagrant is attempting to interface with the UI in a way that requires
488
+ a TTY. Most actions in Vagrant that require a TTY have configuration
489
+ switches to disable this requirement. Please do that or run Vagrant
490
+ with TTY.
491
+ unimplemented_provider_action: |-
492
+ Vagrant attempted to call the action '%{action}' on the provider
493
+ '%{provider}', but this provider doesn't support this action. This
494
+ is probably a bug in either the provider or the plugin calling this
495
+ action, and should be reported.
496
+ vagrantfile_exists: |-
497
+ `Vagrantfile` already exists in this directory. Remove it before
498
+ running `vagrant init`.
499
+ vagrantfile_load_error: |-
500
+ There was an error loading a Vagrantfile. The file being loaded
501
+ and the error message are shown below. This is usually caused by
502
+ a syntax error.
503
+
504
+ Path: %{path}
505
+ Message: %{message}
506
+ vagrantfile_syntax_error: |-
507
+ There is a syntax error in the following Vagrantfile. The syntax error
508
+ message is reproduced below for convenience:
509
+
510
+ %{file}
511
+ vboxmanage_error: |-
512
+ There was an error while executing `VBoxManage`, a CLI used by Vagrant
513
+ for controlling VirtualBox. The command and stderr is shown below.
514
+
515
+ Command: %{command}
516
+
517
+ Stderr: %{stderr}
518
+ vboxmanage_not_found_error: |-
519
+ The "VBoxManage" command or one of its dependencies could not
520
+ be found. Please verify VirtualBox is properly installed. You can verify
521
+ everything is okay by running "VBoxManage --version" and verifying
522
+ that the VirtualBox version is outputted.
523
+ virtualbox_invalid_version: |-
524
+ Vagrant has detected that you have a version of VirtualBox installed
525
+ that is not supported. Please install one of the supported versions
526
+ listed below to use Vagrant:
527
+
528
+ %{supported_versions}
529
+ virtualbox_kernel_module_not_loaded: |-
530
+ VirtualBox is complaining that the kernel module is not loaded. Please
531
+ run `VBoxManage --version` to see the error message which should contain
532
+ instructions on how to fix this error.
533
+ virtualbox_install_incomplete: |-
534
+ VirtualBox is complaining that the installation is incomplete. Please
535
+ run `VBoxManage --version` to see the error message which should contain
536
+ instructions on how to fix this error.
537
+ virtualbox_no_room_for_high_level_network: |-
538
+ There is no available slots on the VirtualBox VM for the configured
539
+ high-level network interfaces. "private_network" and "public_network"
540
+ network configurations consume a single network adapter slot on the
541
+ VirtualBox VM. VirtualBox limits the number of slots to 8, and it
542
+ appears that every slot is in use. Please lower the number of used
543
+ network adapters.
544
+ virtualbox_not_detected: |-
545
+ Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
546
+ Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
547
+ this to be available on the PATH. If VirtualBox is installed, please find the
548
+ `VBoxManage` binary and add it to the PATH environmental variable.
549
+ vm_creation_required: |-
550
+ VM must be created before running this command. Run `vagrant up` first.
551
+ vm_inaccessible: |-
552
+ Your VM has become "inaccessible." Unfortunately, this is a critical error
553
+ with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
554
+ and clear out your inaccessible virtual machines or find a way to fix
555
+ them.
556
+ vm_name_exists: |-
557
+ A VirtualBox machine with the name '%{name}' already exists.
558
+ Please use another name or delete the machine with the existing
559
+ name, and try again.
560
+ vm_no_match: |-
561
+ No virtual machines matched the regular expression given.
562
+ vm_not_found: |-
563
+ A VM by the name of %{name} was not found.
564
+ vm_not_running: |-
565
+ VM must be running to open SSH connection. Run `vagrant up`
566
+ to start the virtual machine.
567
+
568
+ #-------------------------------------------------------------------------------
569
+ # Translations for config validation errors
570
+ #-------------------------------------------------------------------------------
571
+ config:
572
+ common:
573
+ bad_field: "The following settings don't exist: %{fields}"
574
+ error_empty: "`%{field}` must be not be empty."
575
+ chef:
576
+ cookbooks_path_empty: "Must specify a cookbooks path for chef solo."
577
+ cookbooks_path_missing: |-
578
+ Cookbook path doesn't exist: %{path}
579
+ server_url_empty: "Chef server URL must be populated."
580
+ validation_key_path: "Validation key path must be valid path to your chef server validation key."
581
+ loader:
582
+ bad_v1_key: |-
583
+ Unknown configuration section '%{key}'. If this section was part of
584
+ a Vagrant 1.0.x plugin, note that 1.0.x plugins are incompatible with 1.1+.
585
+ root:
586
+ bad_key: |-
587
+ Unknown configuration section '%{key}'.
588
+ ssh:
589
+ private_key_missing: "`private_key_path` file must exist: %{path}"
590
+ vm:
591
+ base_mac_invalid: "Base MAC address for eth0/NAT must be set. Contact box maintainer for more information."
592
+ box_missing: "A box must be specified."
593
+ box_not_found: "The box '%{name}' could not be found."
594
+ hostname_invalid_characters: |-
595
+ The hostname set for the VM should only contain letters, numbers,
596
+ and hyphens.
597
+ network_invalid: |-
598
+ The network type '%{type}' is not valid. Please use
599
+ 'hostonly' or 'bridged'.
600
+ network_ip_required: |-
601
+ Host only networks require an IP as an argument.
602
+ network_ip_invalid: |-
603
+ The host only network IP '%{ip}' is invalid.
604
+ network_ip_ends_one: |-
605
+ The host only network IP '%{ip}' must not end in a 1, as this
606
+ is reserved for the host machine.
607
+ nfs_not_supported: |-
608
+ It appears your machine doesn't support NFS, or there is not an
609
+ adapter to enable NFS on this machine for Vagrant. Please verify
610
+ that `nfsd` is installed on your machine, and try again. If you're
611
+ on Windows, NFS isn't supported. If the problem persists, please
612
+ contact Vagrant support.
613
+ nfs_requires_host: |-
614
+ Using NFS shared folders requires a host to be specified
615
+ using `config.vagrant.host`.
616
+ network_fp_host_not_unique: |-
617
+ Forwarded port '%{host}' (host port) is declared multiple times
618
+ network_fp_requires_ports: |-
619
+ Forwarded port definitions require a "host" and "guest" value
620
+ network_type_invalid: |-
621
+ Network type '%{type}' is invalid. Please use a valid network type.
622
+ provisioner_not_found: |-
623
+ The '%{name}' provisioner could not be found.
624
+ shared_folder_guestpath_duplicate: |-
625
+ A shared folder guest path is used multiple times. Shared
626
+ folders must all map to a unique guest path: %{path}
627
+ shared_folder_guestpath_relative: |-
628
+ The shared folder guest path must be absolute: %{path}
629
+ shared_folder_hostpath_missing: |-
630
+ The host path of the shared folder is missing: %{path}
631
+ shared_folder_nfs_owner_group: |-
632
+ Shared folder that have NFS enabled do no support owner/group
633
+ attributes. Host path: %{path}
634
+
635
+ #-------------------------------------------------------------------------------
636
+ # Translations for commands. e.g. `vagrant x`
637
+ #-------------------------------------------------------------------------------
638
+ commands:
639
+ common:
640
+ vm_already_running: |-
641
+ VirtualBox VM is already running.
642
+ vm_not_created: "VM not created. Moving on..."
643
+ vm_not_running: "VM is not currently running. Please bring it up to run this command."
644
+ box:
645
+ no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
646
+ removing: |-
647
+ Removing box '%{name}' with provider '%{provider}'...
648
+ destroy:
649
+ confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
650
+ will_not_destroy: |-
651
+ The VM '%{name}' will not be destroyed, since the confirmation
652
+ was declined.
653
+ init:
654
+ success: |-
655
+ A `Vagrantfile` has been placed in this directory. You are now
656
+ ready to `vagrant up` your first virtual environment! Please read
657
+ the comments in the Vagrantfile as well as documentation on
658
+ `vagrantup.com` for more information on using Vagrant.
659
+ plugin:
660
+ installed_license: |-
661
+ The license for '%{name}' was successfully installed!
662
+ installing_license: |-
663
+ Installing license for '%{name}'...
664
+ no_plugins: |-
665
+ No plugins installed.
666
+ installed: |-
667
+ Installed the plugin '%{name} (%{version})'!
668
+ installing: |-
669
+ Installing the '%{name}' plugin. This can take a few minutes...
670
+ uninstalling: |-
671
+ Uninstalling the '%{name}' plugin...
672
+ status:
673
+ aborted: |-
674
+ The VM is in an aborted state. This means that it was abruptly
675
+ stopped without properly closing the session. Run `vagrant up`
676
+ to resume this virtual machine. If any problems persist, you may
677
+ have to destroy and restart the virtual machine.
678
+ gurumeditation: |-
679
+ The VM is in the "guru meditation" state. This is a rare case which means
680
+ that an internal error in VitualBox caused the VM to fail. This is always
681
+ the sign of a bug in VirtualBox. You can try to bring your VM back online
682
+ with a `vagrant up`.
683
+ inaccessible: |-
684
+ The VM is inaccessible! This is a rare case which means that VirtualBox
685
+ can't find your VM configuration. This usually happens when upgrading
686
+ VirtualBox, moving to a new computer, etc. Please consult VirtualBox
687
+ for how to handle this issue.
688
+ output: |-
689
+ Current machine states:
690
+
691
+ %{states}
692
+
693
+ %{message}
694
+ not_created: |-
695
+ The environment has not yet been created. Run `vagrant up` to
696
+ create the environment. If a machine is not created, only the
697
+ default provider will be shown. So if a provider is not listed,
698
+ then the machine is not created for that environment.
699
+ paused: |-
700
+ The VM is paused. This VM may have been paused via the VirtualBox
701
+ GUI or the VBoxManage command line interface. To unpause, please
702
+ use the VirtualBox GUI and/or VBoxManage command line interface so
703
+ that vagrant would be able to control the VM again.
704
+ poweroff: |-
705
+ The VM is powered off. To restart the VM, simply run `vagrant up`
706
+ running: |-
707
+ The VM is running. To stop this VM, you can run `vagrant halt` to
708
+ shut it down forcefully, or you can run `vagrant suspend` to simply
709
+ suspend the virtual machine. In either case, to restart it again,
710
+ simply run `vagrant up`.
711
+ saving: |-
712
+ The VM is currently saving its state. In a few moments this state
713
+ should transition to "saved." Please run `vagrant status` again
714
+ in a few seconds.
715
+ saved: |-
716
+ To resume this VM, simply run `vagrant up`.
717
+ stuck: |-
718
+ The VM is "stuck!" This is a very rare state which means that
719
+ VirtualBox is unable to recover the current state of the VM.
720
+ The only known solution to this problem is to restart your
721
+ machine, sorry.
722
+ listing: |-
723
+ This environment represents multiple VMs. The VMs are all listed
724
+ above with their current state. For more information about a specific
725
+ VM, run `vagrant status NAME`.
726
+ up:
727
+ upping: |-
728
+ Bringing machine '%{name}' up with '%{provider}' provider...
729
+ version:
730
+ output: "Vagrant version %{version}"
731
+
732
+ #-------------------------------------------------------------------------------
733
+ # Translations for Vagrant middleware acions
734
+ #-------------------------------------------------------------------------------
735
+ actions:
736
+ runner:
737
+ waiting_cleanup: "Waiting for cleanup before exiting..."
738
+ exit_immediately: "Exiting immediately, without cleanup!"
739
+ vm:
740
+ boot:
741
+ booting: Booting VM...
742
+ waiting: Waiting for VM to boot. This can take a few minutes.
743
+ ready: VM booted and ready for use!
744
+ failed: Failed to connect to VM!
745
+ failed_to_boot: |-
746
+ Failed to connect to VM via SSH. Please verify the VM successfully booted
747
+ by looking at the VirtualBox GUI.
748
+ failed_to_run: |-
749
+ The VM failed to remain in the "running" state while attempting to boot.
750
+ This is normally caused by a misconfiguration or host system incompatibilities.
751
+ Please open the VirtualBox GUI and attempt to boot the virtual machine
752
+ manually to get a more informative error message.
753
+ bridged_networking:
754
+ available: |-
755
+ Available bridged network interfaces:
756
+ bridging: |-
757
+ Bridging adapter #%{adapter} to '%{bridge}'
758
+ enabling: |-
759
+ Enabling bridged network...
760
+ preparing: |-
761
+ Preparing bridged networking...
762
+ specific_not_found: |-
763
+ Specific bridge '%{bridge}' not found. You may be asked to specify
764
+ which network to bridge to.
765
+ check_box:
766
+ not_found: |-
767
+ Box '%{name}' was not found. Fetching box from specified URL for
768
+ the provider '%{provider}'. Note that if the URL does not have
769
+ a box for this provider, you should interrupt Vagrant now and add
770
+ the box yourself. Otherwise Vagrant will attempt to download the
771
+ full box prior to discovering this error.
772
+ not_specified: |-
773
+ No base box was specified! A base box is required as a staring point
774
+ for every vagrant virtual machine. Please specify one in your Vagrantfile
775
+ using `config.vm.box`
776
+ does_not_exist: |-
777
+ Specified box `%{name}` does not exist!
778
+
779
+ The box must be added through the `vagrant box add` command. Please view
780
+ the documentation associated with the command for more information.
781
+ check_guest_additions:
782
+ not_detected: |-
783
+ No guest additions were detected on the base box for this VM! Guest
784
+ additions are required for forwarded ports, shared folders, host only
785
+ networking, and more. If SSH fails on this machine, please install
786
+ the guest additions and repackage the box to continue.
787
+
788
+ This is not an error message; everything may continue to work properly,
789
+ in which case you may ignore this message.
790
+ version_mismatch: |-
791
+ The guest additions on this VM do not match the installed version of
792
+ VirtualBox! In most cases this is fine, but in rare cases it can
793
+ cause things such as shared folders to not work properly. If you see
794
+ shared folder errors, please update the guest additions within the
795
+ virtual machine and reload your VM.
796
+
797
+ Guest Additions Version: %{guest_version}
798
+ VirtualBox Version: %{virtualbox_version}
799
+ clear_forward_ports:
800
+ deleting: Clearing any previously set forwarded ports...
801
+ clear_network_interfaces:
802
+ deleting: Clearing any previously set network interfaces...
803
+ clear_shared_folders:
804
+ deleting: Cleaning previously set shared folders...
805
+ customize:
806
+ failure: |-
807
+ A customization command failed:
808
+
809
+ %{command}
810
+
811
+ The following error was experienced:
812
+
813
+ %{error}
814
+
815
+ Please fix this customization and try again.
816
+ running: Running any VM customizations...
817
+ destroy:
818
+ destroying: Destroying VM and associated drives...
819
+ destroy_network:
820
+ destroying: Destroying unused networking interface...
821
+ disable_networks:
822
+ disabling: Disabling host only networks...
823
+ discard_state:
824
+ discarding: Discarding saved state of VM...
825
+ export:
826
+ create_dir: Creating temporary directory for export...
827
+ exporting: Exporting VM...
828
+ power_off: "The Vagrant virtual environment you are trying to package must be powered off."
829
+ forward_ports:
830
+ auto_empty: |-
831
+ Vagrant found a port collision for the specified port and virtual machine.
832
+ While this port was marked to be auto-corrected, the ports in the
833
+ auto-correction range are all also used.
834
+
835
+ VM: %{vm_name}
836
+ Forwarded port: %{guest_port} => %{host_port}
837
+ collision_error: |-
838
+ Vagrant cannot forward the specified ports on this VM, since they
839
+ would collide with some other application that is already listening
840
+ on these ports. The forwarded port to %{host_port} is already in use
841
+ on the host machine.
842
+
843
+ To fix this, modify your current projects Vagrantfile to use another
844
+ port. Example, where '1234' would be replaced by a unique host port:
845
+
846
+ config.vm.network :forwarded_port, guest: %{guest_port}, host: 1234
847
+
848
+ Sometimes, Vagrant will attempt to auto-correct this for you. In this
849
+ case, Vagrant was unable to. This is usually because the guest machine
850
+ is in a state which doesn't allow modifying port forwarding.
851
+ fixed_collision: |-
852
+ Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
853
+ forwarding: Forwarding ports...
854
+ forwarding_entry: |-
855
+ -- %{guest_port} => %{host_port} (adapter %{adapter})
856
+ non_nat: |-
857
+ VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
858
+ forwards on this adapter.
859
+ privileged_ports: |-
860
+ You are trying to forward to privileged ports (ports <= 1024). Most
861
+ operating systems restrict this to only privileged process (typically
862
+ processes running as an administrative user). This is a warning in case
863
+ the port forwarding doesn't work. If any problems occur, please try a
864
+ port higher than 1024.
865
+ halt:
866
+ force: |-
867
+ Forcing shutdown of VM...
868
+ graceful: |-
869
+ Attempting graceful shutdown of VM...
870
+ hostname:
871
+ setting: "Setting hostname..."
872
+ import:
873
+ importing: Importing base box '%{name}'...
874
+ failure: |-
875
+ The VM import failed! Try running `VBoxManage import` on the box file
876
+ manually for more verbose error output.
877
+ match_mac:
878
+ matching: Matching MAC address for NAT networking...
879
+ no_base_mac: |-
880
+ No base MAC address was specified. This is required for the NAT networking
881
+ to work properly (and hence port forwarding, SSH, etc.). Specifying this
882
+ MAC address is typically up to the box and box maintiner. Please contact
883
+ the relevant person to solve this issue.
884
+ network:
885
+ adapter_collision: |-
886
+ More than one network have been assigned to the same adapter. Please
887
+ make sure your networks you've configured in your Vagrantfile do not
888
+ overlap.
889
+ configuring: |-
890
+ Configuring and enabling network interfaces...
891
+ dhcp_already_attached: |-
892
+ A host only network interface you're attempting to configure via DHCP
893
+ already has a conflicting host only adapter with DHCP enabled. The
894
+ DHCP on this adapter is incompatible with the DHCP settings. Two
895
+ host only network interfaces are not allowed to overlap, and each
896
+ host only network interface can have only one DHCP server. Please
897
+ reconfigure your host only network or remove the virtual machine
898
+ using the other host only network.
899
+ no_adapters: |-
900
+ No available adapters on the virtual machine were found to accomodate
901
+ for all configured networks. VirtualBox virtual machines have 8
902
+ network interfaces available usually, so please lower the number of
903
+ networks to below 8.
904
+ preparing: |-
905
+ Preparing network interfaces based on configuration...
906
+ host_only_network:
907
+ collides: |-
908
+ The specified host network collides with a non-hostonly network!
909
+ This will cause your specified IP to be inaccessible. Please change
910
+ the IP or name of your host only network to not match that of
911
+ a bridged or non-hostonly network.
912
+ creating: "Creating new host only network for environment..."
913
+ enabling: "Enabling host only network..."
914
+ not_found: |-
915
+ The specified host network could not be found: '%{name}.'
916
+ If the name specification is removed, Vagrant will create a new
917
+ host only network for you. Alternatively, please create the
918
+ specified network manually.
919
+ preparing: "Preparing host only network..."
920
+ nfs:
921
+ exporting: Exporting NFS shared folders...
922
+ mounting: Mounting NFS shared folders...
923
+ persist:
924
+ dotfile_error: |-
925
+ The dotfile which Vagrant uses to store the UUID of the project's
926
+ virtual machine already exists and is not a file! The dotfile is
927
+ currently configured to be '%{dotfile_path}'
928
+
929
+ To change this value, please see `config.vagrant.dotfile_name`
930
+
931
+ Are you trying to use Vagrant from your home directory? This is the
932
+ leading cause of this error message. To resolve this, simply use a
933
+ different directory. Or, if you really want to run Vagrant from your
934
+ home directory, modify the `config.vagrant.dotfile_name` configuration
935
+ key.
936
+ persisting: "Persisting the VM UUID (%{uuid})..."
937
+ provision:
938
+ beginning: "Running provisioner: %{provisioner}..."
939
+ resume:
940
+ resuming: Resuming suspended VM...
941
+ unpausing: |-
942
+ Unpausing the VM...
943
+ share_folders:
944
+ creating: Creating shared folders metadata...
945
+ mounting: Mounting shared folders...
946
+ mounting_entry: "-- %{guest_path}"
947
+ nomount_entry: "-- Automounting disabled: %{host_path}"
948
+ set_name:
949
+ setting_name: |-
950
+ Setting the name of the VM...
951
+ suspend:
952
+ suspending: Saving VM state and suspending execution...
953
+
954
+ box:
955
+ unpackage:
956
+ untar_failure: |-
957
+ The box failed to unpackage properly. Please verify that the box
958
+ file you're trying to add is not corrupted and try again. The
959
+ output from attempting to unpackage (if any):
960
+
961
+ %{output}
962
+ already_exists: |-
963
+ The box you're attempting to add already exits:
964
+
965
+ Name: %{name}
966
+ Provider: %{provider}
967
+ add:
968
+ adding: |-
969
+ Extracting box...
970
+ added: |-
971
+ Successfully added box '%{name}' with provider '%{provider}'!
972
+ destroy:
973
+ destroying: "Deleting box '%{name}'..."
974
+ download:
975
+ cleaning: "Cleaning up downloaded box..."
976
+ downloading: "Downloading or copying the box..."
977
+ interrupted: "Box download was interrupted. Exiting."
978
+ verify:
979
+ verifying: "Verifying box..."
980
+ failed: |-
981
+ The box file you're attempting to add is invalid. This can be
982
+ commonly attributed to typos in the path given to the box add
983
+ command. Another common case of this is invalid packaging of the
984
+ box itself.
985
+
986
+ general:
987
+ package:
988
+ packaging: "Packaging additional file: %{file}"
989
+ compressing: "Compressing package to: %{tar_path}"
990
+ output_exists: |-
991
+ The specified file to save the package as already exists. Please
992
+ remove this file or specify a different file name for outputting.
993
+ output_is_directory: |-
994
+ The specified output is a directory. Please specify a path including
995
+ a filename.
996
+ requires_directory: |-
997
+ A directory was not specified to package. This should never happen
998
+ and is a result of an internal inconsistency.
999
+ include_file_missing: |-
1000
+ Package include file doesn't exist: %{file}
1001
+
1002
+ downloaders:
1003
+ file:
1004
+ download: "Copying box to temporary location..."
1005
+ file_missing: "The specified path to a file doesn't exist."
1006
+ http:
1007
+ connection_reset: |-
1008
+ The remote server unexpectedly closed the connection. Vagrant was
1009
+ unable to finish downloading the box. Please try again. If this
1010
+ problem persists, please try downloading the box manually outside
1011
+ of Vagrant, then adding the box from the filesystem.
1012
+ connection_timeout: |-
1013
+ Vagrant timed out while attempting to connect to the HTTP host.
1014
+ Please check your internet and proxy settings and try again.
1015
+ download: "Downloading box: %{url}"
1016
+ socket_error: |-
1017
+ An error occurred while trying to download the specified box. This most
1018
+ often happens if there is no internet connection or the address is
1019
+ invalid.
1020
+ status_error: |-
1021
+ Bad status code: %{status}
1022
+
1023
+ Please verify that the box exists and is accessible. Also verify that
1024
+ this computer is properly connected to the internet.
1025
+
1026
+ hosts:
1027
+ bsd:
1028
+ nfs_export: |-
1029
+ Preparing to edit /etc/exports. Administrator privileges will be required...
1030
+ nfs_prune: |-
1031
+ Pruning invalid NFS exports. Administrator privileges will be required...
1032
+ linux:
1033
+ nfs_export: |-
1034
+ Preparing to edit /etc/exports. Administrator privileges will be required...
1035
+ nfs_prune: |-
1036
+ Pruning invalid NFS exports. Administrator privileges will be required...
1037
+ arch:
1038
+ nfs_export:
1039
+ prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
1040
+ freebsd:
1041
+ nfs_whitespace: |-
1042
+ FreeBSD hosts do not support sharing directories with whitespace in
1043
+ their path. Please adjust your path accordingly.
1044
+
1045
+ provisioners:
1046
+ chef:
1047
+ chef_not_detected: |-
1048
+ The chef binary (either `chef-solo` or `chef-client`) was not found on
1049
+ the VM and is required for chef provisioning. Please verify that chef
1050
+ is installed and that the binary is available on the PATH.
1051
+ cookbook_folder_not_found_warning:
1052
+ "The cookbook path '%{path}' doesn't exist. Ignoring..."
1053
+ json: "Generating chef JSON and uploading..."
1054
+ client_key_folder: "Creating folder to hold client key..."
1055
+ upload_validation_key: "Uploading chef client validation key..."
1056
+ upload_encrypted_data_bag_secret_key: "Uploading chef encrypted data bag secret key..."
1057
+ running_client: "Running chef-client..."
1058
+ running_client_again: "Running chef-client again (failed to converge)..."
1059
+ running_solo: "Running chef-solo..."
1060
+ running_solo_again: "Running chef-solo again (failed to converge)..."
1061
+ missing_shared_folders: |-
1062
+ Shared folders that Chef requires are missing on the virtual machine.
1063
+ This is usually due to configuration changing after already booting the
1064
+ machine. The fix is to run a `vagrant reload` so that the proper shared
1065
+ folders will be prepared and mounted on the VM.
1066
+ no_convergence: |-
1067
+ Chef never successfully completed! Any errors should be visible in the
1068
+ output above. Please fix your recipes so that they properly complete.
1069
+ not_detected: |-
1070
+ The `%{binary}` binary appears to not be in the PATH of the guest. This
1071
+ could be because the PATH is not properly setup or perhaps chef is not
1072
+ installed on this guest. Chef provisioning can not continue without
1073
+ chef properly installed.
1074
+ server_url_required: |-
1075
+ Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
1076
+ URL of your chef server. Examples include "http://12.12.12.12:4000" and
1077
+ "http://myserver.com:4000" (the port of course can be different, but 4000 is the default)
1078
+ server_validation_key_required: |-
1079
+ Chef server provisioning requires that the `config.chef.validation_key_path` configuration
1080
+ be set to a path on your local machine of the validation key used to register the
1081
+ VM with the chef server.
1082
+ server_validation_key_doesnt_exist: |-
1083
+ The validation key set for `config.chef.validation_key_path` does not exist! This
1084
+ file needs to exist so it can be uploaded to the virtual machine.
1085
+
1086
+ puppet:
1087
+ not_detected: |-
1088
+ The `%{binary}` binary appears to not be in the PATH of the guest. This
1089
+ could be because the PATH is not properly setup or perhaps Puppet is not
1090
+ installed on this guest. Puppet provisioning can not continue without
1091
+ Puppet properly installed.
1092
+ running_puppet: "Running Puppet with %{manifest}..."
1093
+ manifest_missing: |-
1094
+ The configured Puppet manifest is missing. Please specify a path to an
1095
+ existing manifest:
1096
+
1097
+ %{manifest}
1098
+ manifests_path_missing: "The manifests path specified for Puppet does not exist: %{path}"
1099
+ missing_shared_folders: |-
1100
+ Shared folders that Puppet requires are missing on the virtual machine.
1101
+ This is usually due to configuration changing after already booting the
1102
+ machine. The fix is to run a `vagrant reload` so that the proper shared
1103
+ folders will be prepared and mounted on the VM.
1104
+ module_path_missing: "The configured module path doesn't exist: %{path}"
1105
+
1106
+ puppet_server:
1107
+ not_detected: |-
1108
+ The `%{binary}` binary appears to not be in the PATH of the guest. This
1109
+ could be because the PATH is not properly setup or perhaps Puppet is not
1110
+ installed on this guest. Puppet provisioning can not continue without
1111
+ Puppet properly installed.
1112
+ running_puppetd: "Running Puppet agent..."
1113
+
1114
+ shell:
1115
+ args_not_string: "Shell provisioner `args` must be a string."
1116
+ no_path_or_inline: "One of `path` or `inline` must be set."
1117
+ path_and_inline_set: "Only one of `path` or `inline` may be set."
1118
+ path_invalid: "`path` for shell provisioner does not exist on the host system: %{path}"
1119
+ running: "Running: %{script}"
1120
+ upload_path_not_set: "`upload_path` must be set for the shell provisioner."
1121
+
1122
+ ansible:
1123
+ no_playbook: "`playbook` must be set for the Ansible provisioner."
1124
+ playbook_path_invalid: "`playbook` for the Ansible provisioner does not exist on the host system: %{path}"
1125
+ inventory_file_path_invalid: "`inventory_file` for the Ansible provisioner does not exist on the host system: %{path}"
1126
+ extra_vars_not_hash: "`extra_vars` for the Ansible provisioner must be a hash"