import VERSION from 'data/version' import { productSlug } from 'data/metadata' import ProductDownloadsPage from '@hashicorp/react-product-downloads-page' import { generateStaticProps } from '@hashicorp/react-product-downloads-page/server' import s from './style.module.css' export default function DownloadsPage(staticProps) { return ( } tutorialLink={{ href: 'https://learn.hashicorp.com/consul', label: 'View Tutorials at HashiCorp Learn', }} merchandisingSlot={ <>

» Download Consul Tools

Note for ARM users:

The following commands can help determine the right version for your system:

$ uname -m
$ readelf -a /proc/self/exe | grep -q -c Tag_ABI_VFP_args && echo "armhf" || echo "armel"
} {...staticProps} /> ) } export async function getStaticProps() { return generateStaticProps({ product: productSlug, latestVersion: VERSION, }) }