Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Welcome to HashiCorp Developer! This is the home for HashiCorp product reference
- [Accessibility](#accessibility)
- [Testing](#testing)
- [Helpers](#helpers)
- [Component Organziation](#component-organization)
- [Component Organization](#component-organization)
- [Configuration](#configuration)
- [Analytics](#analytics)
- [SEO metadata](#seo-metadata)
Expand Down
12 changes: 6 additions & 6 deletions src/views/product-downloads-view/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ export const generateDefaultPackageManagers = (
os: 'linux',
},
{
label: 'Fedora 40',
label: 'Fedora 41',
commands: [
`sudo dnf install -y dnf-plugins-core`,
`sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo`,
`sudo dnf config-manager addrepo --from-repofile=https://rpm.releases.hashicorp.com/fedora/hashicorp.repo`,
`sudo dnf -y install ${productSlug}`,
],
os: 'linux',
},
{
label: 'Fedora 41',
label: 'Fedora 42',
commands: [
`sudo dnf install -y dnf-plugins-core`,
`sudo dnf config-manager addrepo --from-repofile=https://rpm.releases.hashicorp.com/fedora/hashicorp.repo`,
`wget -O- https://rpm.releases.hashicorp.com/fedora/hashicorp.repo | sudo tee /etc/yum.repos.d/hashicorp.repo`,
`sudo yum list available | grep hashicorp`,
`sudo dnf -y install ${productSlug}`,
],
os: 'linux',
Expand All @@ -82,7 +82,7 @@ export const generateDefaultPackageManagers = (
commands: [
`sudo yum install -y yum-utils shadow-utils`,
`sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo`,
`sudo yum -y install ${productSlug}`,
`sudo yum install ${productSlug}`,
],
os: 'linux',
},
Expand Down
Loading