github.com/StackPointCloud/packer@v0.10.2-0.20180716202532-b28098e0f79b/website/source/downloads.html.erb (about)

     1  ---
     2  layout: "downloads"
     3  page_title: "Download Packer"
     4  sidebar_current: "downloads-packer"
     5  description: |-
     6    Download Packer
     7  ---
     8  
     9  <h1>Download Packer</h1>
    10  
    11  <section class="downloads">
    12    <div class="description row">
    13      <div class="col-md-12">
    14        <p>
    15          Below are the available downloads for the latest version of Packer
    16          (<%= latest_version %>). Please download the proper package for your
    17          operating system and architecture.
    18        </p>
    19        <p>
    20          You can find the
    21          <a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS">
    22            SHA256 checksums for Packer <%= latest_version %>
    23          </a>
    24          online and you can
    25          <a href="https://releases.hashicorp.com/packer/<%= latest_version %>/packer_<%= latest_version %>_SHA256SUMS.sig">
    26            verify the checksums signature file
    27          </a>
    28          which has been signed using <a href="https://hashicorp.com/security.html" target="_blank" rel="nofollow noopener noreferrer">HashiCorp's GPG key</a>.
    29          You can also <a href="https://releases.hashicorp.com/packer/" target="_blank" rel="nofollow noopener noreferrer">download other versions of Packer</a> from the releases service.
    30        </p>
    31        <p>
    32        Check out the <a href="https://github.com/hashicorp/packer/blob/v<%= latest_version %>/CHANGELOG.md">v<%= latest_version %> CHANGELOG</a> for information on the latest release.
    33        </p>
    34      </div>
    35    </div>
    36  
    37    <% product_versions.each do |os, arches| %>
    38      <% next if os == "web" %>
    39      <div class="row">
    40        <div class="col-md-12 download">
    41          <div class="icon pull-left"><%= system_icon(os) %></div>
    42          <div class="details">
    43            <h2 class="os-name"><%= pretty_os(os) %></h2>
    44            <ul>
    45              <% arches.each do |arch, url| %>
    46                <li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li>
    47              <% end %>
    48            </ul>
    49            <% if os == "freebsd" %>
    50              <div class="alert alert-info">
    51                Note: At least <code>FreeBSD 10-STABLE</code> is required to run Packer.
    52                If you'd like to run on an earlier version, please
    53                <a href="/docs/install/index.html#compiling-from-source">compile Packer yourself</a>
    54                using the <a href="https://github.com/golang/go/wiki/FreeBSD">correct version of Go</a>.
    55              </div>
    56            <% end %>
    57            <div class="clearfix"></div>
    58          </div>
    59        </div>
    60      </div>
    61    <% end %>
    62  
    63    <div class="row">
    64      <div class="col-md-12 poweredby">
    65        <a href="https://www.fastly.com?utm_source=hashicorp" target="_blank" rel="nofollow noopener noreferrer">
    66          <%= inline_svg "fastly.svg", height: 50 %>
    67        </a>
    68      </div>
    69    </div>
    70  </section>