tnargav 1.2.3 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (380) hide show
  1. data/.gitignore +19 -3
  2. data/CHANGELOG.md +311 -0
  3. data/bin/vagrant +12 -0
  4. data/config/default.rb +2 -4
  5. data/keys/README.md +0 -7
  6. data/lib/vagrant.rb +7 -0
  7. data/lib/vagrant/action.rb +2 -0
  8. data/lib/vagrant/action/builtin/box_add.rb +12 -1
  9. data/lib/vagrant/action/builtin/confirm.rb +1 -0
  10. data/lib/vagrant/action/builtin/graceful_halt.rb +9 -5
  11. data/lib/vagrant/action/builtin/handle_box_url.rb +16 -7
  12. data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +1 -1
  13. data/lib/vagrant/action/builtin/mixin_provisioners.rb +43 -0
  14. data/lib/vagrant/action/builtin/nfs.rb +18 -8
  15. data/lib/vagrant/action/builtin/provision.rb +30 -21
  16. data/lib/vagrant/action/builtin/provisioner_cleanup.rb +35 -0
  17. data/lib/vagrant/action/builtin/wait_for_communicator.rb +84 -0
  18. data/lib/vagrant/action/warden.rb +2 -1
  19. data/lib/vagrant/box_collection.rb +62 -44
  20. data/lib/vagrant/cli.rb +1 -9
  21. data/lib/vagrant/config/v2/root.rb +6 -0
  22. data/lib/vagrant/environment.rb +27 -51
  23. data/lib/vagrant/errors.rb +33 -1
  24. data/lib/vagrant/guest.rb +2 -2
  25. data/lib/vagrant/machine.rb +14 -22
  26. data/lib/vagrant/plugin/v2/command.rb +4 -1
  27. data/lib/vagrant/plugin/v2/communicator.rb +21 -0
  28. data/lib/vagrant/plugin/v2/guest.rb +1 -56
  29. data/lib/vagrant/plugin/v2/provisioner.rb +6 -0
  30. data/lib/vagrant/util/downloader.rb +7 -2
  31. data/lib/vagrant/util/platform.rb +43 -0
  32. data/lib/vagrant/util/ssh.rb +5 -0
  33. data/lib/vagrant/util/subprocess.rb +16 -2
  34. data/lib/vagrant/version.rb +1 -1
  35. data/plugins/commands/box/command/remove.rb +22 -2
  36. data/plugins/commands/box/command/repackage.rb +1 -1
  37. data/plugins/commands/destroy/command.rb +8 -3
  38. data/plugins/commands/help/command.rb +12 -0
  39. data/plugins/commands/help/plugin.rb +17 -0
  40. data/plugins/commands/plugin/action.rb +11 -0
  41. data/plugins/commands/plugin/action/install_gem.rb +26 -1
  42. data/plugins/commands/plugin/action/plugin_exists_check.rb +26 -0
  43. data/plugins/commands/plugin/command/install.rb +4 -21
  44. data/plugins/commands/plugin/command/mixin_install_opts.rb +30 -0
  45. data/plugins/commands/plugin/command/root.rb +5 -0
  46. data/plugins/commands/plugin/command/update.rb +41 -0
  47. data/plugins/commands/reload/command.rb +4 -0
  48. data/plugins/commands/status/command.rb +6 -1
  49. data/plugins/commands/up/command.rb +10 -0
  50. data/plugins/commands/up/start_mixins.rb +12 -1
  51. data/plugins/communicators/ssh/communicator.rb +61 -6
  52. data/plugins/guests/arch/cap/change_host_name.rb +1 -2
  53. data/plugins/guests/arch/cap/configure_networks.rb +6 -0
  54. data/plugins/guests/coreos/cap/change_host_name.rb +15 -0
  55. data/plugins/guests/coreos/cap/configure_networks.rb +72 -0
  56. data/plugins/guests/coreos/guest.rb +9 -0
  57. data/plugins/guests/coreos/plugin.rb +25 -0
  58. data/plugins/guests/darwin/cap/change_host_name.rb +14 -0
  59. data/plugins/guests/darwin/cap/configure_networks.rb +52 -0
  60. data/plugins/guests/darwin/cap/halt.rb +16 -0
  61. data/plugins/guests/darwin/cap/mount_nfs_folder.rb +25 -0
  62. data/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb +36 -0
  63. data/plugins/guests/darwin/cap/shell_expand_guest_path.rb +26 -0
  64. data/plugins/guests/darwin/cap/verify_vmware_hgfs.rb +12 -0
  65. data/plugins/guests/darwin/guest.rb +15 -0
  66. data/plugins/guests/darwin/plugin.rb +50 -0
  67. data/plugins/guests/debian/cap/change_host_name.rb +1 -0
  68. data/plugins/guests/gentoo/guest.rb +1 -1
  69. data/plugins/guests/linux/cap/mount_nfs.rb +9 -1
  70. data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +26 -7
  71. data/plugins/guests/linux/cap/shell_expand_guest_path.rb +4 -1
  72. data/plugins/guests/openbsd/cap/change_host_name.rb +14 -0
  73. data/plugins/guests/openbsd/cap/configure_networks.rb +40 -0
  74. data/plugins/guests/openbsd/cap/mount_nfs_folder.rb +14 -0
  75. data/plugins/guests/openbsd/plugin.rb +15 -0
  76. data/plugins/guests/solaris/cap/halt.rb +2 -1
  77. data/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb +4 -1
  78. data/plugins/guests/solaris11/cap/change_host_name.rb +25 -0
  79. data/plugins/guests/solaris11/cap/configure_networks.rb +32 -0
  80. data/plugins/guests/solaris11/cap/halt.rb +26 -0
  81. data/plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb +35 -0
  82. data/plugins/guests/solaris11/config.rb +22 -0
  83. data/plugins/guests/solaris11/guest.rb +15 -0
  84. data/plugins/guests/solaris11/plugin.rb +44 -0
  85. data/plugins/guests/suse/cap/configure_networks.rb +60 -0
  86. data/plugins/guests/suse/plugin.rb +5 -0
  87. data/plugins/guests/ubuntu/cap/change_host_name.rb +1 -0
  88. data/plugins/guests/ubuntu/cap/mount_nfs.rb +19 -0
  89. data/plugins/guests/ubuntu/cap/mount_virtualbox_shared_folder.rb +14 -0
  90. data/plugins/guests/ubuntu/guest.rb +0 -19
  91. data/plugins/guests/ubuntu/plugin.rb +10 -0
  92. data/plugins/hosts/arch/host.rb +5 -28
  93. data/plugins/hosts/bsd/host.rb +83 -7
  94. data/plugins/hosts/fedora/host.rb +12 -6
  95. data/plugins/hosts/gentoo/host.rb +3 -1
  96. data/plugins/hosts/linux/host.rb +42 -9
  97. data/plugins/hosts/opensuse/host.rb +3 -1
  98. data/plugins/hosts/slackware/host.rb +26 -0
  99. data/plugins/hosts/slackware/plugin.rb +15 -0
  100. data/plugins/kernel_v1/config/ssh.rb +2 -2
  101. data/plugins/kernel_v2/config/ssh.rb +8 -16
  102. data/plugins/kernel_v2/config/vm.rb +68 -11
  103. data/plugins/providers/virtualbox/action.rb +15 -2
  104. data/plugins/providers/virtualbox/action/boot.rb +0 -26
  105. data/plugins/providers/virtualbox/action/clear_network_interfaces.rb +1 -1
  106. data/plugins/providers/virtualbox/action/customize.rb +10 -3
  107. data/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +8 -1
  108. data/plugins/providers/virtualbox/action/forward_ports.rb +1 -0
  109. data/plugins/providers/virtualbox/action/import.rb +3 -0
  110. data/plugins/providers/virtualbox/action/network.rb +14 -2
  111. data/plugins/providers/virtualbox/action/prepare_nfs_settings.rb +7 -2
  112. data/plugins/providers/virtualbox/action/set_name.rb +13 -1
  113. data/plugins/providers/virtualbox/config.rb +39 -2
  114. data/plugins/providers/virtualbox/driver/base.rb +5 -0
  115. data/plugins/providers/virtualbox/driver/meta.rb +7 -1
  116. data/plugins/providers/virtualbox/driver/version_4_0.rb +2 -2
  117. data/plugins/providers/virtualbox/driver/version_4_1.rb +2 -2
  118. data/plugins/providers/virtualbox/driver/version_4_2.rb +17 -0
  119. data/plugins/providers/virtualbox/model/forwarded_port.rb +7 -1
  120. data/plugins/providers/virtualbox/util/compile_forwarded_ports.rb +5 -1
  121. data/plugins/provisioners/ansible/config.rb +40 -23
  122. data/plugins/provisioners/ansible/provisioner.rb +68 -13
  123. data/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb +1 -1
  124. data/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb +1 -1
  125. data/plugins/provisioners/cfengine/config.rb +7 -1
  126. data/plugins/provisioners/cfengine/provisioner.rb +4 -5
  127. data/plugins/provisioners/chef/config/base.rb +31 -0
  128. data/plugins/provisioners/chef/config/chef_client.rb +15 -6
  129. data/plugins/provisioners/chef/config/chef_solo.rb +18 -11
  130. data/plugins/provisioners/chef/provisioner/base.rb +23 -3
  131. data/plugins/provisioners/chef/provisioner/chef_client.rb +25 -6
  132. data/plugins/provisioners/chef/provisioner/chef_solo.rb +16 -13
  133. data/plugins/provisioners/file/config.rb +29 -0
  134. data/plugins/provisioners/file/plugin.rb +23 -0
  135. data/plugins/provisioners/file/provisioner.rb +16 -0
  136. data/plugins/provisioners/puppet/config/puppet.rb +4 -1
  137. data/plugins/provisioners/puppet/provisioner/puppet.rb +15 -9
  138. data/plugins/provisioners/puppet/provisioner/puppet_server.rb +9 -2
  139. data/plugins/provisioners/salt/bootstrap-salt.sh +6 -0
  140. data/plugins/provisioners/salt/config.rb +105 -0
  141. data/plugins/provisioners/salt/errors.rb +11 -0
  142. data/plugins/provisioners/salt/plugin.rb +22 -0
  143. data/plugins/provisioners/salt/provisioner.rb +249 -0
  144. data/plugins/provisioners/shell/config.rb +11 -2
  145. data/plugins/provisioners/shell/provisioner.rb +15 -3
  146. data/scripts/website_push_docs.sh +12 -0
  147. data/scripts/website_push_www.sh +12 -0
  148. data/templates/commands/init/Vagrantfile.erb +5 -2
  149. data/templates/commands/ssh_config/config.erb +4 -0
  150. data/templates/guests/coreos/etcd.service.erb +10 -0
  151. data/templates/guests/fedora/network_static.erb +2 -3
  152. data/templates/guests/openbsd/network_dhcp.erb +1 -0
  153. data/templates/guests/openbsd/network_static.erb +1 -0
  154. data/templates/guests/suse/network_dhcp.erb +6 -0
  155. data/templates/guests/suse/network_static.erb +10 -0
  156. data/templates/locales/en.yml +123 -13
  157. data/templates/nfs/exports.erb +4 -4
  158. data/templates/nfs/exports_freebsd.erb +4 -4
  159. data/templates/nfs/exports_linux.erb +5 -3
  160. data/templates/provisioners/chef_client/client.erb +9 -0
  161. data/templates/provisioners/chef_solo/solo.erb +19 -1
  162. data/test/unit/vagrant/action/builtin/graceful_halt_test.rb +1 -2
  163. data/test/unit/vagrant/cli_test.rb +1 -0
  164. data/test/unit/vagrant/config/v2/root_test.rb +18 -0
  165. data/test/unit/vagrant/environment_test.rb +25 -0
  166. data/test/unit/vagrant/util/downloader_test.rb +4 -4
  167. data/test/unit/vagrant_test.rb +18 -0
  168. data/website/docs/.buildpacks +2 -0
  169. data/website/docs/Gemfile +13 -0
  170. data/website/docs/Gemfile.lock +141 -0
  171. data/website/docs/Procfile +1 -0
  172. data/website/docs/README.md +26 -0
  173. data/website/docs/config.rb +78 -0
  174. data/website/docs/config.ru +44 -0
  175. data/website/docs/helpers/sidebar_helpers.rb +19 -0
  176. data/website/docs/lib/redirect_to_latest.rb +25 -0
  177. data/website/docs/lib/redirect_v1_docs.rb +26 -0
  178. data/website/docs/source/404.html.erb +7 -0
  179. data/website/docs/source/images/bullet_1.png +0 -0
  180. data/website/docs/source/images/bullet_2.png +0 -0
  181. data/website/docs/source/images/bullet_3.png +0 -0
  182. data/website/docs/source/images/customers.png +0 -0
  183. data/website/docs/source/images/customers_small.png +0 -0
  184. data/website/docs/source/images/footer_background.png +0 -0
  185. data/website/docs/source/images/footer_hashi_logo.png +0 -0
  186. data/website/docs/source/images/footer_vagrant_logo.png +0 -0
  187. data/website/docs/source/images/get_started_background.png +0 -0
  188. data/website/docs/source/images/icon_caution.png +0 -0
  189. data/website/docs/source/images/logo_docs.png +0 -0
  190. data/website/docs/source/images/logo_docs_small.png +0 -0
  191. data/website/docs/source/images/logo_small.png +0 -0
  192. data/website/docs/source/images/logo_vagrant.png +0 -0
  193. data/website/docs/source/images/open_close.png +0 -0
  194. data/website/docs/source/images/search_icon.png +0 -0
  195. data/website/docs/source/images/sidebar_background_docs.png +0 -0
  196. data/website/docs/source/images/sidebar_background_inner.png +0 -0
  197. data/website/docs/source/images/steps_background.png +0 -0
  198. data/website/docs/source/images/vagrant_header_background.png +0 -0
  199. data/website/docs/source/index.html.erb +0 -0
  200. data/website/docs/source/javascripts/backstretch.js +4 -0
  201. data/website/docs/source/javascripts/bootstrap.min.js +7 -0
  202. data/website/docs/source/javascripts/fittext.js +43 -0
  203. data/website/docs/source/javascripts/grid-overlay.js +161 -0
  204. data/website/docs/source/javascripts/jquery.js +2 -0
  205. data/website/docs/source/javascripts/less-1.3.0.min.js +9 -0
  206. data/website/docs/source/javascripts/modernizr.js +1384 -0
  207. data/website/docs/source/javascripts/vagrantup.js +15 -0
  208. data/website/docs/source/layouts/layout.erb +266 -0
  209. data/website/docs/source/stylesheets/_base.less +317 -0
  210. data/website/docs/source/stylesheets/_components.less +74 -0
  211. data/website/docs/source/stylesheets/_footer.less +101 -0
  212. data/website/docs/source/stylesheets/_media-queries.less +452 -0
  213. data/website/docs/source/stylesheets/_mixins.less +174 -0
  214. data/website/docs/source/stylesheets/_nav.less +71 -0
  215. data/website/docs/source/stylesheets/_pages.less +276 -0
  216. data/website/docs/source/stylesheets/_sidebar.less +136 -0
  217. data/website/docs/source/stylesheets/_type.less +36 -0
  218. data/website/docs/source/stylesheets/_variables.less +39 -0
  219. data/website/docs/source/stylesheets/bootstrap.css +5946 -0
  220. data/website/docs/source/stylesheets/vagrantup.less +16 -0
  221. data/website/docs/source/v2/boxes.html.md +78 -0
  222. data/website/docs/source/v2/boxes/format.html.md +32 -0
  223. data/website/docs/source/v2/cli/box.html.md +62 -0
  224. data/website/docs/source/v2/cli/destroy.html.md +20 -0
  225. data/website/docs/source/v2/cli/halt.html.md +19 -0
  226. data/website/docs/source/v2/cli/index.html.md +24 -0
  227. data/website/docs/source/v2/cli/init.html.md +18 -0
  228. data/website/docs/source/v2/cli/package.html.md +43 -0
  229. data/website/docs/source/v2/cli/plugin.html.md +56 -0
  230. data/website/docs/source/v2/cli/provision.html.md +24 -0
  231. data/website/docs/source/v2/cli/reload.html.md +27 -0
  232. data/website/docs/source/v2/cli/resume.html.md +11 -0
  233. data/website/docs/source/v2/cli/ssh.html.md +24 -0
  234. data/website/docs/source/v2/cli/ssh_config.html.md +16 -0
  235. data/website/docs/source/v2/cli/status.html.md +14 -0
  236. data/website/docs/source/v2/cli/suspend.html.md +19 -0
  237. data/website/docs/source/v2/cli/up.html.md +34 -0
  238. data/website/docs/source/v2/debugging.html.md +42 -0
  239. data/website/docs/source/v2/getting-started/boxes.html.md +56 -0
  240. data/website/docs/source/v2/getting-started/index.html.md +43 -0
  241. data/website/docs/source/v2/getting-started/networking.html.md +45 -0
  242. data/website/docs/source/v2/getting-started/project_setup.html.md +38 -0
  243. data/website/docs/source/v2/getting-started/providers.html.md +37 -0
  244. data/website/docs/source/v2/getting-started/provisioning.html.md +75 -0
  245. data/website/docs/source/v2/getting-started/rebuild.html.md +17 -0
  246. data/website/docs/source/v2/getting-started/synced_folders.html.md +42 -0
  247. data/website/docs/source/v2/getting-started/teardown.html.md +41 -0
  248. data/website/docs/source/v2/getting-started/up.html.md +35 -0
  249. data/website/docs/source/v2/index.html.md +10 -0
  250. data/website/docs/source/v2/installation/backwards-compatibility.html.md +35 -0
  251. data/website/docs/source/v2/installation/index.html.md +28 -0
  252. data/website/docs/source/v2/installation/uninstallation.html.md +39 -0
  253. data/website/docs/source/v2/installation/upgrading-from-1-0.html.md +26 -0
  254. data/website/docs/source/v2/installation/upgrading.html.md +20 -0
  255. data/website/docs/source/v2/multi-machine/index.html.md +105 -0
  256. data/website/docs/source/v2/networking/basic_usage.html.md +43 -0
  257. data/website/docs/source/v2/networking/forwarded_ports.html.md +57 -0
  258. data/website/docs/source/v2/networking/index.html.md +40 -0
  259. data/website/docs/source/v2/networking/private_network.html.md +48 -0
  260. data/website/docs/source/v2/networking/public_network.html.md +53 -0
  261. data/website/docs/source/v2/plugins/commands.html.md +116 -0
  262. data/website/docs/source/v2/plugins/configuration.html.md +166 -0
  263. data/website/docs/source/v2/plugins/development-basics.html.md +139 -0
  264. data/website/docs/source/v2/plugins/guest-capabilities.html.md +100 -0
  265. data/website/docs/source/v2/plugins/guests.html.md +99 -0
  266. data/website/docs/source/v2/plugins/hosts.html.md +46 -0
  267. data/website/docs/source/v2/plugins/index.html.md +21 -0
  268. data/website/docs/source/v2/plugins/packaging.html.md +102 -0
  269. data/website/docs/source/v2/plugins/providers.html.md +234 -0
  270. data/website/docs/source/v2/plugins/provisioners.html.md +64 -0
  271. data/website/docs/source/v2/plugins/usage.html.md +58 -0
  272. data/website/docs/source/v2/providers/basic_usage.html.md +67 -0
  273. data/website/docs/source/v2/providers/configuration.html.md +89 -0
  274. data/website/docs/source/v2/providers/custom.html.md +9 -0
  275. data/website/docs/source/v2/providers/default.html.md +22 -0
  276. data/website/docs/source/v2/providers/index.html.md +23 -0
  277. data/website/docs/source/v2/providers/installation.html.md +11 -0
  278. data/website/docs/source/v2/provisioning/ansible.html.md +144 -0
  279. data/website/docs/source/v2/provisioning/basic_usage.html.md +67 -0
  280. data/website/docs/source/v2/provisioning/chef_client.html.md +109 -0
  281. data/website/docs/source/v2/provisioning/chef_solo.html.md +156 -0
  282. data/website/docs/source/v2/provisioning/index.html.md +28 -0
  283. data/website/docs/source/v2/provisioning/puppet_agent.html.md +70 -0
  284. data/website/docs/source/v2/provisioning/puppet_apply.html.md +114 -0
  285. data/website/docs/source/v2/provisioning/shell.html.md +88 -0
  286. data/website/docs/source/v2/synced-folders/basic_usage.html.md +53 -0
  287. data/website/docs/source/v2/synced-folders/index.html.md +17 -0
  288. data/website/docs/source/v2/synced-folders/nfs.html.md +53 -0
  289. data/website/docs/source/v2/vagrantfile/index.html.md +75 -0
  290. data/website/docs/source/v2/vagrantfile/machine_settings.html.md +84 -0
  291. data/website/docs/source/v2/vagrantfile/ssh_settings.html.md +61 -0
  292. data/website/docs/source/v2/vagrantfile/vagrant_settings.html.md +19 -0
  293. data/website/docs/source/v2/vagrantfile/version.html.md +64 -0
  294. data/website/docs/source/v2/virtualbox/boxes.html.md +71 -0
  295. data/website/docs/source/v2/virtualbox/configuration.html.md +63 -0
  296. data/website/docs/source/v2/virtualbox/index.html.md +21 -0
  297. data/website/docs/source/v2/virtualbox/usage.html.md +12 -0
  298. data/website/docs/source/v2/vmware/boxes.html.md +107 -0
  299. data/website/docs/source/v2/vmware/configuration.html.md +91 -0
  300. data/website/docs/source/v2/vmware/index.html.md +30 -0
  301. data/website/docs/source/v2/vmware/installation.html.md +40 -0
  302. data/website/docs/source/v2/vmware/known-issues.html.md +21 -0
  303. data/website/docs/source/v2/vmware/usage.html.md +27 -0
  304. data/website/docs/source/v2/why-vagrant/index.html.md +46 -0
  305. data/website/www/.buildpacks +2 -0
  306. data/website/www/Gemfile +15 -0
  307. data/website/www/Gemfile.lock +123 -0
  308. data/website/www/Procfile +1 -0
  309. data/website/www/README.md +26 -0
  310. data/website/www/config.rb +88 -0
  311. data/website/www/config.ru +39 -0
  312. data/website/www/helpers/sidebar_helpers.rb +12 -0
  313. data/website/www/lib/legacy_redirect.rb +32 -0
  314. data/website/www/source/404.html.erb +11 -0
  315. data/website/www/source/_sidebar_about.erb +5 -0
  316. data/website/www/source/_sidebar_blog.erb +11 -0
  317. data/website/www/source/_sidebar_support.html.erb +6 -0
  318. data/website/www/source/about.html.markdown +16 -0
  319. data/website/www/source/blog.html.erb +34 -0
  320. data/website/www/source/blog/2013-09-16-test.html.markdown +26 -0
  321. data/website/www/source/blog_feed.xml.builder +23 -0
  322. data/website/www/source/images/bullet_1.png +0 -0
  323. data/website/www/source/images/bullet_2.png +0 -0
  324. data/website/www/source/images/bullet_3.png +0 -0
  325. data/website/www/source/images/customers.png +0 -0
  326. data/website/www/source/images/customers_small.png +0 -0
  327. data/website/www/source/images/footer_background.png +0 -0
  328. data/website/www/source/images/footer_hashi_logo.png +0 -0
  329. data/website/www/source/images/footer_vagrant_logo.png +0 -0
  330. data/website/www/source/images/get_started_background.png +0 -0
  331. data/website/www/source/images/icon_caution.png +0 -0
  332. data/website/www/source/images/logo_docs.png +0 -0
  333. data/website/www/source/images/logo_docs_small.png +0 -0
  334. data/website/www/source/images/logo_small.png +0 -0
  335. data/website/www/source/images/logo_vagrant.png +0 -0
  336. data/website/www/source/images/open_close.png +0 -0
  337. data/website/www/source/images/search_icon.png +0 -0
  338. data/website/www/source/images/sidebar_background_docs.png +0 -0
  339. data/website/www/source/images/sidebar_background_inner.png +0 -0
  340. data/website/www/source/images/sponsors/fastly.png +0 -0
  341. data/website/www/source/images/sponsors/kiip.png +0 -0
  342. data/website/www/source/images/sponsors/softlayer.jpg +0 -0
  343. data/website/www/source/images/sponsors/typekit.png +0 -0
  344. data/website/www/source/images/steps_background.png +0 -0
  345. data/website/www/source/images/vagrant_header_background.png +0 -0
  346. data/website/www/source/images/vagrant_vmware_background.png +0 -0
  347. data/website/www/source/index.html.erb +109 -0
  348. data/website/www/source/javascripts/backstretch.js +4 -0
  349. data/website/www/source/javascripts/bootstrap.min.js +7 -0
  350. data/website/www/source/javascripts/fittext.js +43 -0
  351. data/website/www/source/javascripts/grid-overlay.js +161 -0
  352. data/website/www/source/javascripts/jquery.js +2 -0
  353. data/website/www/source/javascripts/less-1.3.0.min.js +9 -0
  354. data/website/www/source/javascripts/modernizr.js +1384 -0
  355. data/website/www/source/javascripts/vagrantup.js +58 -0
  356. data/website/www/source/layouts/blog_post.erb +42 -0
  357. data/website/www/source/layouts/inner.erb +34 -0
  358. data/website/www/source/layouts/layout.erb +107 -0
  359. data/website/www/source/sponsors.html.erb +23 -0
  360. data/website/www/source/stylesheets/_base.less +326 -0
  361. data/website/www/source/stylesheets/_components.less +74 -0
  362. data/website/www/source/stylesheets/_footer.less +101 -0
  363. data/website/www/source/stylesheets/_media-queries.less +549 -0
  364. data/website/www/source/stylesheets/_mixins.less +175 -0
  365. data/website/www/source/stylesheets/_modules.less +37 -0
  366. data/website/www/source/stylesheets/_nav.less +74 -0
  367. data/website/www/source/stylesheets/_pages.less +467 -0
  368. data/website/www/source/stylesheets/_sidebar.less +137 -0
  369. data/website/www/source/stylesheets/_type.less +36 -0
  370. data/website/www/source/stylesheets/_variables.less +39 -0
  371. data/website/www/source/stylesheets/bootstrap.css +5946 -0
  372. data/website/www/source/stylesheets/vagrantup.less +17 -0
  373. data/website/www/source/support.html.erb +25 -0
  374. data/website/www/source/support/community.html.erb +28 -0
  375. data/website/www/source/support/professional.html.erb +17 -0
  376. data/website/www/source/vmware/eula.html.md +21 -0
  377. data/website/www/source/vmware/index.html.erb +185 -0
  378. data/website/www/source/vmware/privacy-policy.html.md +71 -0
  379. data/website/www/source/vmware/terms-of-service.html.md +50 -0
  380. metadata +436 -186
