Skip to content

Commit ae7c711

Browse files
ashraffoudaclaude
andcommitted
Update rfs/zos-config URLs after repo renames
rfs -> zos_rfs (bins/packages/rfs/rfs.sh, debug_image scripts/docs) and zos-config -> zos_config (bootstrap hub.rs runtime config fetch). Points at the new repo names instead of relying on GitHub's non-permanent rename redirects. Verified rfs v1.1.1/v2.0.6 and the zos_config runmode files (production/development/testing/qa.json) resolve 200 from the new URLs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 6caeb0f commit ae7c711

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

bins/packages/rfs/rfs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ RFS_VERSION_V1="1.1.1"
22
RFS_VERSION_V2="2.0.6"
33
RFS_CHECKSUM_V1="974b8dc45ae9c1b00238a79b0f4fc9de"
44
RFS_CHECKSUM_V2="9e37743dfe94b4577ccf90c573c07638"
5-
RFS_LINK_V1="https://github.com/threefoldtech/rfs/releases/download/v${RFS_VERSION_V1}/rfs"
6-
RFS_LINK_V2="https://github.com/threefoldtech/rfs/releases/download/v${RFS_VERSION_V2}/rfs"
5+
RFS_LINK_V1="https://github.com/threefoldtech/zos_rfs/releases/download/v${RFS_VERSION_V1}/rfs"
6+
RFS_LINK_V2="https://github.com/threefoldtech/zos_rfs/releases/download/v${RFS_VERSION_V2}/rfs"
77

88
download_rfs() {
99
download_file ${RFS_LINK_V1} ${RFS_CHECKSUM_V1} rfs-${RFS_VERSION_V1}

bootstrap/bootstrap/src/hub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ struct ZosConfig {
1515
}
1616

1717
fn get_hub_url(runmode: &RunMode) -> Result<Vec<String>> {
18-
let base_url = "https://github.com/threefoldtech/zos-config/raw/main/";
18+
let base_url = "https://github.com/threefoldtech/zos_config/raw/main/";
1919
let config_filename = match runmode {
2020
RunMode::Prod => "production.json",
2121
RunMode::Dev => "development.json",

scripts/debug_image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NOTE:
4949

5050
- [cloud-hypervisor](https://github.com/cloud-hypervisor/cloud-hypervisor): hypervisor that booting the machine
5151
- [virtiofsd](https://gitlab.com/muhamad.azmy/virtiofsd/): used to share a host directory for the rootfs. we are using a forked version
52-
- [rfs v1](https://github.com/threefoldtech/rfs/tree/v1): mounts the flist file into a directory serving as the lower layer of the overlay file system.
52+
- [rfs v1](https://github.com/threefoldtech/zos_rfs/tree/v1): mounts the flist file into a directory serving as the lower layer of the overlay file system.
5353
- `overlayfs`: mounts a read-write layer on the rootfs
5454

5555
## Script Walkthrough
@@ -101,7 +101,7 @@ NOTE:
101101
- **rfs**
102102

103103
```bash
104-
wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs
104+
wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs
105105
chmod +x ./rfs
106106

107107
sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1

scripts/debug_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ check_or_install_deps() {
106106
fi
107107

108108
if ! command -v rfs1 &>/dev/null; then
109-
wget https://github.com/threefoldtech/rfs/releases/download/v1.1.1/rfs
109+
wget https://github.com/threefoldtech/zos_rfs/releases/download/v1.1.1/rfs
110110
chmod +x rfs
111111
sudo ln -s $(realpath ./rfs) /usr/local/bin/rfs1
112112
fi

0 commit comments

Comments
 (0)