From f2f5ed38228492cc1d796192dcef76b60065629d Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 19 Dec 2022 18:52:55 -0500 Subject: [PATCH] Minor typo fixes Signed-off-by: Tommy --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 48a22c3..0617384 100644 --- a/install.sh +++ b/install.sh @@ -36,17 +36,17 @@ preflight(){ fi elif [ "$lsb_dist" = "centos" ]; then if [ "$dist_version" != "9" ]; then - output "Unsupported CentOS version. Only CentOS Stream 8 is supported." + output "Unsupported CentOS version. Only CentOS Stream 9 is supported." exit 2 fi elif [ "$lsb_dist" = "rocky" ]; then if [ "$dist_version" != "9" ]; then - output "Unsupported Rocky Linux version. Only Rocky Linux 8 is supported." + output "Unsupported Rocky Linux version. Only Rocky Linux 9 is supported." exit 2 fi elif [ "$lsb_dist" = "almalinux" ]; then if [ "$dist_version" != "9" ]; then - output "Unsupported AlmaLinux version. Only AlmaLinux 8 is supported." + output "Unsupported AlmaLinux version. Only AlmaLinux 9 is supported." exit 2 fi elif [ "$lsb_dist" != "rhel" ] && [ "$lsb_dist" != "centos" ] && [ "$lsb_dist" != "rocky" ] && [ "$lsb_dist" != "almalinux" ]; then