From 0941d675572a5a6e4b9d8f98fe971efed04c38a1 Mon Sep 17 00:00:00 2001 From: sixg0000d Date: Wed, 25 Nov 2020 22:19:39 +0800 Subject: [PATCH] Revert "Add root uid judgment before running" This reverts commit 4488a5c20b50e30bfc604842db4fe3a4e508e7c8. --- install-dat-release.sh | 9 --------- install-release.sh | 9 --------- 2 files changed, 18 deletions(-) diff --git a/install-dat-release.sh b/install-dat-release.sh index cf5093a..981b206 100644 --- a/install-dat-release.sh +++ b/install-dat-release.sh @@ -26,14 +26,6 @@ curl() { $(type -P curl) -L -q --retry 5 --retry-delay 10 --retry-max-time 60 "$@" } -check_if_running_as_root() { - # If you want to run as another user, please modify $UID to be owned by this user - if [[ "$UID" -ne '0' ]]; then - echo "error: You must run this script as root!" - exit 1 - fi -} - download_files() { if ! curl -R -H 'Cache-Control: no-cache' -o "${dir_tmp}/${2}" "${1}"; then echo 'error: Download failed! Please check your network or try again.' @@ -64,7 +56,6 @@ install_file() { } main() { - check_if_running_as_root download_files $DOWNLOAD_LINK_GEOIP $file_ip download_files $DOWNLOAD_LINK_GEOSITE $file_dlc check_sum diff --git a/install-release.sh b/install-release.sh index 54b1219..65fda26 100644 --- a/install-release.sh +++ b/install-release.sh @@ -44,14 +44,6 @@ systemd_cat_config() { fi } -check_if_running_as_root() { - # If you want to run as another user, please modify $UID to be owned by this user - if [[ "$UID" -ne '0' ]]; then - echo "error: You must run this script as root!" - exit 1 - fi -} - identify_the_operating_system_and_architecture() { if [[ "$(uname)" == 'Linux' ]]; then case "$(uname -m)" in @@ -499,7 +491,6 @@ show_help() { } main() { - check_if_running_as_root identify_the_operating_system_and_architecture judgment_parameters "$@"