From 0c769f78df579961cefc377efa7a52b726911208 Mon Sep 17 00:00:00 2001 From: quydang <81231812+quydang04@users.noreply.github.com> Date: Sat, 16 Dec 2023 09:30:58 +0700 Subject: [PATCH] Update x-ui.sh --- x-ui.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/x-ui.sh b/x-ui.sh index 51c79cc1..a1dfa488 100644 --- a/x-ui.sh +++ b/x-ui.sh @@ -55,7 +55,11 @@ elif [[ "${release}" == "debian" ]]; then echo -e "${red} Please use Debian 10 or higher ${plain}\n" && exit 1 fi elif [[ "${release}" == "arch" ]]; then - echo "OS is ArchLinux" + echo "Your OS is ArchLinux" +elif [[ "${release}" == "manjaro" ]]; then + echo "Your OS is Manjaro" +elif [[ "${release}" == "armbian" ]]; then + echo "Your OS is Armbian" fi @@ -579,7 +583,7 @@ ssl_cert_issue() { fi # install socat second case "${release}" in - ubuntu|debian) + ubuntu|debian|armbian) apt update && apt install socat -y ;; centos) yum -y update && yum -y install socat ;;