From 35db52a90f22fc02b0b174e6be828b0f383dfa86 Mon Sep 17 00:00:00 2001 From: atarwn <102351430+atarwn@users.noreply.github.com> Date: Sun, 23 Feb 2025 22:28:10 +0500 Subject: [PATCH] Update x-ui.sh --- x-ui.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x-ui.sh b/x-ui.sh index 676cf3d3..64c48a28 100644 --- a/x-ui.sh +++ b/x-ui.sh @@ -87,6 +87,10 @@ elif [[ "${release}" == "ol" ]]; then if [[ ${os_version} -lt 8 ]]; then echo -e "${red} Please use Oracle Linux 8 or higher ${plain}\n" && exit 1 fi +elif [[ "${release}" == "virtuozzo" ]]; then + if [[ ${os_version} -lt 8 ]]; then + echo -e "${red} Please use Virtuozzo Linux 8 or higher ${plain}\n" && exit 1 + fi else echo -e "${red}Your operating system is not supported by this script.${plain}\n" echo "Please ensure you are using one of the following supported operating systems:" @@ -104,6 +108,7 @@ else echo "- Oracle Linux 8+" echo "- OpenSUSE Tumbleweed" echo "- Amazon Linux 2023" + echo "- Virtuozzo Linux 8+" exit 1 fi