@@ -0,0 +1,17 @@
1
+ /*
2
+ /|\/|\/|\/|\/|\/|\
3
+ v a g r a n t u p
4
+ \|/\|/\|/\|/\|/\|/
5
+ */
6
+
7
+ @import '_variables';
8
+ @import '_type';
9
+ @import '_mixins';
10
+ @import '_base';
11
+ @import '_nav';
12
+ @import '_components';
13
+ @import '_modules';
14
+ @import '_sidebar';
15
+ @import '_pages';
16
+ @import '_footer';
17
+ @import '_media-queries';
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: "inner"
3
+ sidebar_current: "support"
4
+ sidebar_template: "support"
5
+ sidebar_title: "Support"
6
+ ---
7
+ <h2>Support</h2>
8
+ <p>
9
+ If you're having trouble using Vagrant, want general advice,
10
+ think you may have found a bug, or want to get in touch with
11
+ a human being for any reason, there are various support channels
12
+ available.
13
+ </p>
14
+
15
+ <p>
16
+ <a href="/support/professional.html">Professional support packages</a>
17
+ provide you with direct access to the people creating Vagrant ready to
18
+ help you with any problems or questions you may have.
19
+ </p>
20
+
21
+ <p>
22
+ <a href="/support/community.html">Community support</a> is available
23
+ via the mailing list or IRC. Thousands of helpful Vagrant users, including
24
+ the developers of Vagrant, read messages in these channels.
25
+ </p>
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: "inner"
3
+ sidebar_current: "support-community"
4
+ sidebar_template: "support"
5
+ sidebar_title: "Support"
6
+ ---
7
+ <h2>Community Support</h2>
8
+
9
+ <p>Vagrant has a large and active community of individuals who
10
+ are more than happy to assist newcomers and veterans alike.</p>
11
+
12
+ <p>
13
+ <strong>IRC:</strong> <code>#vagrant</code> on Freenode. IRC
14
+ provides a real-time chat environment for getting help. Note that
15
+ the quality and availability of assistance depends largely on the
16
+ time of day and who is currently active in the channel.
17
+ </p>
18
+
19
+ <p>
20
+ <strong>Mailing list:</strong> <a href="http://groups.google.com/group/vagrant-up">Vagrant Google Group</a>. The mailing list has thousands of people who engage
21
+ in active discussions daily. A response can take up to a few days
22
+ here, but your inquiries will be seen by many more individuals.
23
+ </p>
24
+ </p>
25
+
26
+ <p>
27
+ <strong>Bug Tracker:</strong> <a href="https://github.com/mitchellh/vagrant/issues">Issue Tracker on GitHub</a>. This is only for reporting bugs found, please do not use this as a means for support.
28
+ </p>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: "inner"
3
+ sidebar_current: "support-professional"
4
+ sidebar_template: "support"
5
+ sidebar_title: "Support"
6
+ ---
7
+ <h2>Professional Support</h2>
8
+
9
+ <p>Professional support packages are on the way. If you're interested
10
+ in hearing more, please contact <a href="mailto:biz@hashicorp.com">biz@hashicorp.com</a>.
11
+
12
+ <p>
13
+ If you purchased the <a href="http://www.vagrantup.com/vmware">VMware Fusion provider</a>,
14
+ you're eligible for limited basic support via email by contacting
15
+ <a href="mailto:support@hashicorp.com">support@hashicorp.com</a>. Response
16
+ times are typically within 48 hours, but can be up to a week.
17
+ </p>
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: "inner"
3
+ ---
4
+
5
+ # EULA
6
+
7
+ 1. Grant of License and Restrictions. Subject to the terms hereof, payment of all fees, and any applicable user/use limitations, Company grants Licensee a nonsublicensable, nonexclusive, right to use the current version of the licensed product in object code form only. (“Product”) only in accordance with Company’s applicable user documentation and only for up to the number of developers (“Developers”) specified on the order form and/or download page, provided each Developer may use the Product on two (2) machines. Except for one copy solely for back-up purposes, Licensee may possess only the number of copies of any Product as has been expressly authorized by Company); Company retains ownership of all copies and Licensee will maintain the copyright notice and any other notices that appear on the Product on any copies and any media. Licensee will not (and will not allow any third party to) (i) reverse engineer or attempt to discover any source code or underlying ideas or algorithms of any Product (except to the extent that applicable law prohibits reverse engineering restrictions), (ii) provide, lease, lend, disclose, use for timesharing or service bureau purposes, or otherwise use or allow others to use for the benefit of any third party, any Product (except as expressly and specifically authorized by Company), (iii) possess or use any Product, or allow the transfer, transmission, export, or re-export of any Product or portion thereof in violation of any export control laws or regulations administered by the U.S. Commerce Department, U.S. Treasury Department’s Office of Foreign Assets Control, or any other government agency, (iv) disclose to any third party any benchmarking or comparative study involving any Product or (v) modify any Product. Prior to disposing of any media or apparatus containing any part of the Product, Licensee shall completely destroy any Product contained therein. All the limitations and restrictions on Products in this Agreement also apply to documentation and screens. Further, a license granted on an evaluation basis may be used for purposes of evaluation for a full license only, and not for any productive use. LICENSEE ACKNOWLEDGES THAT THE PRODUCT MAY INCLUDE FEATURES TO PREVENT USE AFTER THE APPLICABLE LICENSE PERIOD AND/OR USE INCONSISTENT HEREWITH. Licensee acknowledges that Product may be distributed alongside or contain or use certain third party software (“Third Party Software”). THIRD PARTY SOFTWARE IS (IN ADDITION TO THE TERMS AND CONDITIONS OF THIS AGREEMENT), SUBJECT TO AND GOVERNED BY (AND LICENSEE AGREES TO, AND WILL INDEMNIFY COMPANY FOR NONCOMPLIANCE WITH) THE RESPECTIVE LICENSES FOR THE THIRD PARTY SOFTWARE AVAILABLE AT http://www.vagrantup.com.
8
+
9
+ 2. Fees and Payment. Within thirty days after first receipt of the Product or the date(s) otherwise expressly agreed by Company, Licensee shall pay Company all applicable fees for any authorized copies or uses of Product (if any) and/or such other fees as have been expressly agreed to by Company (“License Fees”). In addition, without limiting Company’s remedies, if Licensee makes or uses copies, or has users/uses, that are not authorized hereunder, it will so report to Company and will pay any applicable additional license equal to Company’s then current standard fees for the license of such extra copies and users/uses (from time to time upon request, Company will be entitled to audit or have audited all systems and records relevant to assure compliance with the foregoing; any audit showing noncompliance will be at Licensee’s expense). Licensee shall pay Company any upgrade fees as required by the Company in connection with major version releases. Any payments more than thirty (30) days overdue will bear a late payment fee of 1.5% per month, or, if lower, the maximum rate allowed by law. In addition, Licensee will pay all taxes, shipping, duties, withholdings, backup withholding and the like; when Company has the legal obligation to pay or collect such taxes, the appropriate amount shall paid by Licensee directly to Company.
10
+
11
+ 3. Termination. All licenses will terminate thirty days (ten in the case of non-payment and immediately in the case of a breach of Section 1) after notice of any breach of this Agreement by Licensee that remains uncured at the end of such notice period. A license will also terminate upon the expiration of any applicable license period specified for the applicable Product on the Company price list or such other license period as have been expressly agreed to by Company, provided that in any case a free evaluation license will have a license period of not more than ninety (90) days. Upon any termination, Licensee shall immediately cease all use of all affected Products and return or destroy all copies of all affected Products and all portions thereof and so certify to Company. Except as otherwise expressly provided herein, the terms hereof shall survive any termination. Termination is not an exclusive remedy and all other remedies will be available whether or not termination occurs.
12
+
13
+ 4. Embedded Reporting / Compliance Routine; Data Access and Use. Licensee acknowledges that Products may contain automated reporting routines that will automatically identify and analyze certain aspects of use and performance of Products and/or the systems on which they are installed, as well as the operator and operating environment (including problems and issues that arise in connection therewith), and provide reporting to Company. Provided it does not identify Licensee, Company will be free to use for development, diagnostic and corrective purposes any data and information it so collects relating to diagnosis, problems, systems, performance, use or functionality, and may allow others to do so.
14
+
15
+ 5. Indemnification. Except in the case of a free evaluation license, Company shall hold Licensee harmless from liability to third parties resulting from infringement by a Product of any United States patent issued sixty (60) days or more before delivery of such Product or any copyright or misappropriation of any trade secret, provided Company is promptly notified of any and all threats, claims and proceedings related thereto and given reasonable assistance and the opportunity to assume sole control over defense and settlement; Company will not be responsible for any settlement it does not approve. The foregoing obligations do not apply with respect to a Product or portions or components thereof (i) not created by Company (e.g., Third Party Software), (ii) made in whole or in part in accordance to Licensee specifications, (iii) that are modified after delivery by Company, (iv) combined with other products, processes or materials where the alleged infringement relates to such combination, (v) where Licensee continues allegedly infringing activity after being notified thereof or after being informed of modifications that would have avoided the alleged infringement, or (vi) where Licensee’s use of such Product is not strictly in accordance herewith. Licensee will indemnify Company from all damages, costs, settlements, attorneys’ fees and expenses related to (I) any claim of infringement or misappropriation excluded from Company’s indemnity obligation by the preceding sentence, or (II) any other claim in connection with the Product or the use or distribution thereof.
16
+
17
+ 6. Warranty Disclaimer. ALL PRODUCTS ARE PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND FROM ANYONE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. FURTHER, COMPANY DOES NOT WARRANT RESULTS OF USE OR THAT THE PRODUCTS ARE BUG FREE OR THAT THE PRODUCT’S USE WILL BE UNINTERRUPTED. SOME STATES DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.
18
+
19
+ 7. Limitation of Liability. NOTWITHSTANDING ANYTHING ELSE HEREIN OR OTHERWISE, AND EXCEPT FOR BODILY INJURY, NEITHER COMPANY NOR ANY LICENSOR SHALL BE LIABLE OR OBLIGATED WITH RESPECT TO THE SUBJECT MATTER HEREOF OR UNDER ANY CONTRACT, NEGLIGENCE, STRICT LIABILITY OR OTHER LEGAL OR EQUITABLE THEORY (I) FOR ANY AMOUNTS IN EXCESS IN THE AGGREGATE OF THE FEES PAID TO IT HERE¬UNDER WITH RESPECT TO THE APPLICABLE PRODUCT DURING THE SIX MONTH PERIOD PRIOR TO THE CAUSE OF ACTION OR (II) FOR ANY COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES OR RIGHTS; (III) FOR ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES; (IV) FOR INTERRUPTION OF USE OR LOSS OR CORRUPTION OF DATA; OR (V) FOR ANY MATTER BEYOND ITS REASONABLE CONTROL. THE PRODUCT IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE WHERE THE FAILURE OF THE PRODUCT COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SIGNIFICANT PHYSICAL OR ENVIRONMENTAL DAMAGE (“HIGH RISK ACTIVITIES”). USE OF THE PRODUCT IN HIGH RISK ACTIVITIES IS NOT AUTHORIZED. THE PARTIES AGREE THAT THIS SECTION 7 REPRESENTS A REASONABLE ALLOCATION OF RISK AND THAT LICENSOR WOULD NOT PROCEED IN THE ABSENCE OF SUCH ALLOCATION. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION AND EXCLUSION MAY NOT APPLY TO YOU.
20
+
21
+ 8. Miscellaneous. Neither this arrangement nor the licenses granted hereunder are assignable or transferable by Licensee (and any attempt to do so shall be void). Company may assign this Agreement and/or any of its rights and obligations hereunder without consent. The provisions hereof are for the benefit of the parties only and not for any other person or entity. Any notice, report, approval, authorization, agreement or consent required or permitted hereunder shall be in writing; notices shall be sent to the address the applicable party has or may provide by written notice or, if there is no such address, the most recent address the party giving notice can locate using reasonable efforts. No failure or delay in exercising any right hereunder will operate as a waiver thereof, nor will any partial exercise of any right or power hereunder preclude further exercise. If any provision shall be adjudged by any court of competent jurisdiction to be unenforceable or invalid, that provision shall be limited or eliminated to the minimum extent necessary so that this arrangement shall otherwise remain in full force and effect and enforceable. This agreement shall be deemed to have been made in, and shall be construed pursuant to the laws of the State of California and the United States without regard to conflicts of laws provisions thereof, and without regard to the United Nations Convention on the International Sale of Goods or the Uniform Computer Information Transactions Act. This is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements and communications relating to the subject matter hereof and any waivers or amendments shall be effective only if made in writing; however, any pre-printed or standard terms of any purchase order, confirmation, or similar form, even if signed by the parties after the effectiveness hereof, shall have no force or effect. The substantially prevailing party in any action to enforce this agreement will be entitled to recover its attorney’s fees and costs in connection with such action. As defined in FAR section 2.101, DFAR section 252.227-7014(a)(1) and DFAR section 252.227-7014(a)(5) or otherwise, all Products and accompanying documentation provided by Company are “commercial items,” “commercial computer software” and/or “commercial computer software documentation.” Consistent with DFAR section 227.7202 and FAR section 12.212, any use, modification, reproduction, release, performance, display, disclosure or distribution thereof by or for the U.S. Government shall be governed solely by these terms and shall be prohibited except to the extent expressly permitted by these terms.
@@ -0,0 +1,185 @@
1
+ ---
2
+ page_title: "VMware Vagrant Environments"
3
+ ---
4
+
5
+ <div class="page vmware">
6
+
7
+ <section class="hero vmware">
8
+ <div class="container"> <!-- required by bootstrap -->
9
+ <div class="hero-content">
10
+
11
+ <div class="row">
12
+ <div class="span8 offset2">
13
+ <hgroup>
14
+ <h1>Supercharged<br>Vagrant<br>environments.</h1>
15
+ <h2>Use Vagrant with VMware Fusion or Workstation for</h2>
16
+ <h2>improved stability, performance, and support.</h2>
17
+ </hgroup>
18
+ </div> <!-- /span -->
19
+ </div> <!-- row -->
20
+
21
+ <div class="row">
22
+ <a href="#learn-more">
23
+ <div class="button span3 offset3">
24
+ <span>learn more</span>
25
+ </div> <!-- /span -->
26
+ </a>
27
+
28
+ <a href="#buy-now">
29
+ <div id="buy-now-button" class="button button span3">
30
+ <span>buy now</span>
31
+ </div> <!-- /span -->
32
+ </a>
33
+ </div> <!-- /row -->
34
+
35
+ </div> <!-- hero-content -->
36
+ </div> <!-- container -->
37
+ </section> <!-- hero -->
38
+
39
+ <a class="anchor" name="learn-more"></a>
40
+ <section class="why">
41
+ <div class="container">
42
+ <div class="row">
43
+ <h1 class="span12">
44
+ VMware Makes Your Life Better
45
+ </h1>
46
+ </div> <!-- /row -->
47
+
48
+ <div class="reasons">
49
+ <div class="row">
50
+ <div class="span6">
51
+ <h2>Same Vagrant Workflow</h2>
52
+
53
+ <p>
54
+ "vagrant up," "vagrant ssh," "vagrant destroy." The same Vagrant
55
+ workflow you know and love. Vastly improve your work environments
56
+ without having to re-educate your team.
57
+ </p>
58
+ </div>
59
+
60
+ <div class="span6">
61
+ <h2>Unparalleled Performance</h2>
62
+
63
+ <p>
64
+ VMware <em>screams</em>, with industry-leading performance<sup>1</sup>
65
+ based on the same hypervisor technology in use by 98% of the Fortune 500.
66
+ Get all the performance gains paired with the ease of use of Vagrant.
67
+ </p>
68
+ </div>
69
+ </div> <!-- row -->
70
+
71
+ <div class="row">
72
+ <div class="span6">
73
+ <h2>Rock Solid Stability</h2>
74
+
75
+ <p>
76
+ The VMware hypervisor has been in production use since 1999.
77
+ All their products share the same, robust core that powers
78
+ the world's largest organizations. With the VMware provider, Vagrant
79
+ now runs on the strength of the same foundation.
80
+ </p>
81
+ </div>
82
+
83
+ <div class="span6">
84
+ <h2>Uncompromised Portability</h2>
85
+
86
+ <p>
87
+ VMware virtual machines run on Mac OS X, Windows, and Linux.
88
+ Vagrant provides support for both VMware Fusion (Mac OS X) and
89
+ VMware Workstation (Linux and Windows), which are able to run
90
+ the same virtual machines across multiple platforms.
91
+ </p>
92
+ </div>
93
+ </div>
94
+
95
+ <div class="row">
96
+ <div class="span6">
97
+ <h2>Professional Support</h2>
98
+
99
+ <p>
100
+ Every purchase of the Vagrant VMware provider comes with
101
+ direct email support. VMware products themselves are eligible for
102
+ professional support from VMware. Someone always has your back
103
+ in case things aren't working as well as they should be.
104
+ </p>
105
+ </div>
106
+
107
+ <div class="span6">
108
+ <h2>&hearts; Open Source</h2>
109
+
110
+ <p>
111
+ Vagrant is free and open source. While the VMware providers
112
+ are not, the revenue is used to continue to develop, support,
113
+ and grow Vagrant and the community around it.
114
+ </p>
115
+ </div>
116
+ </div>
117
+
118
+ <div class="row footnotes">
119
+ <div class="span12">
120
+ <p>
121
+ <sup>1</sup>According to <a href="http://www.macworld.com/article/1164817/the_best_way_to_run_windows_on_your_mac.html">this article in MacWorld</a> vs. Parallels Desktop 7
122
+ </p>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div> <!-- container -->
127
+ </section>
128
+
129
+ <a class="anchor" name="buy-now"></a>
130
+ <section class="pricing">
131
+ <div class="container">
132
+ <div class="row">
133
+ <div class="span12">
134
+
135
+ <h1 class="all-caps">
136
+ Pricing & Purchase
137
+ </h1>
138
+ </div> <!-- /span -->
139
+ </div> <!-- /row -->
140
+ <div class="row">
141
+ <div class="span12">
142
+ <div class="buy-form">
143
+ <p>
144
+ <strong>Price:</strong> $79 per seat.
145
+ </p>
146
+ <p>
147
+ A single seat can be used on two computers (such as a desktop
148
+ and a laptop) for a single person. The license is valid forever
149
+ with access to free maintenance updates. Future major updates may require
150
+ an upgrade fee.
151
+ </p>
152
+ <p>
153
+ Choose the provider you want below and enter the number of seats
154
+ you wish to purchase. Then, click the buy button and complete the
155
+ flow and instructions to install and download the software will
156
+ be emailed to you.
157
+ </p>
158
+ <div class="form">
159
+ <div class="inputs products">
160
+ <label class="radio">
161
+ <input type="radio" name="product" value="fusion" checked>
162
+ VMware Fusion 5 or 6 (Mac OS X)
163
+ </label>
164
+ <label class="radio">
165
+ <input type="radio" name="product" value="workstation">
166
+ VMware Workstation 9 or 10 (Linux and Windows)
167
+ </label>
168
+ </div>
169
+ <div class="inputs input-append">
170
+ <input class="text" id="seats" type="text" value="1">
171
+ <button class="btn" type="button" id="buy-fusion">Buy Fusion Licenses Now</button>
172
+ </div>
173
+ </div>
174
+
175
+ <div class="subtext">
176
+ The provider license does not include a license to the VMware
177
+ software, which must be purchased separately. If you're buying over 100 licenses, contact <a href="mailto:biz@hashicorp.com">biz@hashicorp.com</a> for volume pricing.
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div> <!-- /row -->
182
+ </div> <!-- /get-started -->
183
+ </section>
184
+
185
+ </div> <!-- /.page.home -->
@@ -0,0 +1,71 @@
1
+ ---
2
+ layout: "inner"
3
+ ---
4
+
5
+ # HASHICORP, INC. PRIVACY POLICY
6
+
7
+ We at HashiCorp, Inc. (“Company,” “we,” “us,” “our”) know that our users (“you,” “your”) care about how your personal information is used and shared, and we take your privacy seriously. Please read the following to learn more about our Privacy Policy. By visiting or using the Website or Services in any manner, you acknowledge that you accept the practices and policies outlined in this Privacy Policy, and you hereby consent that we will collect, use, and share your information in the following ways. Any capitalized terms used herein without definition shall have the meaning given to them in the Company Terms of Use.
8
+
9
+ I. WHAT DOES THIS PRIVACY POLICY COVER?
10
+
11
+ This Privacy Policy covers our treatment of personally identifiable information (“Personal Information”) that we gather when you are accessing or using our Services. This policy does not apply to the practices of companies that we do not own or control, or to individuals that we do not employ or manage.
12
+
13
+ We do not knowingly collect or solicit personal information from anyone under the age of 13 or knowingly allow such persons to register for the Services (as that term is defined in our Terms of Use). If you are under 13, please do not attempt to register for the Services or send any information about yourself to us, including your name, address, telephone number, or email address. No one under age 13 may provide any personal information to us or on the Services. In the event that we learn that we have collected personal information from a child under age 13 without verification of parental consent, we will delete that information as quickly as possible. If you believe that we might have any information from or about a child under 13, please contact us at biz@hashicorp.com.
14
+
15
+ We gather various types of Personal Information from our users, as explained more fully below. We may use this Personal Information to personalize and improve our services, to allow our users to set up a user account and profile, to contact users, to fulfill your requests for certain products and services, to analyze how users utilize the Services, and as otherwise set forth in this Privacy Policy. We may share certain types of Personal Information with third parties, as described below.
16
+
17
+ II. WHAT INFORMATION DOES COMPANY COLLECT?
18
+
19
+ A. Information You Provide to Us:
20
+
21
+ We receive and store any information you knowingly provide to us. For example, we collect Personal Information such as your name, email address, and browser information,. You can choose not to provide us with certain information, but then you may not be able to register with us or to take advantage of some of our features. We may anonymize your Personal Information so that you cannot be individually identified, and provide that information to our partners.
22
+
23
+ If you have provided us with a means of contacting you, we may use such means to communicate with you. For example, we may send you promotional offers on behalf of other businesses, or communicate with you about your use of the Services. Also, we may receive a confirmation when you open a message from us. This confirmation helps us make our communications with you more interesting and improve our services. If you do not want to receive communications from us, please indicate your preference by emailing us at biz@hashicorp.com. Please note that if you do not want to receive legal notices from us, those legal notices will still govern your use of the Services, and you are responsible for reviewing such legal notices for changes.
24
+
25
+ B. Information Collected Automatically:
26
+
27
+ • Whenever you interact with our Services, we automatically receive and record information on our server logs from your browser including your IP address, “cookie” information, and the page you requested. “Cookies” are identifiers we transfer to your computer or mobile device that allow us to recognize your browser or mobile device and tell us how and when pages and features in our Services are visited and by how many people. You may be able to change the preferences on your browser or mobile device to prevent or limit your computer or device’s acceptance of cookies, but this may prevent you from taking advantage of some of our features. Our advertising partners may also transmit cookies to your computer or device, when you click on ads that appear on the Services. Also, if you click on a link to a third party website, such third party may also transmit cookies to you. This Privacy Policy does not cover the use of cookies by any third parties.
28
+
29
+ • When we collect usage information (such as the numbers and frequency of visitors to the Website), we only use this data in aggregate form, and not in a manner that would identify you personally. For example, this aggregate data tells us how often users use parts of the Services, so that we can make the Services appealing to as many users as possible. We may also provide this aggregate information to our partners; our partners may use such information to understand how often and in what ways people use our Services, so that they, too, can provide you with an optimal experience. We never disclose aggregate information to a partner in a manner that would identify you personally.
30
+
31
+ III. WILL COMPANY SHARE ANY OF THE PERSONAL INFORMATION IT RECEIVES?
32
+
33
+ We neither rent nor sell your Personal Information in personally identifiable form to anyone. However, we do share your Personal Information with third parties as described in Section II and in this Section:
34
+
35
+ A. Affiliated Businesses and Third Party Websites We Do Not Control: In certain situations, businesses or third party websites we’re affiliated with may sell items or provide services to you through the Services (either alone or jointly with us). You can recognize when an affiliated business is associated with such a transaction or service, and we will share your Personal Information with that affiliated business only to the extent that it is related to such transaction or service. One such service may include the ability for you to automatically transmit Third Party Account Information to your Services profile or to automatically transmit information in your Services profile to your third party account. We have no control over the policies and practices of third party websites or businesses as to privacy or anything else, so if you choose to take part in any transaction or service relating to an affiliated website or business, please review all such business’ or websites’ policies.
36
+
37
+ B. Agents: We employ other companies and people to perform tasks on our behalf and need to share your information with them to provide products or services to you. Unless we tell you differently, our agents do not have any right to use the Personal Information we share with them beyond what is necessary to assist us.
38
+
39
+ C. User Profiles and Submissions: Certain user profile information, including without limitation a user’s name, location, and any video or image content that such user has uploaded to the Services, may be displayed to other users to facilitate user interaction within the Services or address your request for Company’s services. Your account privacy settings allow you to limit the other users who can see the Personal Information in your user profile and/or what information in your user profile is visible to others. Any content you upload to your public user profile, along with any Personal Information or content that you voluntarily disclose online in a manner other users can view (on discussion boards, in messages and chat areas, etc.) becomes publicly available, and can be collected and used by others. Your user name may also be displayed to other users if and when you send messages or comments or upload images or videos through the Services and other users can contact you through messages and comments.
40
+
41
+ D. Business Transfers: We may choose to buy or sell assets. In these types of transactions, customer information is typically one of the business assets that would be transferred. Also, if we (or our assets) are acquired, or if we go out of business, enter bankruptcy, or go through some other change of control, Personal Information would be one of the assets transferred to or acquired by a third party.
42
+
43
+ E. Protection of Company and Others: We reserve the right to access, read, preserve, and disclose any information that we reasonably believe is necessary to comply with law or court order; enforce or apply our conditions of use and other agreements; or protect the rights, property, or safety of Company, our employees, our users, or others. This includes exchanging information with other companies and organizations for fraud protection and credit risk reduction.
44
+
45
+ F. With Your Consent: Except as set forth above, you will be notified when your Personal Information may be shared with third parties in personally identifiable form, and will be able to prevent the sharing of this information.
46
+
47
+ IV. IS PERSONAL INFORMATION ABOUT ME SECURE?
48
+
49
+ Your account is protected by a password for your privacy and security. You must prevent unauthorized access to your account and Personal Information by selecting and protecting your password appropriately and limiting access to your computer or device and browser by signing off after you have finished accessing your account.
50
+
51
+ We endeavor to protect the privacy of your account and other Personal Information we hold in our records, but we cannot guarantee complete security. Unauthorized entry or use, hardware or software failure, and other factors, may compromise the security of user information at any time.
52
+ The Services may contain links to other sites. We are not responsible for the privacy policies and/or practices on other sites. When following a link to another site you should read that site’s privacy policy.
53
+
54
+ V. WHAT PERSONAL INFORMATION CAN I ACCESS?
55
+
56
+ You may access, edit, or delete account information by emailing us at biz@hashicorp.com.
57
+
58
+ The information you can view, update, and delete may change as the Services change. If you have any questions about viewing or updating information we have on file about you, please contact us at biz@hashicorp.com. Under California Civil Code Sections 1798.83-1798.84, California residents are entitled to ask us for a notice identifying the categories of Personal Information which we share with our affiliates and/or third parties for marketing purposes, and providing contact information for such affiliates and/or third parties. If you are a California resident and would like a copy of this notice, please submit a written request to: biz@hashicorp.com.
59
+
60
+ VI. WHAT CHOICES DO I HAVE?
61
+
62
+ • You can always opt not to disclose information to use, but keep in mind some information may be needed to register with us or to take advantage of some of our special features.
63
+ • You may be able to add, update, or delete information as explained in Section V above. When you update information, however, we may maintain a copy of the unrevised information in our records. You may request deletion of your account by emailing biz@hashicorp.com. Please note that some information may remain in our records after your deletion of such information from your account. We may use any aggregated data derived from or incorporating your Personal Information after you update or delete it, but not in a manner that would identify you personally.
64
+
65
+ VII. CHANGES TO THIS PRIVACY POLICY
66
+ We may amend this Privacy Policy from time to time. Use of information we collect now is subject to the Privacy Policy in effect at the time such information is used. If we make changes in the way we use Personal Information, we will notify you by posting an announcement on our Website or sending you a message. You are bound by any changes to the Privacy Policy when you use the Services after such changes have been first posted.
67
+
68
+ VIII. QUESTIONS OR CONCERNS
69
+ If you have any questions or concerns regarding our privacy policies, please send us a detailed message to biz@hashicorp.com, and we will try to resolve your concerns.
70
+
71
+ Effective Date: March, 1 2013
@@ -0,0 +1,50 @@
1
+ ---
2
+ layout: "inner"
3
+ ---
4
+
5
+ # TERMS OF USE
6
+
7
+ PLEASE READ THESE TERMS OF USE (“AGREEMENT”) CAREFULLY BEFORE USING THE SERVICES OFFERED BY HASHICORP, INC. (“COMPANY”). BY VISITING THE WEBSITES OR USING THE SERVICES IN ANY MANNER, YOU AGREE THAT YOU HAVE READ AND AGREE TO BE BOUND BY AND A PARTY TO THE TERMS AND CONDITIONS OF THIS AGREEMENT TO THE EXCLUSION OF ALL OTHER TERMS. IF THE TERMS OF THIS AGREEMENT ARE CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY LIMITED TO SUCH TERMS. IF YOU DO NOT UNCONDITIONALLY AGREE TO ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, YOU HAVE NO RIGHT TO USE THE WEBSITE OR SERVICES. USE OF COMPANY’S SERVICES IS EXPRESSLY CONDITIONED UPON YOUR ASSENT TO ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT, TO THE EXCLUSION OF ALL OTHER TERMS.
8
+
9
+ 1. ACCESS TO THE SERVICES. The hashicorp.com and vagrantup.com website and domain name and any other linked pages, features, content, or application services (including without limitation any mobile application services) offered from time to time by Company in connection therewith (collectively, the “Website”) are owned and operated by Company. Subject to the terms and conditions of this Agreement, Company may offer to provide certain services, as described more fully on the Website, and that have been selected by you (together with the Website, the “Services”), solely for your own use, and not for the use or benefit of any third party. The term “Services” includes, without limitation, use of the Website, any service Company performs for you and the Content (as defined below) offered by Company on the Website. Company may change, suspend or discontinue the Services at any time, including the availability of any feature, database, or Content. Company may also impose limits on certain features and services or restrict your access to parts or all of the Services without notice or liability. Company reserves the right, in its sole discretion, to modify this Agreement at any time by posting a notice on the Website, or by sending you a notice. You shall be responsible for reviewing and becoming familiar with any such modifications. Your use of the Services following such notification constitutes your acceptance of the terms and conditions of this Agreement as modified.
10
+
11
+ Company does not knowingly collect or solicit personal information from anyone under the age of 13 or knowingly allow such persons to register for the Services. If you are under 13, please do not attempt to register for the Services or send any information about yourself to us, including your name, address, telephone number, or email address. No one under age 13 may provide any personal information to Company or on the Services. In the event that we learn that we have collected personal information from a child under age 13 without verification of parental consent, we will delete that information as quickly as possible. If you believe that we might have any information from or about a child under 13, please contact us at biz@hashicorp.com.
12
+
13
+ You represent and warrant to Company that: (i) you are an individual (i.e., not a corporation) and you are of legal age to form a binding contract or have your parent’s permission to do so, and you are at least 13 years or age or older; (ii) all registration information you submit is accurate and truthful; and (iii) you will maintain the accuracy of such information. You also certify that you are legally permitted to use and access the Services and take full responsibility for the selection and use of and access to the Services. This Agreement is void where prohibited by law, and the right to access the Services is revoked in such jurisdictions.
14
+
15
+ 2. SERVICES CONTENT. The Services and its contents may only be used in accordance with the terms of this Agreement. All materials displayed or performed on the Services (including, but not limited to text, graphics, articles, photographs, images, illustrations (also known as the “Content,”)) are protected by copyright. You shall abide by all copyright notices, trademark rules, information, and restrictions contained in any Content accessed through the Services, and shall not use, copy, reproduce, modify, translate, publish, broadcast, transmit, distribute, perform, upload, display, license, sell or otherwise exploit for any purposes whatsoever any Content or third party submissions or other proprietary rights not owned by you: (i) without the express prior written consent of the respective owners, and (ii) in any way that violates any third party right.
16
+ The Services are protected by copyright as a collective work and/or compilation, pursuant to U.S. copyright laws, international conventions, and other intellectual property laws. You may not modify, publish, transmit, participate in the transfer or sale of, reproduce (except as expressly provided in this Section 2), create derivative works based on, distribute, perform, display, or in any way exploit, any of the Content, software, materials, or Services in whole or in part.
17
+
18
+ You may download or copy the Content (and other items displayed on the Services for download) for personal non-commercial use only, provided that you maintain all copyright and other notices contained in such Content. You shall not store any significant portion of any Content in any form. Copying or storing of any Content other than personal, noncommercial use is expressly prohibited without prior written permission from Company or from the copyright holder identified in such Content’s copyright notice. If you link to the Website, Company may revoke your right to so link at any time, at Company’s sole discretion. Company reserves the right to require prior written consent before linking to the Website.
19
+ Under no circumstances will Company be liable in any way for any Content, including, but not limited to, any errors or omissions in any Content, or any loss or damage of any kind incurred in connection with use of or exposure to any Content posted, emailed, accessed, transmitted, or otherwise made available via the Services.
20
+
21
+ 3. RESTRICTIONS. You warrant, represent and agree that you will not contribute any Content or otherwise use the Services in a manner that (i) infringes or violates the intellectual property rights or proprietary rights, rights of publicity or privacy, or other rights of any third party; (ii) violates any law, statute, ordinance or regulation; (iii) is harmful, fraudulent, deceptive, threatening, abusive, harassing, tortious, defamatory, vulgar, obscene, libelous, or otherwise objectionable; (iv) involves commercial activities and/or sales without Company’s prior written consent such as contests, sweepstakes, barter, advertising, or pyramid schemes; (v) impersonates any person or entity, including without limitation any employee or representative of Company; or (vi) contains a virus, trojan horse, worm, time bomb, or other harmful computer code, file, or program. Company reserves the right to remove any Content from the Services at any time, for any reason (including, but not limited to, upon receipt of claims or allegations from third parties or authorities relating to such Content or if Company is concerned that you may have breached the immediately preceding sentence), or for no reason at all. You, not Company, remain solely responsible for all Content that you upload, post, email, transmit, or otherwise disseminate using, or in connection with, the Services, and you warrant that you possess all rights necessary to provide such content to Company and to grant Company the rights to use such information in connection with the Services and as otherwise provided herein.
22
+ You are responsible for all of your activity in connection with the Services. Any fraudulent, abusive, or otherwise illegal activity may be grounds for termination of your right to access or use the Services. You may not post or transmit, or cause to be posted or transmitted, any communication or solicitation designed or intended to obtain password, account, or private information from any other user of the Services. Use of the Services to violate the security of any computer network, crack passwords or security encryption codes, transfer or store illegal material (including material that may be considered threatening or obscene), or engage in any kind of illegal activity is expressly prohibited. You will not run Maillist, Listserv, any form of auto-responder, or “spam” on the Services, or any processes that run or are activated while you are not logged on to the Services, or that otherwise interfere with the proper working of or place an unreasonable load on the Services’ infrastructure. Further, the use of manual or automated software, devices, or other processes to “crawl,” “scrape,” or “spider” any portion of the Services is strictly prohibited. You will not decompile, reverse engineer, or otherwise attempt to obtain the source code of the Services. You will be responsible for withholding, filing, and reporting all taxes, duties and other governmental assessments associated with your activity in connection with the Services.
23
+
24
+ You understand and agree that Company shall have the sole right to decide whether you are in violation of any of the restrictions set forth in this Section, and shall have sole discretion regarding the course of action to take in connection therewith.
25
+
26
+ 4. WARRANTY DISCLAIMER. Company has no special relationship with or fiduciary duty to you. You acknowledge that Company has no control over, and no duty to take any action regarding: which users gain access to the Services; what Content you access via the Services; what effects the Content may have on you; how you may interpret or use the Content; or what actions you may take as a result of having been exposed to the Content. You release Company from all liability for you having acquired or not acquired Content through the Services. The Services may contain, or direct you to websites containing, information that some people may find offensive or inappropriate. Company makes no representations concerning any content contained in or accessed through the Services, and Company will not be responsible or liable for the accuracy, copyright compliance, legality or decency of material contained in or accessed through the Services. Company makes no representations or warranties regarding the accuracy of descriptions anywhere on the Services, or regarding suggestions or recommendations of services or products offered or purchased through the Services. Products and services purchased (whether or not following such recommendations and suggestions) are provided “AS IS” without any warranty of any kind from Company or others unless, with respect to others (only), otherwise made expressly and unambiguously in writing by a designated third party for a specific product or service.THE SERVICES, CONTENT, WEBSITE AND ANY SOFTWARE ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR THAT USE OF THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE. SOME STATES DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU.
27
+
28
+ 5. PRIVACY POLICY. For information regarding Company’s treatment of personally identifiable information, please review Company’s current Privacy Policy, which is hereby incorporated by reference; your acceptance of this Agreement constitutes your acceptance and agreement to be bound by Company’s Privacy Policy.
29
+
30
+ 6. REGISTRATION AND SECURITY. As a condition to using some aspects of the Services, you may be required to register with Company and select a password and user name (“Company User ID”). You shall provide Company with accurate, complete, and updated registration information. Failure to do so shall constitute a breach of this Agreement, which may result in immediate termination of your account. You may not (i) select or use as a Company User ID a name of another person with the intent to impersonate that person; or (ii) use as a Company User ID a name subject to any rights of a person other than you without appropriate authorization. Company reserves the right to refuse registration of or cancel a Company User ID in its discretion. You shall be responsible for maintaining the confidentiality of your password.
31
+
32
+ 7. INDEMNITY. You will indemnify and hold Company, its parents, subsidiaries, affiliates, officers, and employees harmless (including, without limitation, from all damages, liabilities, settlements, costs and attorneys’ fees) from any claim or demand made by any third party due to or arising out of your access to the Services, use of the Services, your violation of this Agreement, or the infringement by you or any third party using your account of any intellectual property or other right of any person or entity.
33
+
34
+ 8. LIMITATION OF LIABILITY. TO THE FULLEST EXTENT ALLOWED BY APPLICABLE LAW, IN NO EVENT SHALL COMPANY OR ITS SUPPLIERS, OR THEIR RESPECTIVE OFFICERS, DIRECTORS, EMPLOYEES, OR AGENTS BE LIABLE WITH RESPECT TO THE WEBSITE OR THE SERVICES OR THE SUBJECT MATTER OF THIS AGREEMENT UNDER ANY CONTRACT, NEGLIGENCE, TORT, STRICT LIABILITY OR OTHER LEGAL OR EQUITABLE THEORY (I) FOR ANY AMOUNT IN THE AGGREGATE IN EXCESS OF THE GREATER OF $100 OR THE FEES PAID BY YOU FOR THE SERVICES AND ANY PRODUCTS OR SERVICES PURCHASED THROUGH THE SERVICES DURING THE 12-MONTH PERIOD PRECEDING THE APPLICABLE CLAIM; (II) FOR ANY INDIRECT, INCIDENTAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES OF ANY KIND WHATSOEVER; (III) FOR DATA LOSS OR COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; OR (IV) FOR ANY MATTER BEYOND COMPANY’S REASONABLE CONTROL. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATIONS AND EXCLUSIONS MAY NOT APPLY TO YOU.
35
+
36
+ 9. FEES AND PAYMENT. Although some of our Services are currently free to users, Company reserves the right to require payment of fees for certain or all Services or products. You shall pay all applicable fees, as described on the Website in connection with such Services or products selected by you. Company reserves the right to change its price list and to institute new charges at any time, upon notice to you, which may be sent by email or posted on the Website. Any fees paid hereunder are non-refundable.
37
+
38
+ 10. INTERACTION WITH THIRD PARTIES. The Services may contain links to third party websites or services (“Third Party Services”) that are not owned or controlled by Company. When you access Third Party Services, you do so at your own risk. You hereby represent and warrant that you have read and agree to be bound by all applicable policies of any Third Party Services relating to your use of the Services and that you will act in accordance with those policies, in addition to your obligations under this Agreement. Company has no control over, and assumes no responsibility for, the content, accuracy, privacy policies, or practices of or opinions expressed in any Third Party Services. In addition, Company will not and cannot monitor, verify, censor or edit the content of any Third Party Service. By using the Services, you expressly relieve and hold harmless Company from any and all liability arising from your use of any Third Party Service.
39
+ Your interactions with organizations and/or individuals found on or through the Services, including payment and delivery of goods or services, and any other terms, conditions, warranties or representations associated with such dealings, are solely between you and such organizations and/or individuals. You should make whatever investigation you feel necessary or appropriate before proceeding with any online or offline transaction with any of these third parties. You agree that Company shall not be responsible or liable for any loss or damage of any sort incurred as the result of any such dealings. If there is a dispute between participants on this site, or between users and any third party, you understand and agree that Company is under no obligation to become involved. In the event that you have a dispute with one or more other users or third parties, you hereby release Company, its officers, employees, agents, and successors in rights from claims, demands, and damages (actual and consequential) of every kind or nature, known or unknown, suspected or unsuspected, disclosed or undisclosed, arising out of or in any way related to such disputes. If you are a California resident, you shall and hereby do waive California Civil Code Section 1542, which says: “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”
40
+
41
+ 11. TERMINATION. This Agreement shall remain in full force and effect while you use the Services. You may terminate your use of the Services at any time. Company may terminate or suspend your access to the Services or your membership at any time, for any reason, and without warning, which may result in the forfeiture and destruction of all information associated with your membership. Company may also terminate or suspend any and all Services and access to the Website immediately, without prior notice or liability, if you breach any of the terms or conditions of this Agreement. Upon termination of your account, your right to use the Services, access the Website, and any Content will immediately cease. All provisions of this Agreement which, by their nature, should survive termination, shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, and limitations of liability.
42
+
43
+ 12. MISCELLANEOUS. The failure of either party to exercise, in any respect, any right provided for herein shall not be deemed a waiver of any further rights hereunder. Company shall not be liable for any failure to perform its obligations hereunder where such failure results from any cause beyond Company’s reasonable control, including, without limitation, mechanical, electronic or communications failure or degradation (including “line-noise” interference). If any provision of this Agreement is found to be unenforceable or invalid, that provision shall be limited or eliminated to the minimum extent necessary so that this Agreement shall otherwise remain in full force and effect and enforceable. This Agreement is not assignable, transferable or sublicensable by you except with Company’s prior written consent. Company may transfer, assign or delegate this Agreement and its rights and obligations without consent. Both parties agree that this Agreement is the complete and exclusive statement of the mutual understanding of the parties and supersedes and cancels all previous written and oral agreements, communications and other understandings relating to the subject matter of this Agreement, and that all modifications must be in a writing signed by both parties, except as otherwise provided herein. No agency, partnership, joint venture, or employment is created as a result of this Agreement and you do not have any authority of any kind to bind Company in any respect whatsoever. Headings for each section have been included above for your convenience, but such headings do not have any legal meaning, and may not accurately reflect the content of the provisions they precede. You and Company agree there are no third party beneficiaries intended under this Agreement.
44
+
45
+ 13. ARBITRATION; GOVERNING LAW. This Agreement shall be governed by and construed in accordance with the laws of the State of California without regard to the conflict of laws provisions thereof. Any dispute arising from or relating to the subject matter of this Agreement shall be finally settled by arbitration in San Francisco County, California, using the English language in accordance with the Streamlined Arbitration Rules and Procedures of Judicial Arbitration and Mediation Services, Inc. (“JAMS”) then in effect, by one commercial arbitrator with substantial experience in resolving intellectual property and commercial contract disputes, who shall be selected from the appropriate list of JAMS arbitrators in accordance with the Streamlined Arbitration Rules and Procedures of JAMS. Judgment upon the award so rendered may be entered in a court having jurisdiction, or application may be made to such court for judicial acceptance of any award and an order of enforcement, as the case may be. Notwithstanding the foregoing, each party shall have the right to institute an action in a court of proper jurisdiction for injunctive or other equitable relief pending a final decision by the arbitrator. For all purposes of this Agreement, the parties consent to exclusive jurisdiction and venue in the United States Federal Courts located in the Northern District of California.
46
+
47
+ 14. CONTACT. If you have any questions, complaints, or claims with respect to the Services, you may contact us at biz@hashicorp.com.
48
+
49
+ Effective: March 1, 2013
50
+
metadata CHANGED
@@ -1,235 +1,212 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tnargav
3
- version: !ruby/object:Gem::Version
4
- version: 1.2.3
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 3
8
+ - 3
9
+ version: 1.3.3
6
10
  platform: ruby
