Skip to content

Commit 4184e7f

Browse files
committed
README: Update a few references to Aeryn OS where applicable
Not everything has been moved over yet so there are still some Serpent references.
1 parent 5e85a62 commit 4184e7f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The `.stone` format is a structured binary package format designed for modern, r
4949
- [x] Transactions
5050
- [x] Installation support
5151
- [x] Removal support
52-
- [x] `sync` support (See: https://github.com/serpent-os/moss-rs/pull/73#issuecomment-1802672634)
52+
- [x] `sync` support
5353
- [x] Triggers
5454
- [x] GC / cleanups of latent states
5555
- [ ] System model
@@ -59,10 +59,10 @@ The `.stone` format is a structured binary package format designed for modern, r
5959
## 🚀 Onboarding
6060

6161
```bash
62-
# clone the serpent-os moss repo somewhere reasonable
63-
mkdir -pv ~/repos/serpent-os/
64-
cd ~/repos/serpent-os/
65-
git clone https://github.com/serpent-os/tools.git
62+
# clone the AerynOS os-tools repo somewhere reasonable
63+
mkdir -pv ~/repos/aeryn-os/
64+
cd ~/repos/aeryn-os/
65+
git clone https://github.com/aerynos/os-tools.git
6666
cd tools/
6767

6868
# Install a few prerequisites (this how you'd do it on AerynOS)
@@ -83,7 +83,7 @@ sudo usermod --add-subuids 1000000-1065535 --add-subgids 1000000-1065535 root
8383
sudo usermod --add-subuids 1065536-1131071 --add-subgids 1065536-1131071 ${USER}
8484
```
8585

86-
**NB:** If you want to build .stones with boulder on your _non-serpent_ host system, you will need to specify the
86+
**NB:** If you want to build .stones with boulder on your _non-aeryn_ host system, you will need to specify the
8787
location of the boulder data files (which live in ${HOME}/.local/share/boulder if you used `just get-started` like above):
8888

8989
```bash
@@ -93,7 +93,7 @@ alias boulder="${HOME}/.local/bin/boulder --data-dir=${HOME}/.local/share/boulde
9393

9494
## 📚 Documentation
9595

96-
See [docs.serpentos.com](https://docs.serpentos.com/).
96+
See [aerynos.dev](https://aerynos.dev/).
9797

9898

9999
## 🧪 Experiment
@@ -118,7 +118,7 @@ moss -D sosroot/ list available
118118
moss -D sosroot/ install systemd bash libx11-32bit
119119
```
120120

121-
If you want to create systemd-nspawn roots or bootable VMs, please check out the [img-tests](https://github.com/serpent-os/img-tests) repository.
121+
If you want to create systemd-nspawn roots or bootable VMs, please check out the [img-tests](https://github.com/aeryn-os/img-tests) repository.
122122

123123

124124
## 🤝 Contributing changes

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ get-started: (build "boulder") (build "moss")
4747
@echo ""
4848
@echo "Done."
4949
@echo ""
50-
@echo "The Serpent OS documentation lives at https://docs.serpentos.com"
50+
@echo "The Aeryn OS documentation lives at https://aerynos.dev"
5151
@echo ""
5252

5353
# Fix code issues
@@ -74,9 +74,9 @@ test: lint
7474
cargo test --all
7575

7676
# Run all DB migrations
77-
migrate: (diesel "meta" "migration run") (diesel "layout" "migration run") (diesel "state" "migration run")
77+
migrate: (diesel "meta" "migration run") (diesel "layout" "migration run") (diesel "state" "migration run")
7878
# Rerun all DB migrations
79-
migrate-redo: (diesel "meta" "migration redo") (diesel "layout" "migration redo") (diesel "state" "migration redo")
79+
migrate-redo: (diesel "meta" "migration redo") (diesel "layout" "migration redo") (diesel "state" "migration redo")
8080

8181
[private]
8282
diesel db +ARGS:

0 commit comments

Comments
 (0)