From d1116bd84aa87b33362b5d47cafee7495d8fed59 Mon Sep 17 00:00:00 2001 From: Ping Xiao Date: Mon, 20 Jun 2022 17:08:00 +0800 Subject: [PATCH] fix: Remove install warning for red hat --- packaging/tools/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packaging/tools/install.sh b/packaging/tools/install.sh index b14c14c7ee..85280cc509 100755 --- a/packaging/tools/install.sh +++ b/packaging/tools/install.sh @@ -105,6 +105,9 @@ elif echo $osinfo | grep -qwi "debian"; then elif echo $osinfo | grep -qwi "Kylin"; then # echo "This is Kylin system" os_type=1 +elif echo $osinfo | grep -qwi "Red"; then + # echo "This is Red Hat system" + os_type=1 elif echo $osinfo | grep -qwi "centos"; then # echo "This is centos system" os_type=2 -- GitLab