7
- authors:
11
+ authors:
8
12
  - Mitchell Hashimoto
9
13
  - John Bender
10
14
  autorequire:
11
15
  bindir: bin
12
16
  cert_chain: []
13
- date: 2013-07-12 00:00:00.000000000 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2013-09-23 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
16
22
  name: childprocess
17
- requirement: !ruby/object:Gem::Requirement
18
- none: false
19
- requirements:
20
- - - ~>
21
- - !ruby/object:Gem::Version
22
- version: 0.3.7
23
- type: :runtime
24
23
  prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
- requirements:
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ requirements:
28
26
  - - ~>
29
- - !ruby/object:Gem::Version
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ - 3
31
+ - 7
30
32
  version: 0.3.7
31
- - !ruby/object:Gem::Dependency
32
- name: erubis
33
- requirement: !ruby/object:Gem::Requirement
34
- none: false
35
- requirements:
36
- - - ~>
37
- - !ruby/object:Gem::Version
38
- version: 2.7.0
39
33
  type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: erubis
40
37
  prerelease: false
41
- version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
- requirements:
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ requirements:
44
40
  - - ~>
45
- - !ruby/object:Gem::Version
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 2
44
+ - 7
45
+ - 0
46
46
  version: 2.7.0
47
- - !ruby/object:Gem::Dependency
48
- name: i18n
49
- requirement: !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ~>
53
- - !ruby/object:Gem::Version
54
- version: 0.6.0
55
47
  type: :runtime
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: i18n
56
51
  prerelease: false
