Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/install.sh b/install.sh
index a1398712..d3e6dd1b 100644
--- a/install.sh
+++ b/install.sh
@@ -40,19 +40,6 @@ arch() {
echo "Arch: $(arch)"
-check_glibc_version() {
- glibc_version=$(ldd --version | head -n1 | awk '{print $NF}')
-
- required_version="2.32"
- if [[ "$(printf '%s\n' "$required_version" "$glibc_version" | sort -V | head -n1)" != "$required_version" ]]; then
- echo -e "${red}GLIBC version $glibc_version is too old! Required: 2.32 or higher${plain}"
- echo "Please upgrade to a newer version of your operating system to get a higher GLIBC version."
- exit 1
- fi
- echo "GLIBC version: $glibc_version (meets requirement of 2.32+)"
-}
-check_glibc_version
-
install_base() {
case "${release}" in
ubuntu | debian | armbian)