From 9a5c71f5ee134f5ac1d447373b49a3c2a41e5179 Mon Sep 17 00:00:00 2001 From: ToutyRater Date: Sat, 31 Dec 2016 13:44:52 +0000 Subject: [PATCH 1/4] Update install-release.sh --- release/install-release.sh | 506 ++++++++++++++++++++++++------------- 1 file changed, 325 insertions(+), 181 deletions(-) diff --git a/release/install-release.sh b/release/install-release.sh index 4bf2c7269..25b307f02 100755 --- a/release/install-release.sh +++ b/release/install-release.sh @@ -3,197 +3,341 @@ # This file is accessible as https://install.direct/go.sh # Original source is located at github.com/v2ray/v2ray-core/release/install-release.sh -while [[ $# > 0 ]] -do -key="$1" - -case $key in - -p|--proxy) - PROXY="$2" - shift # past argument - ;; - -h|--help) - HELP="1" - ;; - -f|--force) - FORCE="1" - ;; - --version) - VERSION="$2" - shift - ;; - --local) - LOCAL="$2" - shift - ;; - *) - # unknown option - ;; -esac -shift # past argument or value -done - -if [[ "$HELP" == "1" ]]; then - echo "./install-release.sh [-p proxy] [-h] [-f] [--version vx.y.z] [--local file]" - echo "-p: To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc" - echo "-h: Show help" - echo "-f: Force install" - echo "--version: Install a particular version" - echo "--local: Install from a local file" - exit -fi - -YUM_CMD=$(command -v yum) -APT_CMD=$(command -v apt-get) +CUR_VER="" +NEW_VER="" +ARCH="" +VDIS="64" +ZIPFILE="/tmp/v2ray/v2ray.zip" +V2RAY_RUNNING=0 +CMD_INSTALL="" +CMD_UPDATE="" SOFTWARE_UPDATED=0 -function update_software() { - if [ ${SOFTWARE_UPDATED} -eq 1 ]; then - return - fi - if [ -n "${YUM_CMD}" ]; then - echo "Updating software repo via yum." - ${YUM_CMD} -q makecache - elif [ -n "${APT_CMD}" ]; then - echo "Updating software repo via apt-get." - ${APT_CMD} -qq update - fi - SOFTWARE_UPDATED=1 +CHECK="" +FORCE="" +HELP="" + +#######color code######## +red="31m" +green="32m" +yellow="33m" +blue="34m" +wblue="36m" + +######################### +while [[ $# > 0 ]];do + key="$1" + case $key in + -p|--proxy) + PROXY="-x ${2}" + shift # past argument + ;; + -h|--help) + HELP="1" + ;; + -f|--force) + FORCE="1" + ;; + -c|--check) + CHECK="1" + ;; + -r|--remove) + REMOVE="1" + ;; + -v|--version) + VERSION="$2" + shift + ;; + -l|--local) + LOCAL="$2" + LOCAL_INSTALL="1" + shift + ;; + *) + # unknown option + ;; + esac + shift # past argument or value +done + +############################### +colorEcho(){ + color=$1 + text=$2 + echo -e "\033[${color}${@:2}\033[0m" } -function install_component() { - local COMPONENT=$1 - COMPONENT_CMD=$(command -v $COMPONENT) - if [ -n "${COMPONENT_CMD}" ]; then - return - fi - - update_software - if [ -n "${YUM_CMD}" ]; then - echo "Installing ${COMPONENT} via yum." - ${YUM_CMD} -y -q install $COMPONENT - elif [ -n "${APT_CMD}" ]; then - echo "Installing ${COMPONENT} via apt-get." - ${APT_CMD} -y -qq install $COMPONENT - fi +sysAcrh(){ + ARCH=$(uname -m) + if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then + VDIS="32" + elif [[ "$ARCH" == *"armv7"* ]] || [[ "$ARCH" == "armv6l" ]]; then + VDIS="arm" + elif [[ "$ARCH" == *"armv8"* ]]; then + VDIS="arm64" + fi + return 0 } -V2RAY_RUNNING=0 -if pgrep "v2ray" > /dev/null ; then - V2RAY_RUNNING=1 -fi - -if [ -n "$VERSION" ]; then - VER="$VERSION" -else - VER="$(curl -s https://api.github.com/repos/v2ray/v2ray-core/releases/latest | grep 'tag_name' | cut -d\" -f4)" - CUR_VER="$(/usr/bin/v2ray/v2ray -version | head -n 1 | cut -d " " -f2)" - - if [[ "$VER" == "$CUR_VER" ]] && [[ "$FORCE" != "1" ]]; then - echo "Lastest version $VER is already installed. Exiting..." - exit - fi -fi - -ARCH=$(uname -m) -VDIS="64" - -if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then - VDIS="32" -elif [[ "$ARCH" == *"armv7"* ]] || [[ "$ARCH" == "armv6l" ]]; then - VDIS="arm" -elif [[ "$ARCH" == *"armv8"* ]]; then - VDIS="arm64" -fi - -rm -rf /tmp/v2ray -mkdir -p /tmp/v2ray - -echo "Installing V2Ray ${VER} on ${ARCH}" - -if [ -n "$LOCAL" ]; then - cp "$LOCAL" "/tmp/v2ray/v2ray.zip" -else - DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${VER}/v2ray-linux-${VDIS}.zip" - - install_component "curl" - - if [ -n "${PROXY}" ]; then - echo "Downloading ${DOWNLOAD_LINK} via proxy ${PROXY}." - curl -x ${PROXY} -L -H "Cache-Control: no-cache" -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK} - else - echo "Downloading ${DOWNLOAD_LINK} directly." - curl -L -H "Cache-Control: no-cache" -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK} - fi -fi - -echo "Extracting V2Ray package to /tmp/v2ray." -install_component "unzip" -unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/" - -# Create folder for V2Ray log. -mkdir -p /var/log/v2ray - -# Stop v2ray daemon if necessary. -SYSTEMCTL_CMD=$(command -v systemctl) -SERVICE_CMD=$(command -v service) - -if [ ${V2RAY_RUNNING} -eq 1 ]; then - echo "Shutting down V2Ray service." - if [ -n "${SYSTEMCTL_CMD}" ]; then - if [ -f "/lib/systemd/system/v2ray.service" ]; then - ${SYSTEMCTL_CMD} stop v2ray +downloadV2Ray(){ + rm -rf /tmp/v2ray + mkdir -p /tmp/v2ray + colorEcho ${wblue} "Donwloading V2Ray." + DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip" + curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK} + if [ $? != 0 ];then + colorEcho ${red} "Failed to download! Please check your network or try again." + exit 1 fi - elif [ -n "${SERVICE_CMD}" ]; then - if [ -f "/etc/init.d/v2ray" ]; then - ${SERVICE_CMD} v2ray stop + return 0 +} + +installSoftware(){ + COMPONENT=$1 + if [[ -n `command -v $COMPONENT` ]]; then + return 0 fi - fi -fi -# Install V2Ray binary to /usr/bin/v2ray -mkdir -p /usr/bin/v2ray -cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray" -chmod +x "/usr/bin/v2ray/v2ray" - -# Install V2Ray server config to /etc/v2ray -mkdir -p /etc/v2ray -if [ ! -f "/etc/v2ray/config.json" ]; then - cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json" - - let PORT=$RANDOM+10000 - sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json" - - UUID=$(cat /proc/sys/kernel/random/uuid) - sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json" - - echo "PORT:${PORT}" - echo "UUID:${UUID}" -fi - -if [ -n "${SYSTEMCTL_CMD}" ]; then - if [ ! -f "/lib/systemd/system/v2ray.service" ]; then - cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemd/v2ray.service" "/lib/systemd/system/" - systemctl enable v2ray - else - if [ ${V2RAY_RUNNING} -eq 1 ]; then - echo "Restarting V2Ray service." - ${SYSTEMCTL_CMD} start v2ray + getPMT + if [[ $? -eq 1 ]]; then + colorEcho $yellow "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually." + exit fi - fi -elif [ -n "${SERVICE_CMD}" ]; then # Configure SysV if necessary. - if [ ! -f "/etc/init.d/v2ray" ]; then - install_component "daemon" - cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray" - chmod +x "/etc/init.d/v2ray" - update-rc.d v2ray defaults - else - if [ ${V2RAY_RUNNING} -eq 1 ]; then - echo "Restarting V2Ray service." - ${SERVICE_CMD} v2ray start + colorEcho $green Installing $COMPONENT + if [[ $SOFTWARE_UPDATED -eq 0 ]]; then + colorEcho ${wblue} "Updating software repo" + $CMD_UPDATE + if [[ $? -ne 0 ]]; then + colorEcho ${red} "Failed update software repo, please check your source." + exit + fi + SOFTWARE_UPDATED=1 fi - fi -fi -echo "V2Ray ${VER} is installed." \ No newline at end of file + colorEcho ${wblue} "Installing ${COMPONENT}" + $CMD_INSTALL $COMPONENT + if [[ $? -ne 0 ]]; then + colorEcho ${red} Install ${COMPONENT} fail, please install it manually. + exit + fi + return 0 +} + +# return 1: not apt or yum +getPMT(){ + if [ -n `command -v apt-get` ];then + CMD_INSTALL="apt-get -y -qq install" + CMD_UPDATE="apt-get -qq update" + elif [[ -n `command -v yum` ]]; then + CMD_INSTALL="yum -y -qq install" + CMD_UPDATE="yum -q makecache" + else + return 1 + fi + return 0 +} + + +extra(){ + colorEcho ${wblue}"Extracting V2Ray package to /tmp/v2ray." + mkdir -p /tmp/v2ray + unzip $1 -d "/tmp/v2ray/" + if [[ $? -ne 0 ]]; then + colorEcho ${red} "Extracting V2Ray faile!" + exit + fi + return 0 +} + + +# 1: new V2Ray. 0: no +getVersion(){ + if [[ -n "$VERSION" ]]; then + NEW_VER="$VERSION" + return 1 + else + CUR_VER=`/usr/bin/v2ray/v2ray -version 2>/dev/null | head -n 1 | cut -d " " -f2` + TAG_URL="https://api.github.com/repos/v2ray/v2ray-core/releases/latest" + NEW_VER=`curl ${PROXY} -s ${TAG_URL} --connect-timeout 10| grep 'tag_name' | cut -d\" -f4` + + if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then + colorEcho ${red} "Network error! Please check your network or try again." + exit + elif [[ "$NEW_VER" != "$CUR_VER" ]];then + return 1 + fi + return 0 + fi +} + +stopV2ray(){ + SYSTEMCTL_CMD=$(command -v systemctl) + SERVICE_CMD=$(command -v service) + + colorEcho ${wblue} "Shutting down V2Ray service." + if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]]; then + ${SYSTEMCTL_CMD} stop v2ray + elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then + ${SERVICE_CMD} v2ray stop + fi + return 0 +} + +startV2ray(){ + SYSTEMCTL_CMD=$(command -v systemctl) + SERVICE_CMD=$(command -v service) + + if [ -n "${SYSTEMCTL_CMD}" ] && [ -f "/lib/systemd/system/v2ray.service" ]; then + ${SYSTEMCTL_CMD} start v2ray + elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then + ${SERVICE_CMD} v2ray start + fi + return 0 +} + +installV2Ray(){ + # Install V2Ray binary to /usr/bin/v2ray + mkdir -p /usr/bin/v2ray + ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"` + if [[ $? -ne 0 ]]; then + colorEcho ${yellow} "${ERROR}" + exit + fi + chmod +x "/usr/bin/v2ray/v2ray" + + # Install V2Ray server config to /etc/v2ray + mkdir -p /etc/v2ray + if [[ ! -f "/etc/v2ray/config.json" ]]; then + cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json" + if [[ $? -ne 0 ]]; then + colorEcho ${yellow} "Create V2Ray configuration file error, pleases create it manually." + return 1 + fi + let PORT=$RANDOM+10000 + UUID=$(cat /proc/sys/kernel/random/uuid) + + sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json" + sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json" + + colorEcho ${green} "PORT:${PORT}" + colorEcho ${green} "UUID:${UUID}" + mkdir -p /var/log/v2ray + fi + return 0 +} + + +installInitScrip(){ + SYSTEMCTL_CMD=$(command -v systemctl) + SERVICE_CMD=$(command -v service) + + if [[ -n "${SYSTEMCTL_CMD}" ]];then + if [[ ! -f "/lib/systemd/system/v2ray.service" ]]; then + cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemd/v2ray.service" "/lib/systemd/system/" + systemctl enable v2ray + fi + return + elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then + installSoftware "daemon" + cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray" + chmod +x "/etc/init.d/v2ray" + update-rc.d v2ray defaults + fi + return +} + +Help(){ + echo "./install-release.sh [-h] [-c] [-p proxy] [-f] [-v vx.y.z] [-l file]" + echo " -h, --help Show help" + echo " -p, --proxy To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc" + echo " -f, --force Force install" + echo " -v, --version Install a particular version" + echo " -l, --local Install from a local file" + echo " -r, --remove Remove installed V2Ray" + echo " -c, --check Check for update" + exit +} + +remove(){ + if pgrep "v2ray" > /dev/null ; then + stopV2ray + fi + rm -rf "/usr/lib/v2ray" "/lib/systemd/system/v2ray.service" + if [[ $? -ne 0 ]]; then + colorEcho ${red} "Failed to remove V2Ray." + exit + else + colorEcho ${green} "Removed V2Ray successfully." + colorEcho ${green} "If necessary, please remove configuration file and log file manually." + exit + fi +} + +checkUpdate(){ + echo "Checking for update." + getVersion + if [[ $? -eq 1 ]]; then + colorEcho ${green} "Found new version ${NEW_VER} for V2Ray." + exit + else + colorEcho ${green} "No new version." + exit + fi +} + +main(){ + #helping information + [[ "$HELP" == "1" ]] && Help + [[ "$CHECK" == "1" ]] && checkUpdate + [[ "$REMOVE" == "1" ]] && remove + + sysAcrh + # extra local file + if [[ $LOCAL_INSTALL -eq 1 ]]; then + echo "Install V2Ray via local file" + installSoftware unzip + rm -rf /tmp/v2ray + extra $LOCAL + FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4` + SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3` + if [[ ${SYSTEM} != "linux" ]]; then + colorEcho $red "The local V2Ray can not be installed in linux." + exit + elif [[ ${FILEVDIS} != ${VDIS} ]]; then + colorEcho $red "The local V2Ray can not be installed in ${ARCH} system." + exit + else + NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2` + fi + else + # dowload via network and extra + installSoftware "curl" + getVersion + if [[ $? == 0 ]] && [[ "$FORCE" != "1" ]]; then + colorEcho ${green} "Lastest version ${NEW_VER} is already installed." + exit + else + colorEcho ${wblue} "Installing V2Ray ${NEW_VER} on ${ARCH}" + downloadV2Ray + installSoftware unzip + extra ${ZIPFILE} + fi + fi + if pgrep "v2ray" > /dev/null ; then + V2RAY_RUNNING=1 + stopV2ray + fi + installV2Ray + installInitScrip + if [[ ${V2RAY_RUNNING} -eq 1 ]];then + colorEcho ${wblue} "Restarting V2Ray service." + startV2ray + + fi + colorEcho ${green} "V2Ray ${NEW_VER} is installed." + rm -rf /tmp/v2ray + return 0 +} + +main From 3910833fb20d19469bb44e8d4619aefca8c07baa Mon Sep 17 00:00:00 2001 From: ToutyRater Date: Mon, 2 Jan 2017 13:02:54 +0000 Subject: [PATCH 2/4] Update install-release.sh --- release/install-release.sh | 123 ++++++++++++++++++++----------------- 1 file changed, 68 insertions(+), 55 deletions(-) diff --git a/release/install-release.sh b/release/install-release.sh index 25b307f02..06b3f06cf 100755 --- a/release/install-release.sh +++ b/release/install-release.sh @@ -19,11 +19,11 @@ FORCE="" HELP="" #######color code######## -red="31m" -green="32m" -yellow="33m" -blue="34m" -wblue="36m" +RED="31m" +GREEN="32m" +YELLOW="33m" +BLUE="36m" + ######################### while [[ $# > 0 ]];do @@ -63,9 +63,8 @@ done ############################### colorEcho(){ - color=$1 - text=$2 - echo -e "\033[${color}${@:2}\033[0m" + COLOR=$1 + echo -e "\033[${COLOR}${@:2}\033[0m" } sysAcrh(){ @@ -83,11 +82,11 @@ sysAcrh(){ downloadV2Ray(){ rm -rf /tmp/v2ray mkdir -p /tmp/v2ray - colorEcho ${wblue} "Donwloading V2Ray." + colorEcho ${BLUE} "Donwloading V2Ray." DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip" curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK} if [ $? != 0 ];then - colorEcho ${red} "Failed to download! Please check your network or try again." + colorEcho ${RED} "Failed to download! Please check your network or try again." exit 1 fi return 0 @@ -101,24 +100,20 @@ installSoftware(){ getPMT if [[ $? -eq 1 ]]; then - colorEcho $yellow "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually." + colorEcho $YELLOW "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually." exit fi - colorEcho $green Installing $COMPONENT + colorEcho $GREEN "Installing $COMPONENT" if [[ $SOFTWARE_UPDATED -eq 0 ]]; then - colorEcho ${wblue} "Updating software repo" - $CMD_UPDATE - if [[ $? -ne 0 ]]; then - colorEcho ${red} "Failed update software repo, please check your source." - exit - fi + colorEcho ${BLUE} "Updating software repo" + $CMD_UPDATE SOFTWARE_UPDATED=1 fi - colorEcho ${wblue} "Installing ${COMPONENT}" + colorEcho ${BLUE} "Installing ${COMPONENT}" $CMD_INSTALL $COMPONENT if [[ $? -ne 0 ]]; then - colorEcho ${red} Install ${COMPONENT} fail, please install it manually. + colorEcho ${RED} "Install ${COMPONENT} fail, please install it manually." exit fi return 0 @@ -139,12 +134,12 @@ getPMT(){ } -extra(){ - colorEcho ${wblue}"Extracting V2Ray package to /tmp/v2ray." +extract(){ + colorEcho ${BLUE}"Extracting V2Ray package to /tmp/v2ray." mkdir -p /tmp/v2ray unzip $1 -d "/tmp/v2ray/" if [[ $? -ne 0 ]]; then - colorEcho ${red} "Extracting V2Ray faile!" + colorEcho ${RED} "Extracting V2Ray faile!" exit fi return 0 @@ -162,7 +157,7 @@ getVersion(){ NEW_VER=`curl ${PROXY} -s ${TAG_URL} --connect-timeout 10| grep 'tag_name' | cut -d\" -f4` if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then - colorEcho ${red} "Network error! Please check your network or try again." + colorEcho ${RED} "Network error! Please check your network or try again." exit elif [[ "$NEW_VER" != "$CUR_VER" ]];then return 1 @@ -175,7 +170,7 @@ stopV2ray(){ SYSTEMCTL_CMD=$(command -v systemctl) SERVICE_CMD=$(command -v service) - colorEcho ${wblue} "Shutting down V2Ray service." + colorEcho ${BLUE} "Shutting down V2Ray service." if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]]; then ${SYSTEMCTL_CMD} stop v2ray elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then @@ -201,7 +196,7 @@ installV2Ray(){ mkdir -p /usr/bin/v2ray ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"` if [[ $? -ne 0 ]]; then - colorEcho ${yellow} "${ERROR}" + colorEcho ${YELLOW} "${ERROR}" exit fi chmod +x "/usr/bin/v2ray/v2ray" @@ -211,7 +206,7 @@ installV2Ray(){ if [[ ! -f "/etc/v2ray/config.json" ]]; then cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json" if [[ $? -ne 0 ]]; then - colorEcho ${yellow} "Create V2Ray configuration file error, pleases create it manually." + colorEcho ${YELLOW} "Create V2Ray configuration file error, pleases create it manually." return 1 fi let PORT=$RANDOM+10000 @@ -220,8 +215,8 @@ installV2Ray(){ sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json" sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json" - colorEcho ${green} "PORT:${PORT}" - colorEcho ${green} "UUID:${UUID}" + colorEcho ${GREEN} "PORT:${PORT}" + colorEcho ${GREEN} "UUID:${UUID}" mkdir -p /var/log/v2ray fi return 0 @@ -235,7 +230,7 @@ installInitScrip(){ if [[ -n "${SYSTEMCTL_CMD}" ]];then if [[ ! -f "/lib/systemd/system/v2ray.service" ]]; then cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemd/v2ray.service" "/lib/systemd/system/" - systemctl enable v2ray + systemctl enable v2ray.service fi return elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then @@ -252,25 +247,43 @@ Help(){ echo " -h, --help Show help" echo " -p, --proxy To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc" echo " -f, --force Force install" - echo " -v, --version Install a particular version" + echo " --version Install a particular version" echo " -l, --local Install from a local file" - echo " -r, --remove Remove installed V2Ray" + echo " --remove Remove installed V2Ray" echo " -c, --check Check for update" exit } remove(){ - if pgrep "v2ray" > /dev/null ; then - stopV2ray - fi - rm -rf "/usr/lib/v2ray" "/lib/systemd/system/v2ray.service" - if [[ $? -ne 0 ]]; then - colorEcho ${red} "Failed to remove V2Ray." - exit - else - colorEcho ${green} "Removed V2Ray successfully." - colorEcho ${green} "If necessary, please remove configuration file and log file manually." - exit + SYSTEMCTL_CMD=$(command -v systemctl) + SERVICE_CMD=$(command -v service) + if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then + if pgrep "v2ray" > /dev/null ; then + stopV2ray + fi + systemctl disable v2ray.service + rm -rf "/usr/lib/v2ray" "/lib/systemd/system/v2ray.service" + if [[ $? -ne 0 ]]; then + colorEcho ${RED} "Failed to remove V2Ray." + exit + else + colorEcho ${GREEN} "Removed V2Ray successfully." + colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually." + exit + fi + elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then + if pgrep "v2ray" > /dev/null ; then + stopV2ray + fi + rm -rf "/usr/lib/v2ray" "/etc/init.d/v2ray" + if [[ $? -ne 0 ]]; then + colorEcho ${RED} "Failed to remove V2Ray." + exit + else + colorEcho ${GREEN} "Removed V2Ray successfully." + colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually." + exit + fi fi } @@ -278,10 +291,10 @@ checkUpdate(){ echo "Checking for update." getVersion if [[ $? -eq 1 ]]; then - colorEcho ${green} "Found new version ${NEW_VER} for V2Ray." + colorEcho ${GREEN} "Found new version ${NEW_VER} for V2Ray." exit else - colorEcho ${green} "No new version." + colorEcho ${GREEN} "No new version." exit fi } @@ -293,35 +306,35 @@ main(){ [[ "$REMOVE" == "1" ]] && remove sysAcrh - # extra local file + # extract local file if [[ $LOCAL_INSTALL -eq 1 ]]; then echo "Install V2Ray via local file" installSoftware unzip rm -rf /tmp/v2ray - extra $LOCAL + extract $LOCAL FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4` SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3` if [[ ${SYSTEM} != "linux" ]]; then - colorEcho $red "The local V2Ray can not be installed in linux." + colorEcho $RED "The local V2Ray can not be installed in linux." exit elif [[ ${FILEVDIS} != ${VDIS} ]]; then - colorEcho $red "The local V2Ray can not be installed in ${ARCH} system." + colorEcho $RED "The local V2Ray can not be installed in ${ARCH} system." exit else NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2` fi else - # dowload via network and extra + # dowload via network and extract installSoftware "curl" getVersion if [[ $? == 0 ]] && [[ "$FORCE" != "1" ]]; then - colorEcho ${green} "Lastest version ${NEW_VER} is already installed." + colorEcho ${GREEN} "Lastest version ${NEW_VER} is already installed." exit else - colorEcho ${wblue} "Installing V2Ray ${NEW_VER} on ${ARCH}" + colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}" downloadV2Ray installSoftware unzip - extra ${ZIPFILE} + extract ${ZIPFILE} fi fi if pgrep "v2ray" > /dev/null ; then @@ -331,11 +344,11 @@ main(){ installV2Ray installInitScrip if [[ ${V2RAY_RUNNING} -eq 1 ]];then - colorEcho ${wblue} "Restarting V2Ray service." + colorEcho ${BLUE} "Restarting V2Ray service." startV2ray fi - colorEcho ${green} "V2Ray ${NEW_VER} is installed." + colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed." rm -rf /tmp/v2ray return 0 } From 9917363a367a05d613f34b4d1651121c9b2734d5 Mon Sep 17 00:00:00 2001 From: ToutyRater Date: Fri, 6 Jan 2017 06:08:48 +0000 Subject: [PATCH 3/4] Update install-release.sh --- release/install-release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release/install-release.sh b/release/install-release.sh index 06b3f06cf..e7cf8551d 100755 --- a/release/install-release.sh +++ b/release/install-release.sh @@ -125,7 +125,7 @@ getPMT(){ CMD_INSTALL="apt-get -y -qq install" CMD_UPDATE="apt-get -qq update" elif [[ -n `command -v yum` ]]; then - CMD_INSTALL="yum -y -qq install" + CMD_INSTALL="yum -y -q install" CMD_UPDATE="yum -q makecache" else return 1 @@ -262,7 +262,7 @@ remove(){ stopV2ray fi systemctl disable v2ray.service - rm -rf "/usr/lib/v2ray" "/lib/systemd/system/v2ray.service" + rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service" if [[ $? -ne 0 ]]; then colorEcho ${RED} "Failed to remove V2Ray." exit @@ -275,7 +275,7 @@ remove(){ if pgrep "v2ray" > /dev/null ; then stopV2ray fi - rm -rf "/usr/lib/v2ray" "/etc/init.d/v2ray" + rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray" if [[ $? -ne 0 ]]; then colorEcho ${RED} "Failed to remove V2Ray." exit From 19e7a1955adc1e30fa3e96f1407fb97c085191b0 Mon Sep 17 00:00:00 2001 From: ToutyRater Date: Fri, 6 Jan 2017 06:22:59 +0000 Subject: [PATCH 4/4] Update install-release.sh --- release/install-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/install-release.sh b/release/install-release.sh index e7cf8551d..12341b1c7 100755 --- a/release/install-release.sh +++ b/release/install-release.sh @@ -42,10 +42,10 @@ while [[ $# > 0 ]];do -c|--check) CHECK="1" ;; - -r|--remove) + --remove) REMOVE="1" ;; - -v|--version) + --version) VERSION="$2" shift ;;