57
- version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
- requirements:
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ requirements:
60
54
  - - ~>
61
- - !ruby/object:Gem::Version
55
+ - !ruby/object:Gem::Version
56
+ segments:
57
+ - 0
58
+ - 6
59
+ - 0
62
60
  version: 0.6.0
63
- - !ruby/object:Gem::Dependency
64
- name: log4r
65
- requirement: !ruby/object:Gem::Requirement
66
- none: false
67
- requirements:
68
- - - ~>
69
- - !ruby/object:Gem::Version
70
- version: 1.1.9
71
61
  type: :runtime
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: log4r
72
65
  prerelease: false
73
- version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
- requirements:
66
+ requirement: &id004 !ruby/object:Gem::Requirement
67
+ requirements:
76
68
  - - ~>
77
- - !ruby/object:Gem::Version
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 1
72
+ - 1
73
+ - 9
78
74
  version: 1.1.9
79
- - !ruby/object:Gem::Dependency
80
- name: net-ssh
81
- requirement: !ruby/object:Gem::Requirement
82
- none: false
83
- requirements:
84
- - - ~>
85
- - !ruby/object:Gem::Version
86
- version: 2.6.6
87
75
  type: :runtime
76
+ version_requirements: *id004
77
+ - !ruby/object:Gem::Dependency
78
+ name: net-ssh
88
79
  prerelease: false
