File tree 5 files changed +24
-22
lines changed
5 files changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ systemctl disable mtproxy.service >/dev/null 2>&1
13
13
# export PATH=$(pwd)/go/bin:$PATH
14
14
15
15
download_package mtproxygo mtg-linux.tar.gz
16
- tar -xf mtg-linux.tar.gz
17
- rm -rf mtg-linux
18
- mv mtg-linux/mtg mtg
19
-
16
+ tar -xf mtg-linux.tar.gz || exit 1
17
+ rm -rf mtg-linux
18
+ mv mtg-linux/mtg mtg || exit 2
19
+ set_installed_version mtproxygo
20
20
# export GOPATH=/opt/hiddify-manager/other/telegram/tgo/go/
21
21
# export GOCACHE=/opt/hiddify-manager/other/telegram/tgo/gocache/
22
22
# git clone https://github.com/9seconds/mtg/
Original file line number Diff line number Diff line change 1
1
source /opt/hiddify-manager/common/package_manager.sh
2
2
install_package shadowsocks-libev
3
3
4
- if ! is_installed ./v2ray-plugin_linux; then
5
- download_package v2ray-plugin v2ray-plugin-linux.tar.gz
6
- tar xvzf v2ray-plugin-linux.tar.gz
7
- mv v2ray-plugin_linux_$( dpkg --print-architecture) v2ray-plugin_linux
4
+ download_package v2ray-plugin v2ray-plugin-linux.tar.gz
5
+ if [ " $? " == " 0" ] || ! is_installed ./v2ray-plugin_linux; then
6
+ tar xvzf v2ray-plugin-linux.tar.gz || exit 1
7
+ mv v2ray-plugin_linux_$( dpkg --print-architecture) v2ray-plugin_linux || exit 2
8
+ set_installed_version v2ray-plugin
8
9
fi
Original file line number Diff line number Diff line change 1
1
# bash download_wgcf.sh
2
2
source /opt/hiddify-manager/common/package_manager.sh
3
- if ! is_installed ./wgcf; then
4
- download_package wgcf wgcf
5
- chmod +x wgcf
6
- fi
7
3
install_package wireguard-dkms wireguard-tools
4
+ download_package wgcf wgcf
5
+ if [ " $? " == " 0" ] || ! is_installed ./wgcf; then
6
+ chmod +x wgcf || exit 1
7
+ set_installed_version wgcf
8
+ fi
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ version="" #use specific version if needed otherwise it will use the latest
10
10
download_package singbox sb.zip $version
11
11
if [ " $? " == " 0" ] || ! is_installed ./sing-box; then
12
12
install_package unzip
13
- unzip -o sb.zip > /dev/null || return 1
14
- cp -f sing-box-* /sing-box . 2> /dev/null || return 2
15
- rm -r sb.zip sing-box-* 2> /dev/null || return 3
16
- chown root:root sing-box || return 4
17
- chmod +x sing-box || return 5
18
- ln -sf /opt/hiddify-manager/singbox/sing-box /usr/bin/sing-box || return 6
13
+ unzip -o sb.zip > /dev/null || exit 1
14
+ cp -f sing-box-* /sing-box . 2> /dev/null || exit 2
15
+ rm -r sb.zip sing-box-* 2> /dev/null || exit 3
16
+ chown root:root sing-box || exit 4
17
+ chmod +x sing-box || exit 5
18
+ ln -sf /opt/hiddify-manager/singbox/sing-box /usr/bin/sing-box || exit 6
19
19
rm geosite.db 2> /dev/null
20
20
set_installed_version singbox $version
21
21
fi
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ if [ "$?" == "0" ] || ! is_installed ./bin/xray; then
10
10
systemctl stop hiddify-xray.service > /dev/null 2>&1
11
11
rm -rf bin/*
12
12
install_package unzip
13
- unzip -o sb.zip -d bin/ > /dev/null || return 1
13
+ unzip -o sb.zip -d bin/ > /dev/null || exit 1
14
14
rm -r sb.zip
15
- chown root:root bin/xray || return 2
16
- chmod +x bin/xray || return 3
17
- ln -sf /opt/hiddify-manager/xray/bin/xray /usr/bin/xray || return 3
15
+ chown root:root bin/xray || exit 2
16
+ chmod +x bin/xray || exit 3
17
+ ln -sf /opt/hiddify-manager/xray/bin/xray /usr/bin/xray || exit 3
18
18
set_installed_version xray $version
19
19
fi
You can’t perform that action at this time.
0 commit comments