vagrant/website/source/downloads.html.erb

63 lines
2.3 KiB
Plaintext
Raw Normal View History

2013-12-09 08:17:20 +00:00
---
layout: "downloads"
2013-12-09 08:17:20 +00:00
sidebar_current: "downloads"
page_title: "Download"
description: |-
This page lists all the available downloads for Vagrant.
2013-12-09 08:17:20 +00:00
---
<h1>Download Vagrant</h1>
2013-12-09 08:17:20 +00:00
<div class="downloads">
2017-03-28 16:44:24 +00:00
<div class="description row">
<div class="col-md-12">
<p>
Below are the available downloads for the latest version of Vagrant
(<%= latest_version %>). Please download the proper package for your
operating system and architecture.
</p>
<p>
You can find the
<a href="https://releases.hashicorp.com/vagrant/<%= latest_version %>/vagrant_<%= latest_version %>_SHA256SUMS">
SHA256 checksums for Vagrant <%= latest_version %>
</a>
online and you can
<a href="https://releases.hashicorp.com/vagrant/<%= latest_version %>/vagrant_<%= latest_version %>_SHA256SUMS.sig">
verify the checksum's signature file
</a>,
which has been signed using <a href="https://www.hashicorp.com/security.html" target="_blank" rel="nofollow noopener noreferrer">HashiCorp's GPG key</a>.
You can also <a href="https://releases.hashicorp.com/vagrant/" target="_blank" rel="nofollow noopener noreferrer">download older versions of Vagrant</a> from the releases service.
</p>
<p>
Check out the <a href="https://github.com/<%= github_slug %>/blob/v<%= latest_version %>/CHANGELOG.md">v<%= latest_version %> CHANGELOG</a> for information on the latest release.
</p>
2017-03-28 16:44:24 +00:00
</div>
2015-10-26 15:29:54 +00:00
</div>
2013-12-09 08:17:20 +00:00
2015-10-26 15:29:54 +00:00
<% product_versions.each do |os, arches| %>
<% next if os == "web" %>
<div class="row">
<div class="col-md-12 download">
<div class="icon pull-left"><%= system_icon(os) %></div>
<div class="details">
<h2 class="os-name"><%= pretty_os(os) %></h2>
<ul>
<% arches.each do |arch, url| %>
2018-09-28 00:00:06 +00:00
<li><a data-os="<%= os %>" data-arch="<%= arch%>" data-version="<%= latest_version %>" href="<%= url %>"><%= pretty_arch(arch) %></a></li>
2015-10-26 15:29:54 +00:00
<% end %>
</ul>
<div class="clearfix"></div>
</div>
</div>
</div>
<% end %>
2013-12-09 08:17:20 +00:00
2017-03-28 01:19:52 +00:00
<div class="row">
2017-03-28 16:44:24 +00:00
<div class="col-md-12 poweredby">
2017-03-28 01:19:52 +00:00
<a href="https://www.fastly.com?utm_source=hashicorp" target="_blank" rel="nofollow noopener noreferrer">
2017-03-28 17:02:24 +00:00
<%= inline_svg "fastly.svg", height: 50 %>
2017-03-28 01:19:52 +00:00
</a>
</div>
2015-10-26 15:29:54 +00:00
</div>
2013-12-09 08:17:20 +00:00
</div>