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
4 changes: 2 additions & 2 deletions lib/web/scripts/install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -328,13 +328,13 @@ install_teleport() {
esac

# select install method based on distribution
# if ID is debian derivate, run apt-get
# if ID is debian derivative, run apt-get
case "$ID" in
debian | ubuntu | kali | linuxmint | pop | raspbian | neon | zorin | parrot | elementary)
install_via_apt_get
;;
# if ID is amazon Linux 2/RHEL/etc, run yum
centos | rhel | amzn)
centos | rhel | rocky | almalinux | amzn)
install_via_yum "$ID"
;;
sles)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,16 @@ export const SERVERS: SelectResourceSpec[] = [
id: DiscoverGuideId.ServerLinuxRhelCentos,
name: 'RHEL 8+/CentOS Stream 9+',
kind: ResourceKind.Server,
keywords: [...baseServerKeywords, 'rhel', 'redhat', 'centos', 'linux'],
keywords: [
...baseServerKeywords,
'rhel',
'redhat',
'centos',
'linux',
'rocky',
'alma',
'almalinux',
],
icon: 'linux',
event: DiscoverEventResource.Server,
platform: Platform.Linux,
Expand Down
Loading