diff --git a/README.md b/README.md index 64d02e0..faece61 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ A comprehensive solution for deploying Wallarm filtering nodes on virtual machin Use the wrapper script to download all necessary tools: ```bash -curl -fsSL "https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main/setup.sh" | bash +curl -fsSL "https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main/setup.sh" | bash ``` This will download and make executable: diff --git a/changelog.md b/changelog.md index a1b50e7..8e7cbd9 100644 --- a/changelog.md +++ b/changelog.md @@ -19,10 +19,10 @@ and this project adheres to date-based versioning (YYYY-MM.x). - `GITLAB_WALLARM_IMAGE_URL` → `GIT_WALLARM_IMAGE_URL` - `GITLAB_WALLARM_CHECKSUM_URL` → `GIT_WALLARM_CHECKSUM_URL` - `GITLAB_REACHABLE` → `GIT_REACHABLE` -- **URL structure**: Updated `GIT_RAW_URL` from `/-/raw/main` to `/src/branch/main` path +- **URL structure**: Updated `GIT_RAW_URL` from `/-/raw/main` to `/raw/branch/main` path (corrected for download compatibility) - **Terminology**: Replaced all "GitLab" references in comments and log messages with "Git Repositorys" - **Documentation**: Updated README.md to reflect new terminology -- **URL fix**: Updated setup.sh download URL in README.md from `/raw/branch/main/` to `/src/branch/main/` +- **URL correction**: Corrected setup.sh download URL in README.md back to `/raw/branch/main/` pattern for download compatibility - **Branding**: Removed all Forgejo references from codebase and documentation for neutrality - **Fallback chains**: Simplified from three-tier to two-tier approach - Docker binary: `Git Repositorys → local dir → current dir` (removed `→ internal proxy`) @@ -38,7 +38,9 @@ and this project adheres to date-based versioning (YYYY-MM.x). - All references to internal proxy/registry in error messages ### Technical Details -- **Commit**: `3158ee7` (chore: refactor git references and remove internal registry fallback) +- **Commits**: + - `3158ee7` (chore: refactor git references and remove internal registry fallback) + - `509909d` (chore: remove Forgejo references and fix setup URL) - **Files modified**: 4 files changed, additional modifications - `README.md` - Documentation updates and URL fixes - `setup.sh` - URL base update and Forgejo reference removal diff --git a/wallarm-ct-check.sh b/wallarm-ct-check.sh index e978ac7..2645932 100755 --- a/wallarm-ct-check.sh +++ b/wallarm-ct-check.sh @@ -56,7 +56,7 @@ fi # Git Repositorys artifact URLs (primary source) - same as deployment script GIT_BASE_URL="https://git.sechpoint.app/customer-engineering/wallarm" -GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main" +GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main" GIT_DOCKER_BINARY_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz" GIT_WALLARM_IMAGE_URL="${GIT_RAW_URL}/images/wallarm-node-6.11.0-rc1.tar.gz" diff --git a/wallarm-ct-deploy.sh b/wallarm-ct-deploy.sh index 6122eac..cd444f9 100755 --- a/wallarm-ct-deploy.sh +++ b/wallarm-ct-deploy.sh @@ -59,7 +59,7 @@ fi # Git Repositorys artifact URLs (primary source) GIT_BASE_URL="https://git.sechpoint.app/customer-engineering/wallarm" -GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/src/branch/main" +GIT_RAW_URL="https://git.sechpoint.app/customer-engineering/wallarm/raw/branch/main" GIT_DOCKER_BINARY_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz" GIT_DOCKER_CHECKSUM_URL="${GIT_RAW_URL}/binaries/docker-29.2.1.tgz.sha256" GIT_WALLARM_IMAGE_URL="${GIT_RAW_URL}/images/wallarm-node-6.11.0-rc1.tar.gz"