89
- version_requirements: !ruby/object:Gem::Requirement
90
- none: false
91
- requirements:
80
+ requirement: &id005 !ruby/object:Gem::Requirement
81
+ requirements:
92
82
  - - ~>
93
- - !ruby/object:Gem::Version
83
+ - !ruby/object:Gem::Version
84
+ segments:
85
+ - 2
86
+ - 6
87
+ - 6
94
88
  version: 2.6.6
95
- - !ruby/object:Gem::Dependency
96
- name: net-scp
97
- requirement: !ruby/object:Gem::Requirement
98
- none: false
99
- requirements:
100
- - - ~>
101
- - !ruby/object:Gem::Version
102
- version: 1.1.0
103
89
  type: :runtime
90
+ version_requirements: *id005
91
+ - !ruby/object:Gem::Dependency
92
+ name: net-scp
104
93
  prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- none: false
107
- requirements:
94
+ requirement: &id006 !ruby/object:Gem::Requirement
95
+ requirements:
108
96
  - - ~>
109
- - !ruby/object:Gem::Version
97
+ - !ruby/object:Gem::Version
98
+ segments:
99
+ - 1
100
+ - 1
101
+ - 0
110
102
  version: 1.1.0
111
- - !ruby/object:Gem::Dependency
103
+ type: :runtime
104
+ version_requirements: *id006
105
+ - !ruby/object:Gem::Dependency
112
106
  name: rake
