| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-27 23:40:47 +02:00
										 |  |  | # This file is accessible as https://install.direct/go.sh | 
					
						
							| 
									
										
										
										
											2016-08-21 18:02:12 +02:00
										 |  |  | # Original source is located at github.com/v2ray/v2ray-core/release/install-release.sh | 
					
						
							| 
									
										
										
										
											2016-07-27 23:40:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-12 16:56:00 +08:00
										 |  |  | # If not specify, default meaning of return value: | 
					
						
							| 
									
										
										
										
											2018-04-12 21:56:19 +08:00
										 |  |  | # 0: Success | 
					
						
							| 
									
										
										
										
											2018-04-12 16:56:00 +08:00
										 |  |  | # 1: System error | 
					
						
							|  |  |  | # 2: Application error | 
					
						
							|  |  |  | # 3: Network error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | CUR_VER="" | 
					
						
							|  |  |  | NEW_VER="" | 
					
						
							|  |  |  | ARCH="" | 
					
						
							|  |  |  | VDIS="64" | 
					
						
							|  |  |  | ZIPFILE="/tmp/v2ray/v2ray.zip" | 
					
						
							|  |  |  | V2RAY_RUNNING=0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CMD_INSTALL="" | 
					
						
							|  |  |  | CMD_UPDATE="" | 
					
						
							|  |  |  | SOFTWARE_UPDATED=0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-14 15:34:59 +08:00
										 |  |  | SYSTEMCTL_CMD=$(command -v systemctl 2>/dev/null) | 
					
						
							|  |  |  | SERVICE_CMD=$(command -v service 2>/dev/null) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | CHECK="" | 
					
						
							|  |  |  | FORCE="" | 
					
						
							|  |  |  | HELP="" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #######color code######## | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  | RED="31m"      # Error message | 
					
						
							|  |  |  | GREEN="32m"    # Success message | 
					
						
							|  |  |  | YELLOW="33m"   # Warning message | 
					
						
							|  |  |  | BLUE="36m"     # Info message | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ######################### | 
					
						
							|  |  |  | 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" | 
					
						
							|  |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2017-01-06 06:22:59 +00:00
										 |  |  |         --remove) | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         REMOVE="1" | 
					
						
							|  |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2017-01-06 06:22:59 +00:00
										 |  |  |         --version) | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         VERSION="$2" | 
					
						
							|  |  |  |         shift | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |         -l|--local) | 
					
						
							|  |  |  |         LOCAL="$2" | 
					
						
							|  |  |  |         LOCAL_INSTALL="1" | 
					
						
							|  |  |  |         shift | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |                 # unknown option | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  |     shift # past argument or value | 
					
						
							| 
									
										
										
										
											2016-02-12 00:18:31 +01:00
										 |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | ############################### | 
					
						
							|  |  |  | colorEcho(){ | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     COLOR=$1 | 
					
						
							|  |  |  |     echo -e "\033[${COLOR}${@:2}\033[0m" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-04 01:45:00 +01:00
										 |  |  | sysArch(){ | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     ARCH=$(uname -m) | 
					
						
							|  |  |  |     if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then | 
					
						
							|  |  |  |         VDIS="32" | 
					
						
							|  |  |  |     elif [[ "$ARCH" == *"armv7"* ]] || [[ "$ARCH" == "armv6l" ]]; then | 
					
						
							|  |  |  |         VDIS="arm" | 
					
						
							| 
									
										
										
										
											2017-11-03 22:40:12 +01:00
										 |  |  |     elif [[ "$ARCH" == *"armv8"* ]] || [[ "$ARCH" == "aarch64" ]]; then | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         VDIS="arm64" | 
					
						
							| 
									
										
										
										
											2017-11-08 21:33:41 +01:00
										 |  |  |     elif [[ "$ARCH" == *"mips64le"* ]]; then | 
					
						
							|  |  |  |         VDIS="mips64le" | 
					
						
							|  |  |  |     elif [[ "$ARCH" == *"mips64"* ]]; then | 
					
						
							|  |  |  |         VDIS="mips64" | 
					
						
							|  |  |  |     elif [[ "$ARCH" == *"mipsle"* ]]; then | 
					
						
							|  |  |  |         VDIS="mipsle" | 
					
						
							|  |  |  |     elif [[ "$ARCH" == *"mips"* ]]; then | 
					
						
							|  |  |  |         VDIS="mips" | 
					
						
							| 
									
										
										
										
											2017-12-19 06:16:32 +08:00
										 |  |  |     elif [[ "$ARCH" == *"s390x"* ]]; then | 
					
						
							|  |  |  |         VDIS="s390x" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-02-12 00:18:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | downloadV2Ray(){ | 
					
						
							|  |  |  |     rm -rf /tmp/v2ray | 
					
						
							|  |  |  |     mkdir -p /tmp/v2ray | 
					
						
							| 
									
										
										
										
											2017-12-30 22:30:56 +01:00
										 |  |  |     colorEcho ${BLUE} "Downloading V2Ray." | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     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 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         colorEcho ${RED} "Failed to download! Please check your network or try again." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         return 3 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 15:57:04 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-01-13 00:52:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | installSoftware(){ | 
					
						
							|  |  |  |     COMPONENT=$1 | 
					
						
							|  |  |  |     if [[ -n `command -v $COMPONENT` ]]; then | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2016-02-21 14:34:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     getPMT | 
					
						
							|  |  |  |     if [[ $? -eq 1 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${RED} "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 21:56:19 +08:00
										 |  |  |         return 1  | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							|  |  |  |     if [[ $SOFTWARE_UPDATED -eq 0 ]]; then | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         colorEcho ${BLUE} "Updating software repo" | 
					
						
							|  |  |  |         $CMD_UPDATE       | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         SOFTWARE_UPDATED=1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     colorEcho ${BLUE} "Installing ${COMPONENT}" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     $CMD_INSTALL $COMPONENT | 
					
						
							|  |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |         colorEcho ${RED} "Failed to install ${COMPONENT}. Please install it manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 21:56:19 +08:00
										 |  |  |         return 1 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 15:57:04 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-08 15:53:06 +02:00
										 |  |  | # return 1: not apt, yum, or zypper | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | getPMT(){ | 
					
						
							| 
									
										
										
										
											2018-04-07 15:59:23 +08:00
										 |  |  |     if [[ -n `command -v apt-get` ]];then | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         CMD_INSTALL="apt-get -y -qq install" | 
					
						
							|  |  |  |         CMD_UPDATE="apt-get -qq update" | 
					
						
							|  |  |  |     elif [[ -n `command -v yum` ]]; then | 
					
						
							| 
									
										
										
										
											2017-01-06 06:08:48 +00:00
										 |  |  |         CMD_INSTALL="yum -y -q install" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         CMD_UPDATE="yum -q makecache" | 
					
						
							| 
									
										
										
										
											2018-06-08 17:13:33 +02:00
										 |  |  |     elif [[ -n `command -v zypper` ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-08 15:53:06 +02:00
										 |  |  |         CMD_INSTALL="zypper -y install" | 
					
						
							|  |  |  |         CMD_UPDATE="zypper ref" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 15:57:04 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  | extract(){ | 
					
						
							|  |  |  |     colorEcho ${BLUE}"Extracting V2Ray package to /tmp/v2ray." | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     mkdir -p /tmp/v2ray | 
					
						
							|  |  |  |     unzip $1 -d "/tmp/v2ray/" | 
					
						
							|  |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |         colorEcho ${RED} "Failed to extract V2Ray." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         return 2 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 15:57:04 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  | # 1: new V2Ray. 0: no. 2: not installed. 3: check failed. 4: don't check. | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | getVersion(){ | 
					
						
							|  |  |  |     if [[ -n "$VERSION" ]]; then | 
					
						
							|  |  |  |         NEW_VER="$VERSION" | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |         return 4 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |         VER=`/usr/bin/v2ray/v2ray -version 2>/dev/null` | 
					
						
							|  |  |  |         RETVAL="$?" | 
					
						
							|  |  |  |         CUR_VER=`echo $VER | head -n 1 | cut -d " " -f2` | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         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 | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |             colorEcho ${RED} "Failed to fetch release information. Please check your network or try again." | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |             return 3 | 
					
						
							|  |  |  |         elif [[ $RETVAL -ne 0 ]];then | 
					
						
							|  |  |  |             return 2 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         elif [[ "$NEW_VER" != "$CUR_VER" ]];then | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         fi | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2016-02-21 14:34:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | stopV2ray(){ | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     colorEcho ${BLUE} "Shutting down V2Ray service." | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |     if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]] || [[ -f "/etc/systemd/system/v2ray.service" ]]; then | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         ${SYSTEMCTL_CMD} stop v2ray | 
					
						
							|  |  |  |     elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then | 
					
						
							|  |  |  |         ${SERVICE_CMD} v2ray stop | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 13:17:48 +08:00
										 |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${YELLOW} "Failed to shutdown V2Ray service." | 
					
						
							| 
									
										
										
										
											2018-04-12 13:17:48 +08:00
										 |  |  |         return 2 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | startV2ray(){ | 
					
						
							|  |  |  |     if [ -n "${SYSTEMCTL_CMD}" ] && [ -f "/lib/systemd/system/v2ray.service" ]; then | 
					
						
							|  |  |  |         ${SYSTEMCTL_CMD} start v2ray | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |     elif [ -n "${SYSTEMCTL_CMD}" ] && [ -f "/etc/systemd/system/v2ray.service" ]; then | 
					
						
							|  |  |  |         ${SYSTEMCTL_CMD} start v2ray | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then | 
					
						
							|  |  |  |         ${SERVICE_CMD} v2ray start | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 13:17:48 +08:00
										 |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${YELLOW} "Failed to start V2Ray service." | 
					
						
							| 
									
										
										
										
											2018-04-12 13:17:48 +08:00
										 |  |  |         return 2 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-03 23:42:33 +01:00
										 |  |  | copyFile() { | 
					
						
							|  |  |  |     NAME=$1 | 
					
						
							| 
									
										
										
										
											2018-03-06 22:31:31 +08:00
										 |  |  |     ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/${NAME}" "/usr/bin/v2ray/${NAME}" 2>&1` | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2017-11-05 20:12:40 +01:00
										 |  |  |         colorEcho ${YELLOW} "${ERROR}" | 
					
						
							| 
									
										
										
										
											2018-04-12 21:56:19 +08:00
										 |  |  |         return 1 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 14:52:35 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2017-11-03 23:42:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | makeExecutable() { | 
					
						
							|  |  |  |     chmod +x "/usr/bin/v2ray/$1" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | installV2Ray(){ | 
					
						
							|  |  |  |     # Install V2Ray binary to /usr/bin/v2ray | 
					
						
							|  |  |  |     mkdir -p /usr/bin/v2ray | 
					
						
							| 
									
										
										
										
											2018-04-14 15:59:53 +08:00
										 |  |  |     copyFile v2ray | 
					
						
							|  |  |  |     if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |         colorEcho ${RED} "Failed to copy V2Ray binary and resources." | 
					
						
							| 
									
										
										
										
											2018-04-14 15:59:53 +08:00
										 |  |  |         return 1 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2017-11-03 23:42:33 +01:00
										 |  |  |     makeExecutable v2ray | 
					
						
							| 
									
										
										
										
											2018-04-14 15:59:53 +08:00
										 |  |  |     copyFile v2ctl && makeExecutable v2ctl | 
					
						
							| 
									
										
										
										
											2018-04-12 13:12:12 +08:00
										 |  |  |     copyFile geoip.dat | 
					
						
							|  |  |  |     copyFile geosite.dat | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Install V2Ray server config to /etc/v2ray | 
					
						
							|  |  |  |     if [[ ! -f "/etc/v2ray/config.json" ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-12 10:24:18 +08:00
										 |  |  |         mkdir -p /etc/v2ray | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         mkdir -p /var/log/v2ray | 
					
						
							| 
									
										
										
										
											2018-04-12 10:24:18 +08:00
										 |  |  |         cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json" | 
					
						
							|  |  |  |         if [[ $? -ne 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |             colorEcho ${YELLOW} "Failed to create V2Ray configuration file. Please create it manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 10:24:18 +08:00
										 |  |  |             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" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${BLUE} "PORT:${PORT}" | 
					
						
							|  |  |  |         colorEcho ${BLUE} "UUID:${UUID}" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 15:57:04 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-06 22:39:13 +08:00
										 |  |  | installInitScript(){ | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     if [[ -n "${SYSTEMCTL_CMD}" ]];then | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |         if [[ ! -f "/etc/systemd/system/v2ray.service" ]]; then | 
					
						
							|  |  |  |             if [[ ! -f "/lib/systemd/system/v2ray.service" ]]; then | 
					
						
							|  |  |  |                 cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemd/v2ray.service" "/etc/systemd/system/" | 
					
						
							|  |  |  |                 systemctl enable v2ray.service | 
					
						
							|  |  |  |             fi | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         fi | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         installSoftware "daemon" || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         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 | 
					
						
							| 
									
										
										
										
											2016-05-25 12:27:40 +02:00
										 |  |  |     return | 
					
						
							| 
									
										
										
										
											2016-02-21 14:34:32 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | Help(){ | 
					
						
							| 
									
										
										
										
											2018-04-14 15:20:02 +08:00
										 |  |  |     echo "./install-release.sh [-h] [-c] [--remove] [-p proxy] [-f] [--version vx.y.z] [-l file]" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     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" | 
					
						
							| 
									
										
										
										
											2018-04-12 19:00:13 +08:00
										 |  |  |     echo "      --version         Install a particular version, use --version v3.15" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     echo "  -l, --local           Install from a local file" | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     echo "      --remove          Remove installed V2Ray" | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     echo "  -c, --check           Check for update" | 
					
						
							| 
									
										
										
										
											2018-04-12 15:50:33 +08:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove(){ | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |     if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/etc/systemd/system/v2ray.service" ]];then | 
					
						
							|  |  |  |         if pgrep "v2ray" > /dev/null ; then | 
					
						
							|  |  |  |             stopV2ray | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         systemctl disable v2ray.service | 
					
						
							|  |  |  |         rm -rf "/usr/bin/v2ray" "/etc/systemd/system/v2ray.service" | 
					
						
							|  |  |  |         if [[ $? -ne 0 ]]; then | 
					
						
							|  |  |  |             colorEcho ${RED} "Failed to remove V2Ray." | 
					
						
							| 
									
										
										
										
											2018-04-12 15:48:32 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |         else | 
					
						
							|  |  |  |             colorEcho ${GREEN} "Removed V2Ray successfully." | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:25:58 +01:00
										 |  |  |         fi | 
					
						
							|  |  |  |     elif [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         if pgrep "v2ray" > /dev/null ; then | 
					
						
							|  |  |  |             stopV2ray | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         systemctl disable v2ray.service | 
					
						
							| 
									
										
										
										
											2017-01-06 06:08:48 +00:00
										 |  |  |         rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service" | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         if [[ $? -ne 0 ]]; then | 
					
						
							|  |  |  |             colorEcho ${RED} "Failed to remove V2Ray." | 
					
						
							| 
									
										
										
										
											2018-04-12 15:48:32 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             colorEcho ${GREEN} "Removed V2Ray successfully." | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         fi | 
					
						
							|  |  |  |     elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then | 
					
						
							|  |  |  |         if pgrep "v2ray" > /dev/null ; then | 
					
						
							|  |  |  |             stopV2ray | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2017-01-06 06:08:48 +00:00
										 |  |  |         rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray" | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         if [[ $? -ne 0 ]]; then | 
					
						
							|  |  |  |             colorEcho ${RED} "Failed to remove V2Ray." | 
					
						
							| 
									
										
										
										
											2018-04-12 15:48:32 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             colorEcho ${GREEN} "Removed V2Ray successfully." | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${BLUE} "If necessary, please remove configuration file and log file manually." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         fi        | 
					
						
							| 
									
										
										
										
											2017-09-13 20:54:47 +08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${YELLOW} "V2Ray not found." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | checkUpdate(){ | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |     echo "Checking for update." | 
					
						
							|  |  |  |     VERSION="" | 
					
						
							|  |  |  |     getVersion | 
					
						
							|  |  |  |     RETVAL="$?" | 
					
						
							|  |  |  |     if [[ $RETVAL -eq 1 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${BLUE} "Found new version ${NEW_VER} for V2Ray.(Current version:$CUR_VER)" | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |     elif [[ $RETVAL -eq 0 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${BLUE} "No new version. Current version is ${NEW_VER}." | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |     elif [[ $RETVAL -eq 2 ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |         colorEcho ${YELLOW} "No V2Ray installed." | 
					
						
							|  |  |  |         colorEcho ${BLUE} "The newest version for V2Ray is ${NEW_VER}." | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |     fi | 
					
						
							|  |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | main(){ | 
					
						
							|  |  |  |     #helping information | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |     [[ "$HELP" == "1" ]] && Help && return | 
					
						
							| 
									
										
										
										
											2018-04-12 21:56:19 +08:00
										 |  |  |     [[ "$CHECK" == "1" ]] && checkUpdate && return | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |     [[ "$REMOVE" == "1" ]] && remove && return | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2017-11-04 01:45:00 +01:00
										 |  |  |     sysArch | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     # extract local file | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     if [[ $LOCAL_INSTALL -eq 1 ]]; then | 
					
						
							| 
									
										
										
										
											2018-06-23 00:08:40 +02:00
										 |  |  |         echo "Installing V2Ray via local file" | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         installSoftware unzip || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         rm -rf /tmp/v2ray | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         extract $LOCAL || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4` | 
					
						
							|  |  |  |         SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3` | 
					
						
							|  |  |  |         if [[ ${SYSTEM} != "linux" ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${RED} "The local V2Ray can not be installed in linux." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         elif [[ ${FILEVDIS} != ${VDIS} ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${RED} "The local V2Ray can not be installed in ${ARCH} system." | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2` | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2018-03-06 23:18:49 +08:00
										 |  |  |         # download via network and extract | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |         installSoftware "curl" || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         getVersion | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |         RETVAL="$?" | 
					
						
							|  |  |  |         if [[ $RETVAL == 0 ]] && [[ "$FORCE" != "1" ]]; then | 
					
						
							| 
									
										
										
										
											2018-04-14 15:10:10 +08:00
										 |  |  |             colorEcho ${BLUE} "Latest version ${NEW_VER} is already installed." | 
					
						
							| 
									
										
										
										
											2018-04-12 10:53:05 +08:00
										 |  |  |             return | 
					
						
							|  |  |  |         elif [[ $RETVAL == 3 ]]; then | 
					
						
							|  |  |  |             return 3 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |             colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}" | 
					
						
							| 
									
										
										
										
											2018-04-12 15:46:52 +08:00
										 |  |  |             downloadV2Ray || return $? | 
					
						
							|  |  |  |             installSoftware unzip || return $? | 
					
						
							|  |  |  |             extract ${ZIPFILE} || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |         fi | 
					
						
							|  |  |  |     fi  | 
					
						
							|  |  |  |     if pgrep "v2ray" > /dev/null ; then | 
					
						
							|  |  |  |         V2RAY_RUNNING=1 | 
					
						
							|  |  |  |         stopV2ray | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2018-04-12 16:03:06 +08:00
										 |  |  |     installV2Ray || return $? | 
					
						
							| 
									
										
										
										
											2018-04-12 14:01:19 +08:00
										 |  |  |     installInitScript || return $? | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     if [[ ${V2RAY_RUNNING} -eq 1 ]];then | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |         colorEcho ${BLUE} "Restarting V2Ray service." | 
					
						
							| 
									
										
										
										
											2018-04-12 15:46:52 +08:00
										 |  |  |         startV2ray | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2017-01-02 13:02:54 +00:00
										 |  |  |     colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed." | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  |     rm -rf /tmp/v2ray | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-31 13:44:52 +00:00
										 |  |  | main |