mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-16 01:34:00 +00:00
Compare commits
3 Commits
fix-tor-sn
...
github-act
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2e106100ad | ||
|
|
0b536d83c3 | ||
|
|
039e65d803 |
@@ -553,12 +553,14 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- borg-ui: missing dependency `sshpass` [@christian-forgacs](https://github.com/christian-forgacs) ([#17286](https://github.com/community-scripts/ProxmoxVE/pull/17286))
|
||||||
- tracearr: copy packages/emails into the deploy tree [@connorgallopo](https://github.com/connorgallopo) ([#17268](https://github.com/community-scripts/ProxmoxVE/pull/17268))
|
- tracearr: copy packages/emails into the deploy tree [@connorgallopo](https://github.com/connorgallopo) ([#17268](https://github.com/community-scripts/ProxmoxVE/pull/17268))
|
||||||
- Immich: Pin to v3.2.1 [@vhsdream](https://github.com/vhsdream) ([#17264](https://github.com/community-scripts/ProxmoxVE/pull/17264))
|
- Immich: Pin to v3.2.1 [@vhsdream](https://github.com/vhsdream) ([#17264](https://github.com/community-scripts/ProxmoxVE/pull/17264))
|
||||||
|
|
||||||
### 💾 Core
|
### 💾 Core
|
||||||
|
|
||||||
- Releases: rank releases on their numbers, not on sort -V over the raw tag [@MickLesk](https://github.com/MickLesk) ([core#39](https://github.com/community-scripts/core/pull/39))
|
- Add vm_extract_image, which two VM scripts already call [@MickLesk](https://github.com/MickLesk) ([core#40](https://github.com/community-scripts/core/pull/40))
|
||||||
|
- Releases: rank releases on their numbers, not on sort -V over the raw tag [@MickLesk](https://github.com/MickLesk) ([core#39](https://github.com/community-scripts/core/pull/39))
|
||||||
|
|
||||||
### 🧰 Tools
|
### 🧰 Tools
|
||||||
|
|
||||||
|
|||||||
@@ -44,8 +44,7 @@ function update_script() {
|
|||||||
msg_ok "Stopped Service"
|
msg_ok "Stopped Service"
|
||||||
|
|
||||||
CLEAN_INSTALL=1 GITLAB_URL="https://gitlab.torproject.org" fetch_and_deploy_gl_release "tor-snowflake" "tpo/anti-censorship/pluggable-transports/snowflake" "tarball"
|
CLEAN_INSTALL=1 GITLAB_URL="https://gitlab.torproject.org" fetch_and_deploy_gl_release "tor-snowflake" "tpo/anti-censorship/pluggable-transports/snowflake" "tarball"
|
||||||
GO_VERSION="$(awk '/^go /{print $2; exit}' /opt/tor-snowflake/go.mod 2>/dev/null || true)"
|
GO_VERSION="$(grep -m1 '^go ' /opt/tor-snowflake/proxy/go.mod | awk '{print $2}')" setup_go
|
||||||
GO_VERSION="${GO_VERSION:-latest}" setup_go
|
|
||||||
|
|
||||||
msg_info "Building Snowflake"
|
msg_info "Building Snowflake"
|
||||||
cd /opt/tor-snowflake/proxy
|
cd /opt/tor-snowflake/proxy
|
||||||
|
|||||||
@@ -28,7 +28,8 @@ $STD apt install -y \
|
|||||||
fuse3 \
|
fuse3 \
|
||||||
rsync \
|
rsync \
|
||||||
sshfs \
|
sshfs \
|
||||||
openssh-client
|
openssh-client \
|
||||||
|
sshpass
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
UV_PYTHON="3.12" setup_uv
|
UV_PYTHON="3.12" setup_uv
|
||||||
|
|||||||
@@ -16,8 +16,7 @@ update_os
|
|||||||
|
|
||||||
msg_info "Building Snowflake"
|
msg_info "Building Snowflake"
|
||||||
GITLAB_URL="https://gitlab.torproject.org" fetch_and_deploy_gl_release "tor-snowflake" "tpo/anti-censorship/pluggable-transports/snowflake" "tarball"
|
GITLAB_URL="https://gitlab.torproject.org" fetch_and_deploy_gl_release "tor-snowflake" "tpo/anti-censorship/pluggable-transports/snowflake" "tarball"
|
||||||
GO_VERSION="$(awk '/^go /{print $2; exit}' /opt/tor-snowflake/go.mod 2>/dev/null || true)"
|
GO_VERSION="$(grep -m1 '^go ' /opt/tor-snowflake/proxy/go.mod | awk '{print $2}')" setup_go
|
||||||
GO_VERSION="${GO_VERSION:-latest}" setup_go
|
|
||||||
cd /opt/tor-snowflake/proxy
|
cd /opt/tor-snowflake/proxy
|
||||||
$STD go build -o snowflake-proxy .
|
$STD go build -o snowflake-proxy .
|
||||||
msg_ok "Built Snowflake Proxy"
|
msg_ok "Built Snowflake Proxy"
|
||||||
|
|||||||
Reference in New Issue
Block a user