113
- requirement: !ruby/object:Gem::Requirement
114
- none: false
115
- requirements:
116
- - - ! '>='
117
- - !ruby/object:Gem::Version
118
- version: '0'
119
- type: :development
120
107
  prerelease: false
121
- version_requirements: !ruby/object:Gem::Requirement
122
- none: false
123
- requirements:
124
- - - ! '>='
125
- - !ruby/object:Gem::Version
126
- version: '0'
127
- - !ruby/object:Gem::Dependency
128
- name: contest
129
- requirement: !ruby/object:Gem::Requirement
130
- none: false
131
- requirements:
132
- - - ! '>='
133
- - !ruby/object:Gem::Version
134
- version: 0.1.2
108
+ requirement: &id007 !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ segments:
113
+ - 0
114
+ version: "0"
135
115
  type: :development
116
+ version_requirements: *id007
117
+ - !ruby/object:Gem::Dependency
118
+ name: contest
136
119
  prerelease: false
137
- version_requirements: !ruby/object:Gem::Requirement
138
- none: false
139
- requirements:
140
- - - ! '>='
141
- - !ruby/object:Gem::Version
120
+ requirement: &id008 !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ segments:
125
+ - 0
126
+ - 1
127
+ - 2
142
128
  version: 0.1.2
143
- - !ruby/object:Gem::Dependency
144
- name: minitest
145
- requirement: !ruby/object:Gem::Requirement
146
- none: false
147
- requirements:
148
- - - ~>
149
- - !ruby/object:Gem::Version
150
- version: 2.5.1
151
129
  type: :development
130
+ version_requirements: *id008
131
+ - !ruby/object:Gem::Dependency
132
+ name: minitest
152
133
  prerelease: false
153
- version_requirements: !ruby/object:Gem::Requirement
154
- none: false
155
- requirements:
134
+ requirement: &id009 !ruby/object:Gem::Requirement
135
+ requirements:
156
136
  - - ~>
157
- - !ruby/object:Gem::Version
137
+ - !ruby/object:Gem::Version
138
+ segments:
139
+ - 2
140
+ - 5
141
+ - 1
158
142
  version: 2.5.1
159
- - !ruby/object:Gem::Dependency
160
- name: mocha
161
- requirement: !ruby/object:Gem::Requirement
162
- none: false
163
- requirements:
164
- - - ! '>='
165
- - !ruby/object:Gem::Version
166
- version: '0'
167
143
  type: :development
144
+ version_requirements: *id009
145
+ - !ruby/object:Gem::Dependency
146
+ name: mocha
168
147
  prerelease: false
169
- version_requirements: !ruby/object:Gem::Requirement
170
- none: false
171
- requirements:
172
- - - ! '>='
173
- - !ruby/object:Gem::Version
174
- version: '0'
175
- - !ruby/object:Gem::Dependency
176
- name: rspec-core
177
- requirement: !ruby/object:Gem::Requirement
178
- none: false
179
- requirements:
180
- - - ~>
181
- - !ruby/object:Gem::Version
182
- version: 2.11.0
148
+ requirement: &id010 !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ segments:
153
+ - 0
154
+ version: "0"
183
155
  type: :development
156
+ version_requirements: *id010
157
+ - !ruby/object:Gem::Dependency
158
+ name: rspec-core
184
159
  prerelease: false
185
- version_requirements: !ruby/object:Gem::Requirement
186
- none: false
187
- requirements:
188
- - - ~>
189
- - !ruby/object:Gem::Version
190
- version: 2.11.0
191
- - !ruby/object:Gem::Dependency
192
- name: rspec-expectations
193
- requirement: !ruby/object:Gem::Requirement
194
- none: false
195
- requirements:
160
+ requirement: &id011 !ruby/object:Gem::Requirement
161
+ requirements:
196
162
  - - ~>
197
- - !ruby/object:Gem::Version
163
+ - !ruby/object:Gem::Version
164
+ segments:
165
+ - 2
166
+ - 11
167
+ - 0
198
168
  version: 2.11.0
199
169
  type: :development
170
+ version_requirements: *id011
171
+ - !ruby/object:Gem::Dependency
172
+ name: rspec-expectations
200
173
  prerelease: false
