From f4e75fc14c723ac4cf9a4bce941b6dc5dfce8842 Mon Sep 17 00:00:00 2001 From: Master3395 Date: Sat, 20 Sep 2025 19:38:06 +0200 Subject: [PATCH] Update install.sh to correctly identify CentOS Stream 9: Change SERVER_OS variable from "CentOS8" to "CentOSStream9" for accurate OS detection during installation. https://github.com/usmannasir/cyberpanel/pull/1393 --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 2ba60744d..3ae942f74 100644 --- a/install.sh +++ b/install.sh @@ -13,7 +13,7 @@ yum install curl wget -y 1> /dev/null yum update curl wget ca-certificates -y 1> /dev/null elif echo $OUTPUT | grep -q "CentOS Stream 9" ; then echo -e "\nDetecting Centos Stream 9...\n" - SERVER_OS="CentOS8" + SERVER_OS="CentOSStream9" yum install curl wget -y 1> /dev/null yum update curl wget ca-certificates -y 1> /dev/null elif echo $OUTPUT | grep -q "AlmaLinux 8" ; then