-
Notifications
You must be signed in to change notification settings - Fork 1
/
gostun_install.sh
86 lines (83 loc) · 2.56 KB
/
gostun_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
#!/bin/bash
#From https://github.com/oneclickvirt/gostun
#2024.06.24
rm -rf /usr/bin/gostun
rm -rf gostun
os=$(uname -s)
arch=$(uname -m)
case $os in
Linux)
case $arch in
"x86_64" | "x86" | "amd64" | "x64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-linux-amd64
;;
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-linux-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-linux-arm64
;;
*)
echo "Unsupported architecture: $arch"
exit 1
;;
esac
;;
Darwin)
case $arch in
"x86_64" | "x86" | "amd64" | "x64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-darwin-amd64
;;
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-darwin-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-darwin-arm64
;;
*)
echo "Unsupported architecture: $arch"
exit 1
;;
esac
;;
FreeBSD)
case $arch in
amd64)
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-freebsd-amd64
;;
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-freebsd-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-freebsd-arm64
;;
*)
echo "Unsupported architecture: $arch"
exit 1
;;
esac
;;
OpenBSD)
case $arch in
amd64)
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-openbsd-amd64
;;
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-openbsd-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-openbsd-arm64
;;
*)
echo "Unsupported architecture: $arch"
exit 1
;;
esac
;;
*)
echo "Unsupported operating system: $os"
exit 1
;;
esac
chmod 777 gostun
cp gostun /usr/bin/gostun