|
|
|
@ -907,8 +907,19 @@ install_v2ray() { |
|
|
|
|
mkdir -p /tmp/v2ray |
|
|
|
|
|
|
|
|
|
v2ray_tmp_file="/tmp/v2ray/v2ray.zip" |
|
|
|
|
# v2ray_ver="$(curl -s https://api.github.com/repos/v2ray/v2ray-core/releases/latest | grep 'tag_name' | cut -d\" -f4)" |
|
|
|
|
v2ray_ver="v3.46" |
|
|
|
|
v2ray_ver="$(curl -H 'Cache-Control: no-cache' -s https://api.github.com/repos/v2ray/v2ray-core/releases/latest | grep 'tag_name' | cut -d\" -f4)" |
|
|
|
|
|
|
|
|
|
if [[ ! $v2ray_ver ]]; then |
|
|
|
|
echo |
|
|
|
|
echo -e " $red获取 V2Ray 最新版本失败!!!$none" |
|
|
|
|
echo |
|
|
|
|
echo -e " 请尝试执行如下命令: $green echo 'nameserver 8.8.8.8' >/etc/resolv.conf $none" |
|
|
|
|
echo |
|
|
|
|
echo " 然后再继续安装脚本...." |
|
|
|
|
echo |
|
|
|
|
exit 1 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
v2ray_download_link="https://github.com/v2ray/v2ray-core/releases/download/$v2ray_ver/v2ray-linux-${v2ray_bit}.zip" |
|
|
|
|
|
|
|
|
|
if ! wget --no-check-certificate -O "$v2ray_tmp_file" $v2ray_download_link; then |
|
|
|
@ -919,18 +930,18 @@ install_v2ray() { |
|
|
|
|
|
|
|
|
|
unzip $v2ray_tmp_file -d "/tmp/v2ray/" |
|
|
|
|
mkdir -p /usr/bin/v2ray |
|
|
|
|
cp -f "/tmp/v2ray/v2ray-${v2ray_ver}-linux-${v2ray_bit}/v2ray" "/usr/bin/v2ray/v2ray" |
|
|
|
|
cp -f "/tmp/v2ray/v2ray" "/usr/bin/v2ray/v2ray" |
|
|
|
|
chmod +x "/usr/bin/v2ray/v2ray" |
|
|
|
|
cp -f "/tmp/v2ray/v2ray-${v2ray_ver}-linux-${v2ray_bit}/v2ctl" "/usr/bin/v2ray/v2ctl" |
|
|
|
|
cp -f "/tmp/v2ray/v2ctl" "/usr/bin/v2ray/v2ctl" |
|
|
|
|
chmod +x "/usr/bin/v2ray/v2ctl" |
|
|
|
|
|
|
|
|
|
if [[ $systemd ]]; then |
|
|
|
|
cp -f "/tmp/v2ray/v2ray-${v2ray_ver}-linux-${v2ray_bit}/systemd/v2ray.service" "/lib/systemd/system/" |
|
|
|
|
cp -f "/tmp/v2ray/systemd/v2ray.service" "/lib/systemd/system/" |
|
|
|
|
sed -i "s/on-failure/always/" /lib/systemd/system/v2ray.service |
|
|
|
|
systemctl enable v2ray |
|
|
|
|
else |
|
|
|
|
apt-get install -y daemon |
|
|
|
|
cp "/tmp/v2ray/v2ray-${v2ray_ver}-linux-${v2ray_bit}/systemv/v2ray" "/etc/init.d/v2ray" |
|
|
|
|
cp "/tmp/v2ray/systemv/v2ray" "/etc/init.d/v2ray" |
|
|
|
|
chmod +x "/etc/init.d/v2ray" |
|
|
|
|
update-rc.d -f v2ray defaults |
|
|
|
|
fi |
|
|
|
|