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

196 lines
4.8 KiB
Bash
Raw Normal View History

2015-12-03 09:58:31 +00:00
#!/bin/bash
while [[ $# > 0 ]]
do
key="$1"
case $key in
-p|--proxy)
PROXY="$2"
shift # past argument
;;
-h|--help)
HELP="1"
;;
2016-05-25 10:32:53 +00:00
-f|--force)
FORCE="1"
2016-05-27 15:20:31 +00:00
;;
--version)
VERSION="$2"
shift
;;
--local)
LOCAL="$2"
2016-05-25 10:32:53 +00:00
shift
;;
*)
# unknown option
;;
esac
shift # past argument or value
done
if [[ "$HELP" == "1" ]]; then
2016-05-27 15:44:56 +00:00
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)
2016-02-21 13:34:32 +00:00
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
}
function install_component() {
local COMPONENT=$1
2016-05-25 10:27:40 +00:00
COMPONENT_CMD=$(command -v $COMPONENT)
2016-05-25 10:30:04 +00:00
if [ -n "${COMPONENT_CMD}" ]; then
2016-05-25 10:27:40 +00:00
return
fi
update_software
2016-02-21 13:34:32 +00:00
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
}
V2RAY_RUNNING=0
if pgrep "v2ray" > /dev/null ; then
2016-02-21 14:03:50 +00:00
V2RAY_RUNNING=1
fi
2016-05-27 15:20:31 +00:00
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)"
2016-05-25 10:27:40 +00:00
2016-05-27 15:20:31 +00:00
if [[ "$VER" == "$CUR_VER" ]] && [[ "$FORCE" != "1" ]]; then
echo "Lastest version $VER is already installed. Exiting..."
exit
fi
2016-05-25 10:27:40 +00:00
fi
2015-12-03 09:58:31 +00:00
ARCH=$(uname -m)
VDIS="64"
if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then
2015-12-03 09:58:31 +00:00
VDIS="32"
2016-05-03 06:06:07 +00:00
elif [[ "$ARCH" == *"armv7"* ]] || [[ "$ARCH" == "armv6l" ]]; then
VDIS="arm"
elif [[ "$ARCH" == *"armv8"* ]]; then
VDIS="arm64"
2015-12-03 09:58:31 +00:00
fi
rm -rf /tmp/v2ray
2015-12-04 21:53:56 +00:00
mkdir -p /tmp/v2ray
2015-12-03 09:58:31 +00:00
2016-06-13 07:25:19 +00:00
echo "Installing V2Ray ${VER} on ${ARCH}"
2016-05-27 15:20:31 +00:00
if [ -n "$LOCAL" ]; then
cp "$LOCAL" "/tmp/v2ray/v2ray.zip"
else
2016-05-27 15:20:31 +00:00
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
2016-05-27 15:20:31 +00:00
2016-06-13 07:25:19 +00:00
echo "Extracting V2Ray package to /tmp/v2ray."
2016-05-27 15:20:31 +00:00
install_component "unzip"
2015-12-03 09:58:31 +00:00
unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/"
# Create folder for V2Ray log.
2015-12-08 00:01:36 +00:00
mkdir -p /var/log/v2ray
2015-12-03 09:58:31 +00:00
# Stop v2ray daemon if necessary.
SYSTEMCTL_CMD=$(command -v systemctl)
SERVICE_CMD=$(command -v service)
if [ ${V2RAY_RUNNING} -eq 1 ]; then
2016-06-13 07:25:19 +00:00
echo "Shutting down V2Ray service."
if [ -n "${SYSTEMCTL_CMD}" ]; then
if [ -f "/lib/systemd/system/v2ray.service" ]; then
${SYSTEMCTL_CMD} stop v2ray
fi
elif [ -n "${SERVICE_CMD}" ]; then
if [ -f "/etc/init.d/v2ray" ]; then
${SERVICE_CMD} v2ray stop
fi
fi
fi
# Install V2Ray binary to /usr/bin/v2ray
mkdir -p /usr/bin/v2ray
2015-12-04 21:53:56 +00:00
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"
2015-12-10 11:40:16 +00:00
chmod +x "/usr/bin/v2ray/v2ray"
# Install V2Ray server config to /etc/v2ray
mkdir -p /etc/v2ray
2015-12-08 00:01:36 +00:00
if [ ! -f "/etc/v2ray/config.json" ]; then
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
2015-12-08 13:23:47 +00:00
let PORT=$RANDOM+10000
2016-05-28 12:09:01 +00:00
sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json"
2015-12-08 00:01:36 +00:00
UUID=$(cat /proc/sys/kernel/random/uuid)
2016-05-28 12:09:01 +00:00
sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json"
2015-12-08 13:23:47 +00:00
echo "PORT:${PORT}"
2015-12-08 00:01:36 +00:00
echo "UUID:${UUID}"
fi
if [ -n "${SYSTEMCTL_CMD}" ]; then
2016-01-17 21:45:56 +00:00
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
2016-06-13 07:25:19 +00:00
echo "Restarting V2Ray service."
${SYSTEMCTL_CMD} start v2ray
fi
2016-01-17 21:45:56 +00:00
fi
elif [ -n "${SERVICE_CMD}" ]; then # Configure SysV if necessary.
if [ ! -f "/etc/init.d/v2ray" ]; then
2016-02-21 13:34:32 +00:00
install_component "daemon"
2015-12-10 14:45:51 +00:00
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
2016-06-13 07:25:19 +00:00
echo "Restarting V2Ray service."
${SERVICE_CMD} v2ray start
fi
fi
fi
2016-06-13 07:25:19 +00:00
echo "V2Ray ${VER} is installed."