1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/release/install-release.sh

425 lines
12 KiB
Bash
Raw Normal View History

2015-12-03 09:58:31 +00:00
#!/bin/bash
2016-07-27 21:40:47 +00:00
# This file is accessible as https://install.direct/go.sh
2016-08-21 16:02:12 +00:00
# Original source is located at github.com/v2ray/v2ray-core/release/install-release.sh
2016-07-27 21:40:47 +00:00
2018-04-12 08:56:00 +00:00
# If not specify, default meaning of return value:
2018-04-12 13:56:19 +00:00
# 0: Success
2018-04-12 08:56:00 +00: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
CHECK=""
FORCE=""
HELP=""
#######color code########
2017-01-02 13:02:54 +00:00
RED="31m"
GREEN="32m"
YELLOW="33m"
BLUE="36m"
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
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 00:45:00 +00: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 21:40:12 +00:00
elif [[ "$ARCH" == *"armv8"* ]] || [[ "$ARCH" == "aarch64" ]]; then
2016-12-31 13:44:52 +00:00
VDIS="arm64"
2017-11-08 20:33:41 +00: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-18 22:16:32 +00:00
elif [[ "$ARCH" == *"s390x"* ]]; then
VDIS="s390x"
2016-12-31 13:44:52 +00:00
fi
return 0
}
2016-12-31 13:44:52 +00:00
downloadV2Ray(){
rm -rf /tmp/v2ray
mkdir -p /tmp/v2ray
2017-12-30 21:30:56 +00: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."
return 3
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
2016-12-31 13:44:52 +00:00
installSoftware(){
COMPONENT=$1
if [[ -n `command -v $COMPONENT` ]]; then
return 0
fi
2016-02-21 13:34:32 +00:00
2016-12-31 13:44:52 +00:00
getPMT
if [[ $? -eq 1 ]]; then
2017-01-02 13:02:54 +00:00
colorEcho $YELLOW "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually."
2018-04-12 13:56:19 +00:00
return 1
2016-12-31 13:44:52 +00:00
fi
2017-01-02 13:02:54 +00:00
colorEcho $GREEN "Installing $COMPONENT"
2016-12-31 13:44:52 +00:00
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
2017-01-02 13:02:54 +00:00
colorEcho ${RED} "Install ${COMPONENT} fail, please install it manually."
2018-04-12 13:56:19 +00:00
return 1
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
# return 1: not apt or yum
getPMT(){
2018-04-07 07:59:23 +00: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"
else
return 1
fi
2018-04-12 07:57:04 +00: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-03-19 09:01:15 +00:00
colorEcho ${RED} "Extracting V2Ray failed!"
return 2
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00: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"
return 4
2016-12-31 13:44:52 +00:00
else
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
2017-01-02 13:02:54 +00:00
colorEcho ${RED} "Network error! Please check your network or try again."
return 3
elif [[ $RETVAL -ne 0 ]];then
return 2
2016-12-31 13:44:52 +00:00
elif [[ "$NEW_VER" != "$CUR_VER" ]];then
return 1
2016-12-31 13:44:52 +00:00
fi
return 0
fi
2016-02-21 13:34:32 +00:00
}
2016-12-31 13:44:52 +00:00
stopV2ray(){
SYSTEMCTL_CMD=$(command -v systemctl)
SERVICE_CMD=$(command -v service)
2017-01-02 13:02:54 +00:00
colorEcho ${BLUE} "Shutting down V2Ray service."
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
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to shutdown V2Ray service."
return 2
fi
2016-12-31 13:44:52 +00:00
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 "${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
if [[ $? -ne 0 ]]; then
colorEcho ${RED} "Failed to start V2Ray service."
return 2
fi
2016-12-31 13:44:52 +00:00
return 0
}
2017-11-03 22:42:33 +00:00
copyFile() {
NAME=$1
2018-03-06 14:31:31 +00: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 19:12:40 +00:00
colorEcho ${YELLOW} "${ERROR}"
2018-04-12 13:56:19 +00:00
return 1
2016-12-31 13:44:52 +00:00
fi
2018-04-12 06:52:35 +00:00
return 0
2017-11-03 22:42:33 +00:00
}
makeExecutable() {
chmod +x "/usr/bin/v2ray/$1"
}
installV2Ray(){
# Install V2Ray binary to /usr/bin/v2ray
mkdir -p /usr/bin/v2ray
2018-04-12 05:12:12 +00:00
copyFile v2ray || return $?
2017-11-03 22:42:33 +00:00
makeExecutable v2ray
2018-04-12 05:12:12 +00:00
copyFile v2ctl
2017-11-03 22:42:33 +00:00
makeExecutable v2ctl
2018-04-12 05:12:12 +00: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
mkdir -p /etc/v2ray
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
2016-12-31 13:44:52 +00:00
fi
2018-04-12 07:57:04 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
2018-03-06 14:39:13 +00:00
installInitScript(){
2016-12-31 13:44:52 +00:00
SYSTEMCTL_CMD=$(command -v systemctl)
SERVICE_CMD=$(command -v service)
if [[ -n "${SYSTEMCTL_CMD}" ]];then
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
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 10:27:40 +00:00
return
2016-02-21 13:34:32 +00:00
}
2016-12-31 13:44:52 +00:00
Help(){
2017-11-10 12:38:32 +00:00
echo "./install-release.sh [-h] [-c] [-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 11:00:13 +00: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 07:50:33 +00:00
return 0
2016-12-31 13:44:52 +00:00
}
remove(){
2017-01-02 13:02:54 +00:00
SYSTEMCTL_CMD=$(command -v systemctl)
SERVICE_CMD=$(command -v service)
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 07:48:32 +00:00
return 0
else
colorEcho ${GREEN} "Removed V2Ray successfully."
colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."
return 0
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 07:48:32 +00:00
return 0
2017-01-02 13:02:54 +00:00
else
colorEcho ${GREEN} "Removed V2Ray successfully."
colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."
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 07:48:32 +00:00
return 0
2017-01-02 13:02:54 +00:00
else
colorEcho ${GREEN} "Removed V2Ray successfully."
colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."
return 0
2017-01-02 13:02:54 +00:00
fi
else
colorEcho ${GREEN} "V2Ray not found."
return 0
2016-12-31 13:44:52 +00:00
fi
}
checkUpdate(){
echo "Checking for update."
VERSION=""
getVersion
RETVAL="$?"
if [[ $RETVAL -eq 1 ]]; then
colorEcho ${GREEN} "Found new version ${NEW_VER} for V2Ray.(Current version:$CUR_VER)"
elif [[ $RETVAL -eq 0 ]]; then
colorEcho ${GREEN} "No new version. Current version is ${NEW_VER}."
elif [[ $RETVAL -eq 2 ]]; then
colorEcho ${RED} "No V2Ray installed."
colorEcho ${GREEN} "The newest version for V2Ray is ${NEW_VER}."
fi
return 0
2016-12-31 13:44:52 +00:00
}
main(){
#helping information
[[ "$HELP" == "1" ]] && Help && return
2018-04-12 13:56:19 +00:00
[[ "$CHECK" == "1" ]] && checkUpdate && return
[[ "$REMOVE" == "1" ]] && remove && return
2016-12-31 13:44:52 +00:00
2017-11-04 00:45:00 +00: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
echo "Install V2Ray via local file"
installSoftware unzip || return $?
2016-12-31 13:44:52 +00:00
rm -rf /tmp/v2ray
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
2017-01-02 13:02:54 +00:00
colorEcho $RED "The local V2Ray can not be installed in linux."
return 1
2016-12-31 13:44:52 +00:00
elif [[ ${FILEVDIS} != ${VDIS} ]]; then
2017-01-02 13:02:54 +00:00
colorEcho $RED "The local V2Ray can not be installed in ${ARCH} system."
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 15:18:49 +00:00
# download via network and extract
installSoftware "curl" || return $?
2016-12-31 13:44:52 +00:00
getVersion
RETVAL="$?"
if [[ $RETVAL == 0 ]] && [[ "$FORCE" != "1" ]]; then
2018-03-06 15:18:49 +00:00
colorEcho ${GREEN} "Latest version ${NEW_VER} is already installed."
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 07:46:52 +00: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 08:03:06 +00:00
installV2Ray || return $?
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 07:46:52 +00: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 09:58:31 +00:00
2016-12-31 13:44:52 +00:00
main