1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/release/install-release.sh
2015-12-04 22:53:56 +01:00

25 lines
578 B
Bash
Executable File

#!/bin/bash
VER="v1.0"
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
mkdir -p /tmp/v2ray
curl -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK}
unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/"
mkdir -p /usr/bin/v2ray
mkdir -p /etc/v2ray
cp -n "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"