-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathv2ray_install.sh
executable file
·91 lines (79 loc) · 2.19 KB
/
v2ray_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash
while [[ $# > 0 ]]
do
key="$1"
case $key in
-p|--proxy)
PROXY="$2"
shift # past argument
;;
-h|--help)
HELP="1"
shift
;;
*)
# unknown option
;;
esac
shift # past argument or value
done
if [[ "$HELP" == "1" ]]; then
echo "./install-release.sh [-p proxy]"
echo "To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc"
exit
fi
VER="v1.7"
VDIS="64"
unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/"
# Create folder for V2Ray log.
mkdir -p /var/log/v2ray
# 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
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"
chmod +x "/usr/bin/v2ray/v2ray"
# Install V2Ray server config to /etc/v2ray
mkdir -p /etc/v2ray
if [ ! -f "/etc/v2ray/config.json" ]; then
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"
let PORT=$RANDOM+10000
sed -i "s/38291/${PORT}/g" "/etc/v2ray/config.json"
UUID=$(cat /proc/sys/kernel/random/uuid)
sed -i "s/8833948b-5861-4a0f-a1d6-83c5606881ff/${UUID}/g" "/etc/v2ray/config.json"
echo "PORT:${PORT}"
echo "UUID:${UUID}"
fi
if [ -n "${SYSTEMCTL_CMD}" ]; then
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
fi
elif [ -n "${SERVICE_CMD}" ]; then # Configure SysV if necessary.
if [ ! -f "/etc/init.d/v2ray" ]; then
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