201
- version_requirements: !ruby/object:Gem::Requirement
202
- none: false
203
- requirements:
204
- - - ~>
205
- - !ruby/object:Gem::Version
206
- version: 2.11.0
207
- - !ruby/object:Gem::Dependency
208
- name: rspec-mocks
209
- requirement: !ruby/object:Gem::Requirement
210
- none: false
211
- requirements:
174
+ requirement: &id012 !ruby/object:Gem::Requirement
175
+ requirements:
212
176
  - - ~>
213
- - !ruby/object:Gem::Version
177
+ - !ruby/object:Gem::Version
178
+ segments:
179
+ - 2
180
+ - 11
181
+ - 0
214
182
  version: 2.11.0
215
183
  type: :development
184
+ version_requirements: *id012
185
+ - !ruby/object:Gem::Dependency
186
+ name: rspec-mocks
216
187
  prerelease: false
217
- version_requirements: !ruby/object:Gem::Requirement
218
- none: false
219
- requirements:
188
+ requirement: &id013 !ruby/object:Gem::Requirement
189
+ requirements:
220
190
  - - ~>
221
- - !ruby/object:Gem::Version
191
+ - !ruby/object:Gem::Version
192
+ segments:
193
+ - 2
194
+ - 11
195
+ - 0
222
196
  version: 2.11.0
223
- description: Vagrant is a tool for building and distributing virtualized development
224
- environments.
225
- email:
197
+ type: :development
198
+ version_requirements: *id013
199
+ description: Vagrant is a tool for building and distributing virtualized development environments.
200
+ email:
226
201
  - mitchell.hashimoto@gmail.com
227
202
  - john.m.bender@gmail.com
228
- executables:
203
+ executables:
229
204
  - vagrant
230
205
  extensions: []
206
+
231
207
  extra_rdoc_files: []
232
- files:
208
+
209
+ files:
233
210
  - bin/vagrant
234
211
  - CHANGELOG.md
235
212
  - config/default.rb
@@ -239,6 +216,7 @@ files:
239
216
  - contrib/vim/vagrantfile.vim
240
217
  - CONTRIBUTING.md
241
218
  - Gemfile
219
+ - Gemfile.lock
242
220
  - keys/README.md
243
221
  - keys/vagrant
244
222
  - keys/vagrant.pub
@@ -253,11 +231,14 @@ files:
253
231
  - lib/vagrant/action/builtin/handle_box_url.rb
254
232
  - lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb
255
233
  - lib/vagrant/action/builtin/lock.rb
234
+ - lib/vagrant/action/builtin/mixin_provisioners.rb
256
235
  - lib/vagrant/action/builtin/nfs.rb
257
236
  - lib/vagrant/action/builtin/provision.rb
237
+ - lib/vagrant/action/builtin/provisioner_cleanup.rb
258
238
  - lib/vagrant/action/builtin/set_hostname.rb
259
239
  - lib/vagrant/action/builtin/ssh_exec.rb
260
240
  - lib/vagrant/action/builtin/ssh_run.rb
241
+ - lib/vagrant/action/builtin/wait_for_communicator.rb
261
242
  - lib/vagrant/action/general/package.rb
262
243
  - lib/vagrant/action/hook.rb
263
244
  - lib/vagrant/action/runner.rb
@@ -347,6 +328,8 @@ files:
347
328
  - plugins/commands/destroy/plugin.rb
348
329
  - plugins/commands/halt/command.rb
349
330
  - plugins/commands/halt/plugin.rb
331
+ - plugins/commands/help/command.rb
332
+ - plugins/commands/help/plugin.rb
350
333
  - plugins/commands/init/command.rb
351
334
  - plugins/commands/init/plugin.rb
352
335
  - plugins/commands/package/command.rb
@@ -355,6 +338,7 @@ files:
355
338
  - plugins/commands/plugin/action/install_gem.rb
356
339
  - plugins/commands/plugin/action/license_plugin.rb
357
340
  - plugins/commands/plugin/action/list_plugins.rb
341
+ - plugins/commands/plugin/action/plugin_exists_check.rb
358
342
  - plugins/commands/plugin/action/prune_gems.rb
359
343
  - plugins/commands/plugin/action/uninstall_plugin.rb
360
344
  - plugins/commands/plugin/action.rb
@@ -362,8 +346,10 @@ files:
362
346
  - plugins/commands/plugin/command/install.rb
363
347
  - plugins/commands/plugin/command/license.rb
364
348
  - plugins/commands/plugin/command/list.rb
349
+ - plugins/commands/plugin/command/mixin_install_opts.rb
365
350
  - plugins/commands/plugin/command/root.rb
366
351
  - plugins/commands/plugin/command/uninstall.rb
352
+ - plugins/commands/plugin/command/update.rb
367
353
  - plugins/commands/plugin/gem_helper.rb
368
354
  - plugins/commands/plugin/plugin.rb
369
355
  - plugins/commands/plugin/state_file.rb
@@ -390,6 +376,19 @@ files:
390
376
  - plugins/guests/arch/cap/configure_networks.rb
391
377
  - plugins/guests/arch/guest.rb
392
378
  - plugins/guests/arch/plugin.rb
379
+ - plugins/guests/coreos/cap/change_host_name.rb
380
+ - plugins/guests/coreos/cap/configure_networks.rb
381
+ - plugins/guests/coreos/guest.rb
382
+ - plugins/guests/coreos/plugin.rb
383
+ - plugins/guests/darwin/cap/change_host_name.rb
384
+ - plugins/guests/darwin/cap/configure_networks.rb
385
+ - plugins/guests/darwin/cap/halt.rb
386
+ - plugins/guests/darwin/cap/mount_nfs_folder.rb
387
+ - plugins/guests/darwin/cap/mount_vmware_shared_folder.rb
388
+ - plugins/guests/darwin/cap/shell_expand_guest_path.rb
389
+ - plugins/guests/darwin/cap/verify_vmware_hgfs.rb
390
+ - plugins/guests/darwin/guest.rb
391
+ - plugins/guests/darwin/plugin.rb
393
392
  - plugins/guests/debian/cap/change_host_name.rb
394
393
  - plugins/guests/debian/cap/configure_networks.rb
395
394
  - plugins/guests/debian/guest.rb
@@ -418,7 +417,10 @@ files:
418
417
  - plugins/guests/omnios/cap/change_host_name.rb
419
418
  - plugins/guests/omnios/guest.rb
420
419
  - plugins/guests/omnios/plugin.rb
420
+ - plugins/guests/openbsd/cap/change_host_name.rb
421
+ - plugins/guests/openbsd/cap/configure_networks.rb
421
422
  - plugins/guests/openbsd/cap/halt.rb
423
+ - plugins/guests/openbsd/cap/mount_nfs_folder.rb
422
424
  - plugins/guests/openbsd/guest.rb
423
425
  - plugins/guests/openbsd/plugin.rb
424
426
  - plugins/guests/pld/cap/network_scripts_dir.rb
@@ -436,11 +438,21 @@ files:
436
438
  - plugins/guests/solaris/config.rb
437
439
  - plugins/guests/solaris/guest.rb
438
440
  - plugins/guests/solaris/plugin.rb
441
+ - plugins/guests/solaris11/cap/change_host_name.rb
442
+ - plugins/guests/solaris11/cap/configure_networks.rb
443
+ - plugins/guests/solaris11/cap/halt.rb
444
+ - plugins/guests/solaris11/cap/mount_virtualbox_shared_folder.rb
445
+ - plugins/guests/solaris11/config.rb
446
+ - plugins/guests/solaris11/guest.rb
447
+ - plugins/guests/solaris11/plugin.rb
439
448
  - plugins/guests/suse/cap/change_host_name.rb
449
+ - plugins/guests/suse/cap/configure_networks.rb
440
450
  - plugins/guests/suse/cap/network_scripts_dir.rb
441
451
  - plugins/guests/suse/guest.rb
442
452
  - plugins/guests/suse/plugin.rb
443
453
  - plugins/guests/ubuntu/cap/change_host_name.rb
454
+ - plugins/guests/ubuntu/cap/mount_nfs.rb
455
+ - plugins/guests/ubuntu/cap/mount_virtualbox_shared_folder.rb
444
456
  - plugins/guests/ubuntu/guest.rb
445
457
  - plugins/guests/ubuntu/plugin.rb
446
458
  - plugins/hosts/arch/host.rb
@@ -457,6 +469,8 @@ files:
457
469
  - plugins/hosts/linux/plugin.rb
458
470
  - plugins/hosts/opensuse/host.rb
459
471
  - plugins/hosts/opensuse/plugin.rb
472
+ - plugins/hosts/slackware/host.rb
473
+ - plugins/hosts/slackware/plugin.rb
460
474
  - plugins/hosts/windows/host.rb
461
475
  - plugins/hosts/windows/plugin.rb
462
476
  - plugins/kernel_v1/config/nfs.rb
@@ -541,17 +555,27 @@ files:
541
555
  - plugins/provisioners/chef/provisioner/base.rb
542
556
  - plugins/provisioners/chef/provisioner/chef_client.rb
543
557
  - plugins/provisioners/chef/provisioner/chef_solo.rb
558
+ - plugins/provisioners/file/config.rb
559
+ - plugins/provisioners/file/plugin.rb
560
+ - plugins/provisioners/file/provisioner.rb
544
561
  - plugins/provisioners/puppet/config/puppet.rb
545
562
  - plugins/provisioners/puppet/config/puppet_server.rb
546
563
  - plugins/provisioners/puppet/plugin.rb
547
564
  - plugins/provisioners/puppet/provisioner/puppet.rb
548
565
  - plugins/provisioners/puppet/provisioner/puppet_server.rb
566
+ - plugins/provisioners/salt/bootstrap-salt.sh
567
+ - plugins/provisioners/salt/config.rb
568
+ - plugins/provisioners/salt/errors.rb
569
+ - plugins/provisioners/salt/plugin.rb
570
+ - plugins/provisioners/salt/provisioner.rb
549
571
  - plugins/provisioners/shell/config.rb
550
572
  - plugins/provisioners/shell/plugin.rb
551
573
  - plugins/provisioners/shell/provisioner.rb
552
574
  - plugins/README.md
553
575
  - Rakefile
554
576
  - README.md
577
+ - scripts/website_push_docs.sh
578
+ - scripts/website_push_www.sh
555
579
  - tasks/acceptance.rake
556
580
  - tasks/bundler.rake
557
581
  - tasks/test.rake
@@ -561,6 +585,7 @@ files:
561
585
  - templates/config/validation_failed.erb
562
586
  - templates/guests/arch/network_dhcp.erb
563
587
  - templates/guests/arch/network_static.erb
588
+ - templates/guests/coreos/etcd.service.erb
564
589
  - templates/guests/debian/network_dhcp.erb
565
590
  - templates/guests/debian/network_static.erb
566
591
  - templates/guests/fedora/network_dhcp.erb
@@ -569,8 +594,12 @@ files:
569
594
  - templates/guests/freebsd/network_static.erb
570
595
  - templates/guests/gentoo/network_dhcp.erb
571
596
  - templates/guests/gentoo/network_static.erb
597
+ - templates/guests/openbsd/network_dhcp.erb
598
+ - templates/guests/openbsd/network_static.erb
572
599
  - templates/guests/redhat/network_dhcp.erb
573
600
  - templates/guests/redhat/network_static.erb
601
+ - templates/guests/suse/network_dhcp.erb
602
+ - templates/guests/suse/network_static.erb
574
603
  - templates/locales/en.yml
575
604
  - templates/nfs/exports.erb
576
605
  - templates/nfs/exports_freebsd.erb
@@ -2745,6 +2774,216 @@ files:
2745
2774
  - vendor/bundle/ruby/1.9.1/specifications/rspec-core-2.11.1.gemspec
2746
2775
  - vendor/bundle/ruby/1.9.1/specifications/rspec-expectations-2.11.3.gemspec
2747
2776
  - vendor/bundle/ruby/1.9.1/specifications/rspec-mocks-2.11.3.gemspec
