2015-12-03 04:58:31 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-01-12 18:52:26 -05:00
|
|
|
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-12 19:05:37 -05:00
|
|
|
${YUM_CMD} -q makecache
|
2016-01-12 18:52:26 -05:00
|
|
|
${YUM_CMD} -y -q install unzip daemon
|
|
|
|
elif [ -n "${APT_CMD}" ]; then
|
|
|
|
echo "Installing unzip and daemon via apt-get."
|
2016-01-12 19:05:37 -05:00
|
|
|
${APT_CMD} -qq update
|
2016-01-12 18:52:26 -05:00
|
|
|
${APT_CMD} -y -qq install unzip daemon
|
|
|
|
else
|
|
|
|
echo "Please make sure unzip and daemon are installed."
|
|
|
|
fi
|
2015-12-08 06:41:20 -05:00
|
|
|
|
2016-01-24 17:31:13 -05:00
|
|
|
VER="v1.5"
|
2015-12-03 04:58:31 -05:00
|
|
|
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
VDIS="64"
|
|
|
|
|
2016-01-09 15:50:27 -05:00
|
|
|
if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then
|
2015-12-03 04:58:31 -05:00
|
|
|
VDIS="32"
|
2016-01-09 15:50:27 -05:00
|
|
|
elif [[ "$ARCH" == *"armv7"* ]]; then
|
2015-12-08 06:41:20 -05:00
|
|
|
VDIS="arm"
|
2016-01-09 15:50:27 -05:00
|
|
|
elif [[ "$ARCH" == *"armv8"* ]]; then
|
2015-12-08 06:41:20 -05:00
|
|
|
VDIS="arm64"
|
2015-12-03 04:58:31 -05:00
|
|
|
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-08 06:41:20 -05:00
|
|
|
# Create folder for V2Ray log.
|
2015-12-07 19:01:36 -05:00
|
|
|
mkdir -p /var/log/v2ray
|
2015-12-03 04:58:31 -05:00
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
# Install V2Ray binary to /usr/bin/v2ray
|
|
|
|
mkdir -p /usr/bin/v2ray
|
2015-12-04 16:53:56 -05:00
|
|
|
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"
|
2015-12-10 06:40:16 -05:00
|
|
|
chmod +x "/usr/bin/v2ray/v2ray"
|
2015-12-05 23:25:21 -05:00
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
# Install V2Ray server config to /etc/v2ray
|
|
|
|
mkdir -p /etc/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"
|
2015-12-08 06:41:20 -05:00
|
|
|
|
2015-12-08 08:23:47 -05:00
|
|
|
let PORT=$RANDOM+10000
|
|
|
|
sed -i "s/37192/${PORT}/g" "/etc/v2ray/config.json"
|
2015-12-05 23:25:21 -05:00
|
|
|
|
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-05 23:25:21 -05:00
|
|
|
|
2015-12-08 08:23:47 -05:00
|
|
|
echo "PORT:${PORT}"
|
2015-12-07 19:01:36 -05:00
|
|
|
echo "UUID:${UUID}"
|
|
|
|
fi
|
2015-12-08 06:41:20 -05:00
|
|
|
|
2016-01-17 18:19:37 -05:00
|
|
|
SYSTEMCTL_CMD=$(command -v systemctl)
|
|
|
|
SERVICE_CMD=$(command -v service)
|
|
|
|
|
|
|
|
if [ -n "${SYSTEMCTL_CMD}" ]; then
|
2016-01-17 16:45:56 -05: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
|
|
|
|
fi
|
2016-01-17 18:19:37 -05:00
|
|
|
elif [ -n "${SERVICE_CMD}" ]; then # Configure SysV if necessary.
|
2015-12-08 06:41:20 -05:00
|
|
|
if [ ! -f "/etc/init.d/v2ray" ]; then
|
2015-12-10 09:45:51 -05:00
|
|
|
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray"
|
2015-12-08 06:41:20 -05:00
|
|
|
chmod +x "/etc/init.d/v2ray"
|
|
|
|
update-rc.d v2ray defaults
|
|
|
|
fi
|
|
|
|
fi
|