Skip to content

Commit 1cc022b

Browse files
ashraffoudaclaude
andcommitted
Repoint self-references from old repo name (zinit -> zos_zinit)
This repo was renamed from zinit to zos_zinit. The install scripts and docs still referenced the old name (GITHUB_REPO var, raw install/stop.sh URLs, and the release/git-clone URLs), relying on GitHub's non-permanent rename redirect. Point them at zos_zinit. Verified the new raw URLs return 200. The personal local path in release_zinit.sh is left unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 297b046 commit 1cc022b

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ This repository is owned and maintained by TF-Tech NV, a Belgian company respons
3535
## Installation
3636

3737
```bash
38-
curl https://raw.githubusercontent.com/threefoldtech/zinit/refs/heads/master/install.sh | bash
38+
curl https://raw.githubusercontent.com/threefoldtech/zos_zinit/refs/heads/master/install.sh | bash
3939

4040
# to install & run
41-
curl https://raw.githubusercontent.com/threefoldtech/zinit/refs/heads/master/install_run.sh | bash
41+
curl https://raw.githubusercontent.com/threefoldtech/zos_zinit/refs/heads/master/install_run.sh | bash
4242
```
4343

4444
Click [here](docs/installation.md) for more information on how to install ZOS Init.

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If pre-built binaries are available for your system, you can install them direct
1515

1616
```bash
1717
# Download the binary (replace with actual URL)
18-
wget https://github.com/threefoldtech/zinit/releases/download/vX.Y.Z/zinit-x86_64-unknown-linux-musl
18+
wget https://github.com/threefoldtech/zos_zinit/releases/download/vX.Y.Z/zinit-x86_64-unknown-linux-musl
1919

2020
# Make it executable
2121
chmod +x zinit-x86_64-unknown-linux-musl
@@ -69,7 +69,7 @@ apk add build-base
6969
1. Clone the repository:
7070

7171
```bash
72-
git clone https://github.com/threefoldtech/zinit.git
72+
git clone https://github.com/threefoldtech/zos_zinit.git
7373
cd zinit
7474
```
7575

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ NC='\033[0m' # No Color
99

1010
echo -e "${GREEN}stop zinit...${NC}"
1111
rm -f /tmp/stop.sh
12-
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zinit/refs/heads/master/stop.sh > /tmp/stop.sh
12+
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zos_zinit/refs/heads/master/stop.sh > /tmp/stop.sh
1313
bash /tmp/stop.sh
1414

1515

1616
# GitHub repository information
17-
GITHUB_REPO="threefoldtech/zinit"
17+
GITHUB_REPO="threefoldtech/zos_zinit"
1818

1919
# Get the latest version from GitHub API
2020
echo -e "${YELLOW}Fetching latest version information...${NC}"

install_run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ is_zinit_running() {
1919
echo -e "${GREEN}Starting zinit installation and setup...${NC}"
2020
# Download and execute install.sh
2121
echo -e "${YELLOW}Downloading and executing install.sh...${NC}"
22-
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zinit/refs/heads/master/install.sh | bash
22+
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zos_zinit/refs/heads/master/install.sh | bash
2323

2424
echo -e "${GREEN}install zinit...${NC}"
2525
rm -f /tmp/install.sh
26-
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zinit/refs/heads/master/install.sh > /tmp/install.sh
26+
curl -fsSL https://raw.githubusercontent.com/threefoldtech/zos_zinit/refs/heads/master/install.sh > /tmp/install.sh
2727
bash /tmp/install.sh
2828

2929

release_zinit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,5 @@ echo "🚀 Pushing tag to trigger release..."
9797
git push origin "$new_version"
9898

9999
echo "✅ Release $new_version has been triggered!"
100-
echo "🔗 Check the release at: https://github.com/threefoldtech/zinit/releases"
101-
echo "🔗 Monitor the build at: https://github.com/threefoldtech/zinit/actions"
100+
echo "🔗 Check the release at: https://github.com/threefoldtech/zos_zinit/releases"
101+
echo "🔗 Monitor the build at: https://github.com/threefoldtech/zos_zinit/actions"

0 commit comments

Comments
 (0)