2777
+ - website/docs/config.rb
2778
+ - website/docs/config.ru
2779
+ - website/docs/Gemfile
2780
+ - website/docs/Gemfile.lock
2781
+ - website/docs/helpers/sidebar_helpers.rb
2782
+ - website/docs/lib/redirect_to_latest.rb
2783
+ - website/docs/lib/redirect_v1_docs.rb
2784
+ - website/docs/Procfile
2785
+ - website/docs/README.md
2786
+ - website/docs/source/404.html.erb
2787
+ - website/docs/source/images/bullet_1.png
2788
+ - website/docs/source/images/bullet_2.png
2789
+ - website/docs/source/images/bullet_3.png
2790
+ - website/docs/source/images/customers.png
2791
+ - website/docs/source/images/customers_small.png
2792
+ - website/docs/source/images/footer_background.png
2793
+ - website/docs/source/images/footer_hashi_logo.png
2794
+ - website/docs/source/images/footer_vagrant_logo.png
2795
+ - website/docs/source/images/get_started_background.png
2796
+ - website/docs/source/images/icon_caution.png
2797
+ - website/docs/source/images/logo_docs.png
2798
+ - website/docs/source/images/logo_docs_small.png
2799
+ - website/docs/source/images/logo_small.png
2800
+ - website/docs/source/images/logo_vagrant.png
2801
+ - website/docs/source/images/open_close.png
2802
+ - website/docs/source/images/search_icon.png
2803
+ - website/docs/source/images/sidebar_background_docs.png
2804
+ - website/docs/source/images/sidebar_background_inner.png
2805
+ - website/docs/source/images/steps_background.png
2806
+ - website/docs/source/images/vagrant_header_background.png
2807
+ - website/docs/source/index.html.erb
2808
+ - website/docs/source/javascripts/backstretch.js
2809
+ - website/docs/source/javascripts/bootstrap.min.js
2810
+ - website/docs/source/javascripts/fittext.js
2811
+ - website/docs/source/javascripts/grid-overlay.js
2812
+ - website/docs/source/javascripts/jquery.js
2813
+ - website/docs/source/javascripts/less-1.3.0.min.js
2814
+ - website/docs/source/javascripts/modernizr.js
2815
+ - website/docs/source/javascripts/vagrantup.js
2816
+ - website/docs/source/layouts/layout.erb
2817
+ - website/docs/source/stylesheets/_base.less
2818
+ - website/docs/source/stylesheets/_components.less
2819
+ - website/docs/source/stylesheets/_footer.less
2820
+ - website/docs/source/stylesheets/_media-queries.less
2821
+ - website/docs/source/stylesheets/_mixins.less
2822
+ - website/docs/source/stylesheets/_nav.less
2823
+ - website/docs/source/stylesheets/_pages.less
2824
+ - website/docs/source/stylesheets/_sidebar.less
2825
+ - website/docs/source/stylesheets/_type.less
2826
+ - website/docs/source/stylesheets/_variables.less
2827
+ - website/docs/source/stylesheets/bootstrap.css
2828
+ - website/docs/source/stylesheets/vagrantup.less
2829
+ - website/docs/source/v2/boxes/format.html.md
2830
+ - website/docs/source/v2/boxes.html.md
2831
+ - website/docs/source/v2/cli/box.html.md
2832
+ - website/docs/source/v2/cli/destroy.html.md
2833
+ - website/docs/source/v2/cli/halt.html.md
2834
+ - website/docs/source/v2/cli/index.html.md
2835
+ - website/docs/source/v2/cli/init.html.md
2836
+ - website/docs/source/v2/cli/package.html.md
2837
+ - website/docs/source/v2/cli/plugin.html.md
2838
+ - website/docs/source/v2/cli/provision.html.md
2839
+ - website/docs/source/v2/cli/reload.html.md
2840
+ - website/docs/source/v2/cli/resume.html.md
2841
+ - website/docs/source/v2/cli/ssh.html.md
2842
+ - website/docs/source/v2/cli/ssh_config.html.md
2843
+ - website/docs/source/v2/cli/status.html.md
2844
+ - website/docs/source/v2/cli/suspend.html.md
2845
+ - website/docs/source/v2/cli/up.html.md
2846
+ - website/docs/source/v2/debugging.html.md
2847
+ - website/docs/source/v2/getting-started/boxes.html.md
2848
+ - website/docs/source/v2/getting-started/index.html.md
2849
+ - website/docs/source/v2/getting-started/networking.html.md
2850
+ - website/docs/source/v2/getting-started/project_setup.html.md
2851
+ - website/docs/source/v2/getting-started/providers.html.md
2852
+ - website/docs/source/v2/getting-started/provisioning.html.md
2853
+ - website/docs/source/v2/getting-started/rebuild.html.md
2854
+ - website/docs/source/v2/getting-started/synced_folders.html.md
2855
+ - website/docs/source/v2/getting-started/teardown.html.md
2856
+ - website/docs/source/v2/getting-started/up.html.md
2857
+ - website/docs/source/v2/index.html.md
2858
+ - website/docs/source/v2/installation/backwards-compatibility.html.md
2859
+ - website/docs/source/v2/installation/index.html.md
2860
+ - website/docs/source/v2/installation/uninstallation.html.md
2861
+ - website/docs/source/v2/installation/upgrading-from-1-0.html.md
2862
+ - website/docs/source/v2/installation/upgrading.html.md
2863
+ - website/docs/source/v2/multi-machine/index.html.md
2864
+ - website/docs/source/v2/networking/basic_usage.html.md
2865
+ - website/docs/source/v2/networking/forwarded_ports.html.md
2866
+ - website/docs/source/v2/networking/index.html.md
2867
+ - website/docs/source/v2/networking/private_network.html.md
2868
+ - website/docs/source/v2/networking/public_network.html.md
2869
+ - website/docs/source/v2/plugins/commands.html.md
2870
+ - website/docs/source/v2/plugins/configuration.html.md
2871
+ - website/docs/source/v2/plugins/development-basics.html.md
2872
+ - website/docs/source/v2/plugins/guest-capabilities.html.md
2873
+ - website/docs/source/v2/plugins/guests.html.md
2874
+ - website/docs/source/v2/plugins/hosts.html.md
2875
+ - website/docs/source/v2/plugins/index.html.md
2876
+ - website/docs/source/v2/plugins/packaging.html.md
2877
+ - website/docs/source/v2/plugins/providers.html.md
2878
+ - website/docs/source/v2/plugins/provisioners.html.md
2879
+ - website/docs/source/v2/plugins/usage.html.md
2880
+ - website/docs/source/v2/providers/basic_usage.html.md
2881
+ - website/docs/source/v2/providers/configuration.html.md
2882
+ - website/docs/source/v2/providers/custom.html.md
2883
+ - website/docs/source/v2/providers/default.html.md
2884
+ - website/docs/source/v2/providers/index.html.md
2885
+ - website/docs/source/v2/providers/installation.html.md
2886
+ - website/docs/source/v2/provisioning/ansible.html.md
2887
+ - website/docs/source/v2/provisioning/basic_usage.html.md
2888
+ - website/docs/source/v2/provisioning/chef_client.html.md
2889
+ - website/docs/source/v2/provisioning/chef_solo.html.md
2890
+ - website/docs/source/v2/provisioning/index.html.md
2891
+ - website/docs/source/v2/provisioning/puppet_agent.html.md
2892
+ - website/docs/source/v2/provisioning/puppet_apply.html.md
2893
+ - website/docs/source/v2/provisioning/shell.html.md
2894
+ - website/docs/source/v2/synced-folders/basic_usage.html.md
2895
+ - website/docs/source/v2/synced-folders/index.html.md
2896
+ - website/docs/source/v2/synced-folders/nfs.html.md
2897
+ - website/docs/source/v2/vagrantfile/index.html.md
2898
+ - website/docs/source/v2/vagrantfile/machine_settings.html.md
2899
+ - website/docs/source/v2/vagrantfile/ssh_settings.html.md
2900
+ - website/docs/source/v2/vagrantfile/vagrant_settings.html.md
2901
+ - website/docs/source/v2/vagrantfile/version.html.md
2902
+ - website/docs/source/v2/virtualbox/boxes.html.md
2903
+ - website/docs/source/v2/virtualbox/configuration.html.md
2904
+ - website/docs/source/v2/virtualbox/index.html.md
2905
+ - website/docs/source/v2/virtualbox/usage.html.md
2906
+ - website/docs/source/v2/vmware/boxes.html.md
2907
+ - website/docs/source/v2/vmware/configuration.html.md
2908
+ - website/docs/source/v2/vmware/index.html.md
2909
+ - website/docs/source/v2/vmware/installation.html.md
2910
+ - website/docs/source/v2/vmware/known-issues.html.md
2911
+ - website/docs/source/v2/vmware/usage.html.md
2912
+ - website/docs/source/v2/why-vagrant/index.html.md
2913
+ - website/www/config.rb
2914
+ - website/www/config.ru
2915
+ - website/www/Gemfile
2916
+ - website/www/Gemfile.lock
2917
+ - website/www/helpers/sidebar_helpers.rb
2918
+ - website/www/lib/legacy_redirect.rb
2919
+ - website/www/Procfile
2920
+ - website/www/README.md
2921
+ - website/www/source/404.html.erb
2922
+ - website/www/source/_sidebar_about.erb
2923
+ - website/www/source/_sidebar_blog.erb
2924
+ - website/www/source/_sidebar_support.html.erb
2925
+ - website/www/source/about.html.markdown
2926
+ - website/www/source/blog/2013-09-16-test.html.markdown
2927
+ - website/www/source/blog.html.erb
2928
+ - website/www/source/blog_feed.xml.builder
2929
+ - website/www/source/images/bullet_1.png
2930
+ - website/www/source/images/bullet_2.png
2931
+ - website/www/source/images/bullet_3.png
2932
+ - website/www/source/images/customers.png
2933
+ - website/www/source/images/customers_small.png
2934
+ - website/www/source/images/footer_background.png
2935
+ - website/www/source/images/footer_hashi_logo.png
2936
+ - website/www/source/images/footer_vagrant_logo.png
2937
+ - website/www/source/images/get_started_background.png
2938
+ - website/www/source/images/icon_caution.png
2939
+ - website/www/source/images/logo_docs.png
2940
+ - website/www/source/images/logo_docs_small.png
2941
+ - website/www/source/images/logo_small.png
2942
+ - website/www/source/images/logo_vagrant.png
2943
+ - website/www/source/images/open_close.png
2944
+ - website/www/source/images/search_icon.png
2945
+ - website/www/source/images/sidebar_background_docs.png
2946
+ - website/www/source/images/sidebar_background_inner.png
2947
+ - website/www/source/images/sponsors/fastly.png
2948
+ - website/www/source/images/sponsors/kiip.png
2949
+ - website/www/source/images/sponsors/softlayer.jpg
2950
+ - website/www/source/images/sponsors/typekit.png
2951
+ - website/www/source/images/steps_background.png
2952
+ - website/www/source/images/vagrant_header_background.png
2953
+ - website/www/source/images/vagrant_vmware_background.png
2954
+ - website/www/source/index.html.erb
2955
+ - website/www/source/javascripts/backstretch.js
2956
+ - website/www/source/javascripts/bootstrap.min.js
2957
+ - website/www/source/javascripts/fittext.js
2958
+ - website/www/source/javascripts/grid-overlay.js
2959
+ - website/www/source/javascripts/jquery.js
2960
+ - website/www/source/javascripts/less-1.3.0.min.js
2961
+ - website/www/source/javascripts/modernizr.js
2962
+ - website/www/source/javascripts/vagrantup.js
2963
+ - website/www/source/layouts/blog_post.erb
2964
+ - website/www/source/layouts/inner.erb
2965
+ - website/www/source/layouts/layout.erb
2966
+ - website/www/source/sponsors.html.erb
2967
+ - website/www/source/stylesheets/_base.less
2968
+ - website/www/source/stylesheets/_components.less
2969
+ - website/www/source/stylesheets/_footer.less
2970
+ - website/www/source/stylesheets/_media-queries.less
2971
+ - website/www/source/stylesheets/_mixins.less
2972
+ - website/www/source/stylesheets/_modules.less
2973
+ - website/www/source/stylesheets/_nav.less
2974
+ - website/www/source/stylesheets/_pages.less
2975
+ - website/www/source/stylesheets/_sidebar.less
2976
+ - website/www/source/stylesheets/_type.less
2977
+ - website/www/source/stylesheets/_variables.less
2978
+ - website/www/source/stylesheets/bootstrap.css
2979
+ - website/www/source/stylesheets/vagrantup.less
2980
+ - website/www/source/support/community.html.erb
2981
+ - website/www/source/support/professional.html.erb
2982
+ - website/www/source/support.html.erb
2983
+ - website/www/source/vmware/eula.html.md
2984
+ - website/www/source/vmware/index.html.erb
2985
+ - website/www/source/vmware/privacy-policy.html.md
2986
+ - website/www/source/vmware/terms-of-service.html.md
2748
2987
  - .gitignore
2749
2988
  - .gitsetup.yml
2750
2989
  - .travis.yml
@@ -2766,28 +3005,39 @@ files:
2766
3005
  - vendor/bundle/ruby/1.9.1/gems/rspec-expectations-2.11.3/.yardopts
2767
3006
  - vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/.document
2768
3007
  - vendor/bundle/ruby/1.9.1/gems/rspec-mocks-2.11.3/.yardopts
3008
+ - website/docs/.buildpacks
3009
+ - website/www/.buildpacks
3010
+ has_rdoc: true
2769
3011
  homepage: http://vagrantup.com
2770
3012
  licenses: []
3013
+
2771
3014
  post_install_message:
2772
3015
  rdoc_options: []
2773
- require_paths:
3016
+
3017
+ require_paths:
2774
3018
  - lib
2775
- required_ruby_version: !ruby/object:Gem::Requirement
2776
- none: false
2777
- requirements:
2778
- - - ! '>='
2779
- - !ruby/object:Gem::Version
2780
- version: '0'
2781
- required_rubygems_version: !ruby/object:Gem::Requirement
2782
- none: false
2783
- requirements:
2784
- - - ! '>='
2785
- - !ruby/object:Gem::Version
3019
+ required_ruby_version: !ruby/object:Gem::Requirement
3020
+ requirements:
3021
+ - - ">="
3022
+ - !ruby/object:Gem::Version
3023
+ segments:
3024
+ - 0
3025
+ version: "0"
3026
+ required_rubygems_version: !ruby/object:Gem::Requirement
3027
+ requirements:
3028
+ - - ">="
3029
+ - !ruby/object:Gem::Version
3030
+ segments:
3031
+ - 1
3032
+ - 3
3033
+ - 6
2786
3034
  version: 1.3.6
2787
3035
  requirements: []
3036
+
2788
3037
  rubyforge_project: vagrant
2789
- rubygems_version: 1.8.25
3038
+ rubygems_version: 1.3.6
2790
3039
  signing_key:
2791
3040
  specification_version: 3
2792
3041
  summary: Build and distribute virtualized development environments.
2793
3042
  test_files: []
3043
+