1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/release/install-release.sh

110 lines
2.9 KiB
Bash
Raw Normal View History

2015-12-03 09:58:31 +00:00
#!/bin/bash
YUM_CMD=$(command -v yum)
APT_CMD=$(command -v apt-get)
if [ -n "${YUM_CMD}" ]; then
echo "Installing unzip and daemon via yum."
2016-01-13 00:05:37 +00:00
${YUM_CMD} -q makecache
${YUM_CMD} -y -q install unzip daemon
elif [ -n "${APT_CMD}" ]; then
echo "Installing unzip and daemon via apt-get."
2016-01-13 00:05:37 +00:00
${APT_CMD} -qq update
${APT_CMD} -y -qq install unzip daemon
else
echo "Please make sure unzip and daemon are installed."
fi
2016-02-07 23:34:22 +00:00
VER="v1.7"
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"
elif [[ "$ARCH" == *"armv7"* ]]; then
VDIS="arm"
elif [[ "$ARCH" == *"armv8"* ]]; then
VDIS="arm64"
2015-12-03 09:58:31 +00:00
fi
DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${VER}/v2ray-linux-${VDIS}.zip"
rm -rf /tmp/v2ray
2015-12-04 21:53:56 +00:00
mkdir -p /tmp/v2ray
2015-12-03 09:58:31 +00:00
# Download release with proxy or not
echo 'Direct start downloading release,'
echo 'Or Enter a proxy URI for Downloading release.'
echo 'ex: socks5://127.0.0.1:1080'
echo 'ex: http://127.0.0.1:3128'
read PROXY_URI
if [ -n "${PROXY_URI}" ]; then
curl -x ${PROXY_URI} -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK}
else
curl -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK}
fi
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)
ISRUN_CMD=$(ps x | grep -c v2ray)
if [ ${ISRUN_CMD} -eq 2 ]; then
if [ -n "${SYSTEMCTL_CMD}" ]; then
if [ -f "/lib/systemd/system/v2ray.service" ]; then
systemctl stop v2ray
fi
elif [ -n "${SERVICE_CMD}" ]; then
if [ -f "/etc/init.d/v2ray" ]; then
service 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
sed -i "s/37192/${PORT}/g" "/etc/v2ray/config.json"
2015-12-08 00:01:36 +00:00
UUID=$(cat /proc/sys/kernel/random/uuid)
sed -i "s/3b129dec-72a3-4d28-aeee-028a0fe86e22/${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 [ ${ISRUN_CMD} -eq 2 ]; then
systemctl 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
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 [ ${ISRUN_CMD} -eq 2 ]; then
service v2ray start
fi
fi
fi