Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: Update a few references to Aeryn OS where applicable #434

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
README: Update a few references to Aeryn OS where applicable
Not everything has been moved over yet so there are still some Serpent
references.
  • Loading branch information
joebonrichie committed Feb 24, 2025
commit 4184e7f0d315c084c31f01b8bc9a860766d8baec
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The `.stone` format is a structured binary package format designed for modern, r
- [x] Transactions
- [x] Installation support
- [x] Removal support
- [x] `sync` support (See: https://github.com/serpent-os/moss-rs/pull/73#issuecomment-1802672634)
- [x] `sync` support
- [x] Triggers
- [x] GC / cleanups of latent states
- [ ] System model
Expand All @@ -59,10 +59,10 @@ The `.stone` format is a structured binary package format designed for modern, r
## 🚀 Onboarding

```bash
# clone the serpent-os moss repo somewhere reasonable
mkdir -pv ~/repos/serpent-os/
cd ~/repos/serpent-os/
git clone https://github.com/serpent-os/tools.git
# clone the AerynOS os-tools repo somewhere reasonable
mkdir -pv ~/repos/aeryn-os/
cd ~/repos/aeryn-os/
git clone https://github.com/aerynos/os-tools.git
cd tools/

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

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

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

## 📚 Documentation

See [docs.serpentos.com](https://docs.serpentos.com/).
See [aerynos.dev](https://aerynos.dev/).


## 🧪 Experiment
Expand All @@ -118,7 +118,7 @@ moss -D sosroot/ list available
moss -D sosroot/ install systemd bash libx11-32bit
```

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.
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.


## 🤝 Contributing changes
Expand Down
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ get-started: (build "boulder") (build "moss")
@echo ""
@echo "Done."
@echo ""
@echo "The Serpent OS documentation lives at https://docs.serpentos.com"
@echo "The Aeryn OS documentation lives at https://aerynos.dev"
@echo ""

# Fix code issues
Expand All @@ -74,9 +74,9 @@ test: lint
cargo test --all

# Run all DB migrations
migrate: (diesel "meta" "migration run") (diesel "layout" "migration run") (diesel "state" "migration run")
migrate: (diesel "meta" "migration run") (diesel "layout" "migration run") (diesel "state" "migration run")
# Rerun all DB migrations
migrate-redo: (diesel "meta" "migration redo") (diesel "layout" "migration redo") (diesel "state" "migration redo")
migrate-redo: (diesel "meta" "migration redo") (diesel "layout" "migration redo") (diesel "state" "migration redo")

[private]
diesel db +ARGS:
Expand Down