1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/release/install-release.sh

38 lines
913 B
Bash
Raw Normal View History

2015-12-03 04:58:31 -05:00
#!/bin/bash
2015-12-06 15:26:40 -05:00
VER="v1.1"
2015-12-03 04:58:31 -05:00
ARCH=$(uname -m)
VDIS="64"
if [ "$ARCH" == "i686" ] || [ "$ARCH" == "i386" ]; then
VDIS="32"
fi
DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${VER}/v2ray-linux-${VDIS}.zip"
rm -rf /tmp/v2ray
2015-12-04 16:53:56 -05:00
mkdir -p /tmp/v2ray
2015-12-03 04:58:31 -05:00
2015-12-04 16:53:56 -05:00
curl -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK}
2015-12-03 04:58:31 -05:00
unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/"
2015-12-04 16:53:56 -05:00
mkdir -p /usr/bin/v2ray
mkdir -p /etc/v2ray
2015-12-07 19:01:36 -05:00
mkdir -p /var/log/v2ray
2015-12-03 04:58:31 -05:00
2015-12-04 16:53:56 -05:00
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"
2015-12-07 19:01:36 -05:00
if [ ! -f "/etc/v2ray/config.json" ]; then
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
#PORT=$(expr $RANDOM + 10000)
#sed -i "s/37192/${PORT}/g" "/etc/v2ray/config.json"
2015-12-07 19:01:36 -05:00
UUID=$(cat /proc/sys/kernel/random/uuid)
sed -i "s/3b129dec-72a3-4d28-aeee-028a0fe86e22/${UUID}/g" "/etc/v2ray/config.json"
2015-12-07 19:01:36 -05:00
#echo "PORT:${PORT}"
echo "UUID:${UUID}"
fi