Skip to content

Commit d1cee73

Browse files
committed
test1
1 parent 2fc43c9 commit d1cee73

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ct/hev-socks5-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
2+
source <(curl -s https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/build.func)
33
# Copyright (c) 2021-2025 community-scripts ORG
44
# Author: miviro
55
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE

misc/build.func

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ variables() {
1414
RANDOM_UUID="$(cat /proc/sys/kernel/random/uuid)" # generates a random UUID and sets it to the RANDOM_UUID variable.
1515
}
1616

17-
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func)
17+
source <(curl -s https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/api.func)
1818

1919
# This function sets various color variables using ANSI escape codes for formatting text in the terminal.
2020
color() {
@@ -69,7 +69,7 @@ catch_errors() {
6969

7070
# This function is called when an error occurs. It receives the exit code, line number, and command that caused the error, and displays an error message.
7171
error_handler() {
72-
source /dev/stdin <<< $(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func)
72+
source /dev/stdin <<< $(wget -qLO - https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/api.func)
7373
if [ -n "$SPINNER_PID" ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID > /dev/null; fi
7474
printf "\e[?25h"
7575
local exit_code="$?"
@@ -1026,9 +1026,9 @@ build_container() {
10261026
TEMP_DIR=$(mktemp -d)
10271027
pushd $TEMP_DIR >/dev/null
10281028
if [ "$var_os" == "alpine" ]; then
1029-
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/alpine-install.func)"
1029+
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/alpine-install.func)"
10301030
else
1031-
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/install.func)"
1031+
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/install.func)"
10321032
fi
10331033
export RANDOM_UUID="$RANDOM_UUID"
10341034
export CACHER="$APT_CACHER"
@@ -1060,7 +1060,7 @@ build_container() {
10601060
$PW
10611061
"
10621062
# This executes create_lxc.sh and creates the container and .conf file
1063-
bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/create_lxc.sh)" || exit $?
1063+
bash -c "$(wget -qLO - https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/ct/create_lxc.sh)" || exit $?
10641064

10651065
LXC_CONFIG=/etc/pve/lxc/${CTID}.conf
10661066
if [ "$CT_TYPE" == "0" ]; then
@@ -1122,7 +1122,7 @@ http://dl-cdn.alpinelinux.org/alpine/latest-stable/community
11221122
EOF'
11231123
pct exec "$CTID" -- ash -c "apk add bash >/dev/null"
11241124
fi
1125-
lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/$var_install.sh)" || exit $?
1125+
lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/install/$var_install.sh)" || exit $?
11261126

11271127
}
11281128

@@ -1135,7 +1135,7 @@ description() {
11351135
cat <<EOF
11361136
<div align='center'>
11371137
<a href='https://Helper-Scripts.com' target='_blank' rel='noopener noreferrer'>
1138-
<img src='https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/images/logo-81x112.png' alt='Logo' style='width:81px;height:112px;'/>
1138+
<img src='https://raw.githubusercontent.com/miviro/ProxmoxVE/refs/heads/hev-socks5-branch/misc/images/logo-81x112.png' alt='Logo' style='width:81px;height:112px;'/>
11391139
</a>
11401140

11411141
<h2 style='font-size: 24px; margin: 20px 0;'>${APP} LXC</h2>

0 commit comments

Comments
 (0)